What problem does it solve?
This skill provides a centralized, SQLite-backed state store for multi-agent systems, enabling reliable orchestration of agent identities, roles, and queued tasks across the swarm.
Core Features & Use Cases
- State Persistence: Preserves agent identities, roles, concurrent task limits, and pending task queues in a robust rusqlite layer.
- Async-Oriented Design: Built on tokio and designed to integrate with async runtimes; task metadata is stored for external executors to route and execute.
- Dynamic Provisioning: Records metadata for specialized sub-agents (e.g., researcher, coder, reviewer) to be created and managed by the surrounding orchestrator.
- FK-enforced Consistency: SQLite foreign keys ensure cascading cleanup of tasks when an agent is shut down.
- Priority-based Task Queue: Tasks are ranked 1–10 (default 5) and fetched in priority order by consumers.
Quick Start
Spawn a new sub-agent with a role and system prompt to join the swarm.