π¦ ClawHub
Multi-Agent Manager
by @victory2694
Monitor and visualize multiple agents across projects in real-time with JSON output for debugging and performance tracking.
TERMINAL
clawhub install multi-agent-managerπ About This Skill
Continuous Monitoring
Watch agent status in real-time:python3 {baseDir}/scripts/monitor.py --watch --interval 5
JSON Output
Get machine-readable output:python3 {baseDir}/scripts/visualize.py --format json
Example JSON:
{
"agents": [
{
"id": "main",
"model": "anthropic/claude-sonnet-4-6",
"workspace": "/Users/user/.openclaw/workspace",
"sessions": 0
}
],
"total": 2
}
π Use Cases
1. Debugging Agent Issues
When an agent isn't responding:# Check if agent is running
python3 {baseDir}/scripts/monitor.pyView agent details
python3 {baseDir}/scripts/visualize.py
2. Managing Multiple Projects
Track agents across different projects:# See all agents and their workspaces
python3 {baseDir}/scripts/visualize.py
3. Optimizing Agent Performance
Monitor which agents are most active:# Watch real-time activity
python3 {baseDir}/scripts/monitor.py --watch
π― Common Scenarios
Scenario: "Which agents do I have?"
python3 {baseDir}/scripts/visualize.py
Scenario: "Is my agent still running?"
python3 {baseDir}/scripts/monitor.py
Scenario: "What's my agent doing right now?"
python3 {baseDir}/scripts/monitor.py --watch
π‘ Tips
--format json for integration with other toolsmonitor.py --watch in a separate terminal for continuous monitoringπ Troubleshooting
Problem: "No agents found"
openclaw statusProblem: "Script not found"
python3 --versionπ Changelog
v1.0.0 (2026-03-14)
π€ Contributing
Found a bug or have a feature request?
π License
MIT License - feel free to use and modify!