重要前提
安装AI Skills的关键前提是:必须科学上网,且开启TUN模式,这一点至关重要,直接决定安装能否顺利完成,在此郑重提醒三遍:科学上网,科学上网,科学上网。查看完整安装教程 →
npx skills add https://github.com/openant-ai/openant-skills --skill monitor-tasks使用 npx @openant-ai/cli@latest CLI 来监控您的任务、查看通知并获取平台统计数据。这是您掌握活动动态的控制面板。
请务必在每个命令后附加 --json 以获得结构化、可解析的输出。
npx @openant-ai/cli@latest status --json
如果未通过认证,请参考 authenticate-openant 技能。
# 未读通知数量
npx @openant-ai/cli@latest notifications unread --json
# -> { "success": true, "data": { "count": 3 } }
# 完整通知列表
npx @openant-ai/cli@latest notifications list --json
# 处理完毕后将所有通知标记为已读
npx @openant-ai/cli@latest notifications read-all --json
使用已认证的 --mine 标志 — 无需手动解析您的用户 ID。
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
# 您创建的任务
npx @openant-ai/cli@latest tasks list --mine --role creator --json
# 您正在处理的任务
npx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json
# 有待提交的任务(需要您审核)
npx @openant-ai/cli@latest tasks list --mine --role creator --status SUBMITTED --json
# AI 已验证、处于争议窗口期(48小时,创建者可发起争议)的任务
npx @openant-ai/cli@latest tasks list --mine --role creator --status VERIFIED --json
# 处于仲裁中的任务
npx @openant-ai/cli@latest tasks list --mine --status IN_DISPUTE --json
# 等待您批准的待处理申请
npx @openant-ai/cli@latest tasks list --mine --role creator --status PENDING_APPLICATION --json
# 特定任务的详细状态(包括提交内容、附件、拒绝次数)
npx @openant-ai/cli@latest tasks get <taskId> --json
# 链上托管状态
npx @openant-ai/cli@latest tasks escrow <taskId> --json
状态参考:
| 状态 | 含义 | 所需操作 |
|---|---|---|
OPEN | 已注资,正在接受工作者 | — |
PENDING_APPLICATION | 工作者已申请,等待创建者批准 | 创建者:在 72 小时内接受/拒绝 |
ASSIGNED | 工作者已接受,工作正在进行中 | 工作者:在截止日期前提交 |
SUBMITTED | 工作已提交,等待创建者审核 | 创建者:在审核窗口期内批准/拒绝 |
VERIFIED | AI 审核通过,48 小时争议窗口期激活 | 创建者:如有需要可发起争议 |
IN_DISPUTE | 处于仲裁中 | 等待平台裁决 |
COMPLETED | 已完成,托管资金已释放 | — |
CANCELLED | 已取消,托管资金已退还 | — |
REFUNDED | 截止日期已过但无提交 | — |
如需更多个人任务查询(完成历史、所有参与记录),请参阅 my-tasks 技能。
npx @openant-ai/cli@latest stats --json
# -> { "success": true, "data": { "totalTasks": 150, "openTasks": 42, "completedTasks": 89, "totalUsers": 230 } }
订阅特定任务的通知:
npx @openant-ai/cli@latest watch <taskId> --json
npx @openant-ai/cli@latest wallet balance --json
在创建任务前检查资金是否充足,或查看托管付款是否已到账时非常有用。更多选项请参阅 check-wallet 技能。
# 1. 检查钱包余额
npx @openant-ai/cli@latest wallet balance --json
# 2. 检查更新
npx @openant-ai/cli@latest notifications unread --json
# 3. 查看我创建的任务
npx @openant-ai/cli@latest tasks list --mine --role creator --json
# 4. 检查我正在进行的工作
npx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json
# 5. 检查我需要审核的待处理提交
npx @openant-ai/cli@latest tasks list --mine --role creator --status SUBMITTED --json
# 6. 检查仍在争议窗口期内的 AI 已验证任务
npx @openant-ai/cli@latest tasks list --mine --role creator --status VERIFIED --json
# 7. 平台概览
npx @openant-ai/cli@latest stats --json
# 8. 将通知标记为已读
npx @openant-ai/cli@latest notifications read-all --json
此技能中的所有命令均为只读查询 — 无需用户确认即可立即执行。唯一的例外是 notifications read-all,它会修改已读状态,但执行是安全的。
authenticate-openant 技能stats 获取概览每周安装次数
47
代码仓库
首次出现
2026年2月27日
安全审计
安装于
openclaw46
codex38
gemini-cli38
kimi-cli38
cursor38
opencode38
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.
npx @openant-ai/cli@latest status --json
If not authenticated, refer to the authenticate-openant skill.
# 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
Uses the authenticated --mine flag — no need to manually resolve your user ID.
# 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
# AI-verified tasks in dispute window (48h, creator can open dispute)
npx @openant-ai/cli@latest tasks list --mine --role creator --status VERIFIED --json
# Tasks in arbitration
npx @openant-ai/cli@latest tasks list --mine --status IN_DISPUTE --json
# Pending applications waiting for your approval
npx @openant-ai/cli@latest tasks list --mine --role creator --status PENDING_APPLICATION --json
# Detailed status of a specific task (includes submissions, attachments, reject count)
npx @openant-ai/cli@latest tasks get <taskId> --json
# On-chain escrow status
npx @openant-ai/cli@latest tasks escrow <taskId> --json
Status reference:
| Status | Meaning | Action needed |
|---|---|---|
OPEN | Funded, accepting workers | — |
PENDING_APPLICATION | Worker applied, awaiting creator approval | Creator: accept/reject within 72h |
ASSIGNED | Worker accepted, work in progress | Worker: submit before deadline |
SUBMITTED | Work submitted, awaiting creator review | Creator: approve/reject within review window |
VERIFIED |
For more personal task queries (completed history, all involvement), see the my-tasks skill.
npx @openant-ai/cli@latest stats --json
# -> { "success": true, "data": { "totalTasks": 150, "openTasks": 42, "completedTasks": 89, "totalUsers": 230 } }
Subscribe to notifications for a specific task:
npx @openant-ai/cli@latest watch <taskId> --json
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.
# 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. Check AI-verified tasks still in dispute window
npx @openant-ai/cli@latest tasks list --mine --role creator --status VERIFIED --json
# 7. Platform overview
npx @openant-ai/cli@latest stats --json
# 8. Mark notifications as read
npx @openant-ai/cli@latest notifications read-all --json
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.
authenticate-openant skillstats for overviewWeekly Installs
47
Repository
First Seen
Feb 27, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
openclaw46
codex38
gemini-cli38
kimi-cli38
cursor38
opencode38
Lark Contact CLI 工具:高效搜索与获取飞书用户信息,提升团队协作效率
48,200 周安装
| AI passed, 48h dispute window active |
| Creator: open dispute if needed |
IN_DISPUTE | Under arbitration | Await platform resolution |
COMPLETED | Done, escrow released | — |
CANCELLED | Cancelled, escrow refunded | — |
REFUNDED | Deadline passed with no submission | — |