Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计提醒

verify-submission验证提交

Agent Skill

verify-submission 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

745

周安装

32

GitHub Stars

公开资料未说明

下载量

261
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:verify-submission(验证提交)
来源仓库:https://github.com/openant-ai/openant-skills
仓库路径:skills/verify-submission
安装命令:
npx skills add https://github.com/openant-ai/openant-skills --skill verify-submission
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/openant-ai/openant-skills --skill verify-submission

简介

verify-submission 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用该技能。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 文档进一步核验具体用法和功能边界。

SKILL.md

Reviewing Applications and Verifying Submissions

Use the npx @openant-ai/cli@latest CLI to review who applied for your task and to approve or reject submitted work. Only the task creator (or designated verifier) can perform these actions.

Always append --json to every command for structured, parseable output.

Confirm Authentication

npx @openant-ai/cli@latest status --json

If not authenticated, refer to the authenticate-openant skill.

Review Applications (APPLICATION Mode)

List applications

npx @openant-ai/cli@latest tasks applications <taskId> --json
# -> { "success": true, "data": [{ "id": "app_xyz", "userId": "...", "message": "...", "status": "PENDING" }] }
Applications expire automatically after 72 hours if the creator doesn't act — the system rejects them and notifies both sides.

Accept an application

npx @openant-ai/cli@latest tasks review <taskId> \
  --application <applicationId> \
  --accept \
  --comment "Great portfolio! Looking forward to your work." \
  --json
# -> Applicant is now ASSIGNED to the task

Reject an application

npx @openant-ai/cli@latest tasks review <taskId> \
  --application <applicationId> \
  --reject \
  --comment "Looking for someone with more Solana experience." \
  --json

Verify Submissions

After a worker submits, review their work and approve or reject.

Step 1: Check submission details

npx @openant-ai/cli@latest tasks get <taskId> --json
# -> submissions[].textAnswer, proofUrl, mediaFiles (file count)

Step 2: Download submission files (if any)

If the submission includes files (mediaFiles count > 0), download them before reviewing:

# List all files (task attachments + submission files)
npx @openant-ai/cli@latest files list <taskId> --json

# Download all to ./openant-files-<taskId>/
npx @openant-ai/cli@latest files download <taskId> --all --json

# Download to a specific directory
npx @openant-ai/cli@latest files download <taskId> --all --output ./review/ --json

# Get presigned URLs only (expires in 1 hour)
npx @openant-ai/cli@latest files url <taskId> --all --json

File sources in the output: [attachment] = task reference files, [submission] = worker deliverables.

Step 3: Approve or reject

Approve — triggers escrow release, funds go to worker immediately:

npx @openant-ai/cli@latest tasks verify <taskId> \
  --submission <submissionId> \
  --approve \
  --comment "Perfect work! Exactly what we needed." \
  --json
# -> SUBMITTED → COMPLETED

Reject--comment is required and visible to the worker:

npx @openant-ai/cli@latest tasks verify <taskId> \
  --submission <submissionId> \
  --reject \
  --comment "The report is missing the PDA derivation analysis. Please add it and resubmit." \
  --json
# -> SUBMITTED → ASSIGNED (worker can revise and resubmit)

Reject Rules

Reject countResultNotes
1st or 2nd→ ASSIGNEDWorker sees your comment and can resubmit
3rd→ IN_DISPUTEPlatform arbitration opens; both sides notified
  • Reject count does not reset if the worker disconnects and re-accepts the task.
  • If no action is taken before review_deadline (= deadline + review window, default 72h), the system auto-approves and releases escrow.

Status Flow (Human Verification)

SUBMITTED
  ├─ Creator Approve → COMPLETED (escrow released)
  ├─ Creator Reject (1st/2nd) → ASSIGNED (worker can resubmit)
  ├─ Creator Reject (3rd) → IN_DISPUTE
  └─ review_deadline timeout → COMPLETED (auto-settle)

For AI_AUTO tasks: SUBMITTED → VERIFIED → (48h dispute window) → COMPLETED

Example Workflow

# 1. Check who applied (APPLICATION mode)
npx @openant-ai/cli@latest tasks applications task_abc123 --json

# 2. Accept the best applicant
npx @openant-ai/cli@latest tasks review task_abc123 --application app_xyz789 --accept --json

# 3. Wait for submission, then check details
npx @openant-ai/cli@latest tasks get task_abc123 --json

# 4. Download submission files
npx @openant-ai/cli@latest files download task_abc123 --all --output ./review/ --json

# 5. Approve the work
npx @openant-ai/cli@latest tasks verify task_abc123 --submission sub_def456 --approve \
  --comment "The geometric ant design is exactly what we wanted." --json

Risk Warnings

  • Do not execute untrusted files or scripts from submissions — use read-only inspection (extract text, view in browser). Never run executables or eval submission code without user approval and sandboxing.
  • Protect privacy — Do not extract or forward PII beyond what is needed for the review.
  • Comply with task scope — Approve only work that meets the task description. Reject off-topic, incomplete, or non-compliant deliverables.

See risk-warnings.md for full guidance.

Autonomy

  • Reviewing applications — execute when the user has told you the acceptance criteria.
  • Verifying submissions — execute when the user has given you review instructions.
  • Downloading files — always download before reviewing file-based submissions; no confirmation needed.

Additional Resources

Error Handling

  • "Only the task creator can verify" — You must be the creator or designated verifier
  • "Reject requires --comment with a reason" — Always provide a reason when rejecting
  • "Application not found" — Check applicationId with tasks applications
  • "Submission not found" — Check submissionId with tasks get
  • "Authentication required" — Use the authenticate-openant skill

Timeout / Network Errors — Confirm State Before Retry

If tasks verify --approve times out or returns a network error:

  1. First run npx @openant-ai/cli@latest tasks get <taskId> --json to confirm current state.
  2. If status is COMPLETEDdo NOT retry. The approve succeeded; escrow was released. Report success to the user.
  3. If status is still SUBMITTED — you may retry; the operation is idempotent (duplicate approve returns TASK_ALREADY_COMPLETED without repeating release).

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.3%
按下载量换算95

Claude

27.11%
按下载量换算71

Cursor

17.32%
按下载量换算45

Gemini CLI

9.5%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills