Skillquality 0.45
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-time updates on task status and polo score changes 3. You need a dashboard view of task queue and completion metrics Do
What it does
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.
Capabilities
skillsource-teoslayerskill-pilot-task-monitortopic-agent-skillstopic-ai-agentstopic-clawhubtopic-networkingtopic-openclawtopic-overlay-networktopic-p2ptopic-pilot-protocol
Install
Installnpx skills add TeoSlayer/pilot-skills
Transportskills-sh
Protocolskill
Quality
0.45/ 1.00
deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 6 github stars · SKILL.md body (1,403 chars)
Provenance
Indexed fromgithub
Enriched2026-05-18 19:15:05Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18