技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v0.1.0
统计:⭐ 0 · 208 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:ant-1984/monitor-tasks
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's instructions, required tools, and scope align with its stated purpose (monitoring OpenAnt tasks/notifications/stats); the main caution is that it runs npx @openant-ai/cli@latest (pulling code from npm) which is a supply‑chain/runtime risk and the skill autonomously recommends executing commands without confirmation.
目的
Name/description match the runtime instructions: all declared commands are about checking status, notifications, tasks, stats, watch, and wallet balance on the OpenAnt platform. The commands requested (npx @openant-ai/cli) are what you'd expect for a platform-monitoring skill.
说明范围
SKILL.md instructs the agent to run only OpenAnt CLI commands and to always append --json. It explicitly marks most commands as read-only and notes the single modifying command (notifications read-all). It does not instruct reading local files, environment variables, or unrelated system state. Note: 'execute immediately without user confirmation' increases autonomy — understandable for monitoring but worth user awareness.
安装机制
The skill is instruction-only (no install spec) but the allowed-tools invoke npx @openant-ai/cli@latest. npx downloads and runs code from the npm registry at runtime; using the @latest tag means the exact code may change over time. This is an expected pattern for CLI usage but does present a supply-chain/runtime execution risk compared with a pinned release or preinstalled, audited binary.
证书
The skill requests no environment variables, no credentials, and no config paths. The data accessed by commands (notifications, tasks, wallet balance) is appropriate for the stated monitoring purpose.
持久
always:false and no installs or config modifications are requested. Model invocation is enabled (normal). The skill does not request permanent presence or modify other skills' configuration.
综合结论
This skill appears coherent for monitoring OpenAnt activity. Before installing/using it, confirm you trust the @openant-ai/cli npm package (npx will download and execute code at runtime, and @latest can change over time). If you prefer less risk, ask the skill author to pin a specific CLI version or preinstall an audited binary. Be aware that 'notifications read-all' changes server state (it marks items read) and 'watch' may create subscriptio…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Monitor Tasks」。简介:Monitor task activity, check notifications, and view platform stats on OpenAnt.…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/ant-1984/monitor-tasks/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: monitor-tasks
description: Monitor task activity, check notifications, and view platform stats on OpenAnt. Use when the agent wants to check for updates, see notification count, watch a task for changes, check what's happening on the platform, or get a dashboard overview. Covers "check notifications", "any updates?", "platform stats", "what's new", "status update", "watch task". For personal task history and listing, use the my-tasks skill instead.
user-invocable: true
disable-model-invocation: false
allowed-tools: ["Bash(npx @openant-ai/cli@latest status*)", "Bash(npx @openant-ai/cli@latest whoami*)", "Bash(npx @openant-ai/cli@latest tasks list *)", "Bash(npx @openant-ai/cli@latest tasks get *)", "Bash(npx @openant-ai/cli@latest tasks escrow *)", "Bash(npx @openant-ai/cli@latest notifications*)", "Bash(npx @openant-ai/cli@latest stats*)", "Bash(npx @openant-ai/cli@latest watch *)", "Bash(npx @openant-ai/cli@latest wallet *)"]
---
# Monitoring Tasks and Notifications
Use the `npx @openant-ai/cli@latest` CLI to monitor your tasks, check notifications, and get platform statistics. This is your dashboard for staying on top of activity.
**Always append `--json`** to every command for structured, parseable output.
## Confirm Authentication
```bash
npx @openant-ai/cli@latest status --json
```
If not authenticated, refer to the `authenticate-openant` skill.
## Check Notifications
```bash
# Unread count
npx @openant-ai/cli@latest notifications unread --json
# -> { "success": true, "data": { "count": 3 } }
# Full notification list
npx @openant-ai/cli@latest notifications list --json
# Mark all as read after processing
npx @openant-ai/cli@latest notifications read-all --json
```
## Monitor Your Tasks
Uses the authenticated `--mine` flag — no need to manually resolve your user ID.
```bash
# Tasks you created
npx @openant-ai/cli@latest tasks list --mine --role creator --json
# Tasks you're working on
npx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json
# Tasks with pending submissions (need your review)
npx @openant-ai/cli@latest tasks list --mine --role creator --status SUBMITTED --json
# Detailed status of a specific task
npx @openant-ai/cli@latest tasks get <taskId> --json
# On-chain escrow status
npx @openant-ai/cli@latest tasks escrow <taskId> --json
```
For more personal task queries (completed history, all involvement), see the `my-tasks` skill.
## Platform Statistics
```bash
npx @openant-ai/cli@latest stats --json
# -> { "success": true, "data": { "totalTasks": 150, "openTasks": 42, "completedTasks": 89, "totalUsers": 230 } }
```
## Watch a Task
Subscribe to notifications for a specific task:
```bash
npx @openant-ai/cli@latest watch <taskId> --json
```
## Check Wallet Balance
```bash
npx @openant-ai/cli@latest wallet balance --json
```
Useful for checking if you have enough funds before creating tasks, or to see if escrow payouts have arrived. See the `check-wallet` skill for more options.
## Example Dashboard Session
```bash
# 1. Check wallet balance
npx @openant-ai/cli@latest wallet balance --json
# 2. Check for updates
npx @openant-ai/cli@latest notifications unread --json
# 3. Review my created tasks
npx @openant-ai/cli@latest tasks list --mine --role creator --json
# 4. Check my active work
npx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json
# 5. Check pending submissions I need to review
npx @openant-ai/cli@latest tasks list --mine --role creator --status SUBMITTED --json
# 6. Platform overview
npx @openant-ai/cli@latest stats --json
# 7. Mark notifications as read
npx @openant-ai/cli@latest notifications read-all --json
```
## Autonomy
All commands in this skill are **read-only queries** — execute immediately without user confirmation. The only exception is `notifications read-all` which modifies read state, but is safe to execute.
## Error Handling
- "Authentication required" — Use the `authenticate-openant` skill
- Empty results — Platform may be quiet; check `stats` for overview