🧪 Skills
@openclaw/orchestration
Framework for coordinating multi-agent tasks with atomic claims, dependencies, retries, and markdown task visibility using a shared SQLite queue.
v1.0.0
Description
Orchestration Skill
Multi-agent task orchestration framework. Agents delegate tasks via a shared SQLite queue, with .md interchange files for visibility.
Quick Start
cd skills/orchestration
npm install
node src/cli.js agent register my-agent --capabilities "coding,research"
node src/cli.js task create "Build feature X" --desc "..." --priority high
node src/cli.js task claim <task-id> --agent my-agent
node src/cli.js task complete <task-id> --summary "Done"
node src/cli.js refresh
Design
- DB is source of truth — .md files are read-only projections
- Atomic claims — only one agent can claim a pending task
- Dependencies — tasks can depend on other tasks
- Timeout + retry —
sweephandles stale tasks - Interchange —
refreshgenerates .md files via @openclaw/interchange
Reviews (0)
Sign in to write a review.
No reviews yet. Be the first to review!
Comments (0)
No comments yet. Be the first to share your thoughts!