๐ฆ ClawHub
Sub-agent Task Queue
by @dr-xiaoming
Concurrent task queue management for sub-agent orchestration. Provides a /queue command for real-time visibility into active, queued, and completed sub-agent...
โ๏ธ Configuration
Initialize the queue state file on first use:
cat > /tmp/task-queue.json << 'EOF'
{
"maxConcurrent": 8,
"maxSameType": 3,
"active": [],
"queued": [],
"completed": [],
"stats": { "totalSpawned": 0, "totalCompleted": 0, "totalFailed": 0 },
"updatedAt": null
}
EOF
Adjust maxConcurrent by machine:
TERMINAL
clawhub install subagent-task-queue