Install
openclaw skills install multi-agent-managerMonitor and visualize multiple agents across projects in real-time with JSON output for debugging and performance tracking.
openclaw skills install multi-agent-managerWatch agent status in real-time:
python3 {baseDir}/scripts/monitor.py --watch --interval 5
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
}
When an agent isn't responding:
# Check if agent is running
python3 {baseDir}/scripts/monitor.py
# View agent details
python3 {baseDir}/scripts/visualize.py
Track agents across different projects:
# See all agents and their workspaces
python3 {baseDir}/scripts/visualize.py
Monitor which agents are most active:
# Watch real-time activity
python3 {baseDir}/scripts/monitor.py --watch
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
--format json for integration with other toolsmonitor.py --watch in a separate terminal for continuous monitoringProblem: "No agents found"
openclaw statusProblem: "Script not found"
python3 --versionFound a bug or have a feature request?
MIT License - feel free to use and modify!