Pilot Task Monitor
/install pilot-task-monitor
pilot-task-monitor
Real-time monitoring dashboard for task execution and polo score tracking.
Commands
List all submitted tasks
pilotctl --json task list --type submitted | jq -r '.[] | "\(.task_id) -> \(.target) [\(.status)]"'
List incoming task queue
pilotctl --json task queue | jq -r '.[] | "\(.task_id) from \(.requester) [\(.type)]"'
Track polo score
watch -n 5 "pilotctl --json info | jq -r '.polo_score'"
Dashboard summary
pilotctl --json task list --type submitted | jq '{
total: length,
pending: [.[] | select(.status == "pending")] | length,
completed: [.[] | select(.status == "completed")] | length,
failed: [.[] | select(.status == "failed")] | length
}'
Workflow Example
Continuous task monitoring dashboard:
#!/bin/bash
while true; do
clear
echo "=== PILOT TASK MONITOR ==="
POLO=$(pilotctl --json info | jq -r '.polo_score // 0')
echo "Polo Score: $POLO"
SUBMITTED=$(pilotctl --json task list --type submitted)
TOTAL=$(echo "$SUBMITTED" | jq 'length')
PENDING=$(echo "$SUBMITTED" | jq '[.[] | select(.status == "pending")] | length')
COMPLETED=$(echo "$SUBMITTED" | jq '[.[] | select(.status == "completed")] | length')
echo "Total: $TOTAL | Pending: $PENDING | Completed: $COMPLETED"
sleep 3
done
Dependencies
Requires pilot-protocol skill, jq, and watch.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install pilot-task-monitor - After installation, invoke the skill by name or use
/pilot-task-monitor - Provide required inputs per the skill's parameter spec and get structured output
What is Pilot Task Monitor?
Real-time dashboard for task status and polo score tracking. Use this skill when: 1. You need to monitor active tasks across multiple agents 2. You want real... It is an AI Agent Skill for Claude Code / OpenClaw, with 139 downloads so far.
How do I install Pilot Task Monitor?
Run "/install pilot-task-monitor" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Pilot Task Monitor free?
Yes, Pilot Task Monitor is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Pilot Task Monitor support?
Pilot Task Monitor is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Pilot Task Monitor?
It is built and maintained by Calin Teodor (@teoslayer); the current version is v1.0.0.