SkillHub

openclaw-orchestration

v1.0.0

基于共享 SQLite 队列的多智能体任务协调框架,支持原子认领、依赖管理、重试及 Markdown 任务可视化。

Sourced from ClawHub, Authored by frank-bot07

Installation

Please help me install the skill `openclaw-orchestration` from SkillHub official store. npx skills add frank-bot07/openclaw-orchestration

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 + retrysweep handles stale tasks
  • Interchangerefresh generates .md files via @openclaw/interchange