← 返回 Skills 市场
teoslayer

Pilot Task Monitor

作者 Calin Teodor · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
139
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install 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...
使用说明 (SKILL.md)

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.

安全使用建议
This skill is instruction-only and appears to do what it says: poll a locally running pilotctl daemon and summarize task/polo-score data. Before installing, verify that the pilotctl binary is the official CLI from https://pilotprotocol.network (or another trusted source), confirm you trust the referenced pilot-protocol skill, and ensure jq and watch are available on your system (SKILL.md uses them even though the registry only listed pilotctl). Also note the skill requires a running pilotctl daemon and will continuously poll it, so consider whether that behavior and the AGPL-3.0 license are acceptable for your environment.
功能分析
Type: OpenClaw Skill Name: pilot-task-monitor Version: 1.0.0 The pilot-task-monitor skill provides a dashboard for tracking task status and metrics using the pilotctl CLI tool. The commands and bash scripts in SKILL.md are standard monitoring operations using jq and watch, with no evidence of malicious intent, data exfiltration, or harmful prompt injection.
能力评估
Purpose & Capability
The name and description describe real-time task monitoring and polo-score tracking and the runtime instructions exclusively call pilotctl (the Pilot Protocol CLI) to list tasks and read status; needing the pilot-protocol skill and pilotctl is appropriate. Minor note: SKILL.md also uses jq and watch but the registry 'required binaries' list only includes pilotctl.
Instruction Scope
Instructions are limited to running pilotctl, parsing its JSON output with jq, and optionally using watch or a bash loop for polling. The skill does not read arbitrary files, access unrelated environment variables, or transmit data to external endpoints — it assumes a local pilotctl daemon is running and polls it.
Install Mechanism
There is no install spec and no code written to disk (instruction-only), which is the lowest-risk model. Nothing in the skill attempts to download or install external code.
Credentials
No environment variables, credentials, or config paths are requested. The skill's runtime commands interact only with pilotctl; this matches the stated purpose and does not ask for unrelated secrets.
Persistence & Privilege
always:false and default model invocation are used; the skill does not request persistent system presence, modify other skills, or declare elevated privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install pilot-task-monitor
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /pilot-task-monitor 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug pilot-task-monitor
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 139 次。

如何安装 Pilot Task Monitor?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install pilot-task-monitor」即可一键安装,无需额外配置。

Pilot Task Monitor 是免费的吗?

是的,Pilot Task Monitor 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Pilot Task Monitor 支持哪些平台?

Pilot Task Monitor 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Pilot Task Monitor?

由 Calin Teodor(@teoslayer)开发并维护,当前版本 v1.0.0。

💬 留言讨论