<< All versions
Skill v2.0.0
currentAutomated scan100/100evezart/evez666-advancement/openclaw-evezos-agent-advanced
──Details
PublishedApril 29, 2026 at 08:12 PM
Content Hashsha256:449079ea25e2cd19...
Git SHAeb8274eab163
──Files
Files (1 file, 1.8 KB)
SKILL.md1.8 KBactive
SKILL.md · 52 lines · 1.8 KB
name: openclaw-evezos-agent version: 2.0.0 description: Persistent Action Bus + Orchestrator for OpenClaw + EVEZOS. Supports device commands, chain operations, quarantine and confirmation, durable event storage, idempotent execution, optional bridge access, and a synchronous request/reply path for one-shot commands.
OpenClaw + EVEZOS Agent
This version replaces the single-regex dispatcher with a persistent event system.
Architecture
- Producers emit typed events.
- The Action Bus persists events and routes them to subscribers.
- The Orchestrator resolves rules, enforces risk gating, executes actions, verifies outcomes, and records learning data.
- The Event Store uses SQLite for durability and idempotency.
- The Gateway Client signs requests and talks to the OpenClaw API.
- The Local File Bridge is optional and restricted to a configured root directory.
Usage
Interactive:
bash
python3 agent.py
One-shot:
bash
python3 agent.py "take a photo"python3 agent.py "verify"python3 agent.py "show pending"
Environment
GATEWAY_HOST— gateway host, defaultlocalhostGATEWAY_PORT— gateway port, default8888AGENT_TOKEN— controller token, defaultdevtokenAGENT_NODE— default target node ID, empty means auto-pickAGENT_DB— SQLite database path, default.openclaw_agent.dbACTION_BUS_BACKEND—memoryorsqliteFILE_BRIDGE_ROOT— root directory for the optional file bridgeFILE_BRIDGE_WRITE—1to allow writes on the bridge, default0
Runtime Notes
- High-risk shell commands remain quarantined until confirmed.
- The bus is synchronous for request/reply, but durable state is still recorded in SQLite.
- The bridge is read-restricted to the configured root and is disabled unless started explicitly.