bot

v2.1.0

The Universal Autonomous Entity Standard. A local-first framework for observable, composable agents with policy-guarded execution on ClawHub.

0· 548·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for agenticio/bot.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "bot" (agenticio/bot) from ClawHub.
Skill page: https://clawhub.ai/agenticio/bot
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install agenticio/bot

ClawHub CLI

Package manager switcher

npx clawhub@latest install bot
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (local-first agent framework) aligns with the delivered files: agent core, multi-agent coordinator, tool registry, policy layer, local web viewer, and examples. Declared requirements (none) are consistent with a pure-Python, local-first demo framework.
Instruction Scope
SKILL.md and example code are focused on local execution and explicitly state no outbound network by default. The runtime instructions and code read/write a local memory directory (./.bot_memory or BOT_MEMORY_DIR) and optionally load a Botfile. The code can execute arbitrary Python callables via PolicyExecutor.execute (no OS-level sandboxing) — this is expected for a framework but is a behavioral surface the user should understand and control (only register trusted tools).
Install Mechanism
No platform install spec is declared (instruction-only from registry), though an install.sh and requirements.txt are included for manual setup (pip install -r requirements.txt). No downloads from untrusted URLs or archive extraction are present.
Credentials
No required credentials or env vars are declared. The code optionally respects BOT_MEMORY_DIR to configure local memory storage. No secret-scoped environment variables are requested or used.
Persistence & Privilege
always is false and the skill does not request elevated platform privileges or modify other skills. It persists local agent memory under a local directory it creates (./.bot_memory) which is proportional to its purpose.
Assessment
This skill is a local agent framework and appears coherent with its description, but it executes Python callables directly (PolicyExecutor.execute) and stores information under ./.bot_memory by default. Before running: (1) run inside a virtual environment (install.sh recommends this), (2) inspect any Botfile or third-party tools you register to ensure they don't perform unwanted filesystem or network actions, (3) be aware there is no OS-level sandboxing — policies are runtime checks only, not enforcement of OS restrictions, and (4) the web viewer binds to 127.0.0.1 by default (local only). If you plan to register or load untrusted code, treat it as potentially able to perform arbitrary local actions and isolate it accordingly.

Like a lobster shell, security has layers — review code before you run it.

agentvk977y1ry4zfm8qg2rm5cxp708182ggwtagivk977y1ry4zfm8qg2rm5cxp708182ggwtbotvk977y1ry4zfm8qg2rm5cxp708182ggwtcorevk977y1ry4zfm8qg2rm5cxp708182ggwtlatestvk9741d80z206cvgkgq82a283s58302x8standardvk977y1ry4zfm8qg2rm5cxp708182ggwt
548downloads
0stars
8versions
Updated 1mo ago
v2.1.0
MIT-0

BOT: Standardized Agent Framework

bot is a local-first agent framework for observable execution, composable tool use, and multi-agent orchestration.

Safety Model

  • Network: Core demos do not initiate outbound network requests by default.
  • Execution: This release provides policy-guarded local execution, not OS-level sandbox isolation.
  • File System: Local memory is stored in ./.bot_memory/ by default, configurable via BOT_MEMORY_DIR.
  • Viewer: Optional local monitor binds to 127.0.0.1 only when explicitly started.
  • Credentials: No external API keys required for core demos.

Included Capabilities

  • Single-agent reasoning core
  • Botfile static declaration
  • TUI thought visualization
  • Crypto identity and signing
  • Multi-agent coordination
  • Local Web thought-tree viewer
  • Unified local run entrypoint
  • Capability-aware tool registration
  • Policy-guarded execution layer

Quick Start

PYTHONPATH=. python3 examples/run_bot.py --mode multi --prompt "Design a safe local-first agent workflow"

Custom Roles

PYTHONPATH=. python3 examples/run_bot.py --mode multi --roles "planner_bot,critic_bot,executor_bot,auditor_bot"

Single-Agent Mode

PYTHONPATH=. python3 examples/run_bot.py --mode single --prompt "Summarize this task safely"

Then open:

Comments

Loading comments...