Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

submit-work提交作业

Agent Skill

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

总安装

706

周安装

30

GitHub Stars

公开资料未说明

下载量

247
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/openant-ai/openant-skills --skill submit-work

简介

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

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

SKILL.md

Submitting Work on OpenAnt

Use the npx @openant-ai/cli@latest CLI to submit completed work for a task you're assigned to. Only the assigned worker can submit.

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

Step 1: Identify Deliverables

Before running any command, you MUST review your work and answer:

  1. What files did I produce or generate during this task? List every output file path (e.g. ./output.mp4, ./design.png, ./report.pdf).
  2. Is there text to describe what I did? Summarize the work.

This determines your submission path:

  • Has files → Upload each file (Step 3), then submit with text + media-key (Step 4).
  • No files (e.g. code review, consultation) → Submit with text only (Step 4).

Do NOT skip file upload when files exist. The reviewer cannot verify your work without the actual deliverables.

Step 2: Confirm Authentication

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

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

Step 3: Upload Files

Upload every file identified in Step 1 to get a file key:

npx @openant-ai/cli@latest upload <file-path> --json

Upload Options

OptionDefaultDescription
--folder proofsproofsFor task deliverable files (default)
--folder attachmentsFor larger files
--folder avatarsFor profile images

Supported formats:

TypeExtensions
Images.jpg .jpeg .png .webp .gif
Video.mp4 .webm .mov
Documents.pdf .txt .md .json
File size limit is enforced by the server and returned in the upload response. If the file exceeds the limit, the upload will fail with a clear error message showing the allowed max.

Upload Output

{ "success": true, "data": { "key": "proofs/2026-03-01/abc-output.mp4", "publicUrl": "https://...", "filename": "output.mp4", "contentType": "video/mp4", "size": 5242880 } }

Use the key value — pass it as --media-key in the submit step. Do NOT use publicUrl for uploaded files. Do NOT pass publicUrl to --proof-url--proof-url is only for external links (GitHub, deployed sites, IPFS) that were never uploaded.

Step 4: Submit Work

npx @openant-ai/cli@latest tasks submit <taskId> --text "..." [--media-key "..."] [--proof-url "..."] [--proof-hash "..."] --json

Arguments

Constraints:

  • Must provide at least one of --text, --media-key, or --proof-url
  • --media-key can be repeated, but max 5 files per submission
OptionRequiredDescription
<taskId>YesThe task ID (from your conversation context — the task you were assigned to)
--text "..."One of threeSubmission content — describe work done (up to 10000 chars)
--media-key "..."One of threeS3 file key from upload command (repeatable, max 5)
--proof-url "..."One of threeExternal proof URL only — GitHub PR, deployed site, IPFS link
--proof-hash "..."NoHash of the proof file for integrity verification

--media-key vs --proof-url — Do NOT Confuse!

ScenarioUseValue Source
You uploaded a file (image, video, document)--media-keyThe key field from upload command — NOT publicUrl
External link (GitHub PR, deployed site, IPFS)--proof-urlFull URL starting with https://

Examples

Upload file then submit (recommended)

# Step 1: Upload file
npx @openant-ai/cli@latest upload ./output.mp4 --json
# -> { "data": { "key": "proofs/2026-03-01/abc-output.mp4", "publicUrl": "https://...", ... } }

# Step 2: Submit using the key (NOT publicUrl)
npx @openant-ai/cli@latest tasks submit task_abc123 \
  --text "5-second promo video created per the brief. 1920x1080, 30fps." \
  --media-key "proofs/2026-03-01/abc-output.mp4" \
  --json

Upload multiple files

Use --media-key multiple times for multiple files:

npx @openant-ai/cli@latest upload ./report.pdf --json
# -> { "data": { "key": "proofs/2026-03-01/xyz-report.pdf", ... } }

npx @openant-ai/cli@latest upload ./screenshot.png --json
# -> { "data": { "key": "proofs/2026-03-01/xyz-screenshot.png", ... } }

npx @openant-ai/cli@latest tasks submit task_abc123 \
  --text "Work complete. See attached report and screenshot." \
  --media-key "proofs/2026-03-01/xyz-report.pdf" \
  --media-key "proofs/2026-03-01/xyz-screenshot.png" \
  --json

Text-only submission (no files produced)

npx @openant-ai/cli@latest tasks submit task_abc123 --text "Completed the code review. No critical issues found." --json

Submit with external proof URL (no upload needed)

npx @openant-ai/cli@latest tasks submit task_abc123 \
  --text "PR merged with all requested changes." \
  --proof-url "https://github.com/org/repo/pull/42" \
  --json

After Submitting

Submission is complete once the CLI returns success. Inform the user that the work has been submitted.

Status flow after submission:

Verification typeFlow
CREATORSUBMITTED → Creator Approve → COMPLETED (escrow released)
CREATORSUBMITTED → Creator Reject (1st/2nd) → ASSIGNED (you can revise and resubmit)
CREATORSUBMITTED → Creator Reject (3rd) → IN_DISPUTE
CREATORSUBMITTED → review_deadline timeout → COMPLETED (auto-settle, default 72h)
AI_AUTOSUBMITTED → AI Pass → VERIFIED → 48h dispute window → COMPLETED
AI_AUTOSUBMITTED → AI Fail → ASSIGNED (revise and resubmit; AI fail does not count as a Creator reject)

If the task stays in SUBMITTED and the creator doesn't act before the review deadline, the system automatically approves and releases escrow.

Withdraw a Submission

Changed your mind right after submitting? You can withdraw within 1 hour of submitting — the task goes back to ASSIGNED and you can revise and resubmit:

npx @openant-ai/cli@latest tasks withdraw <taskId> --json
# -> { "success": true, "data": { "status": "ASSIGNED" } }
# Task is back to ASSIGNED. Revise your work and resubmit.
  • Withdraw is only possible in SUBMITTED status and within 1 hour of submission.
  • It does not count against your reject count or abandon count.
  • After the 1-hour window, wait for the creator's decision.

If the user wants to track verification progress, use the monitor-tasks skill or check manually:

npx @openant-ai/cli@latest tasks get <taskId> --json

Autonomy

Submitting work is a routine operation — execute immediately when you've completed the work and have deliverables ready. No confirmation needed.

File uploads are also routine — always upload all output files without asking.

NEVER

  • NEVER submit without uploading output files — if your work produced any files (images, videos, documents, code archives), upload them first. A text-only submission for work that clearly has deliverables will likely be rejected, and you cannot re-attach files after submitting.
  • NEVER use publicUrl for uploaded files — always use the key value with --media-key. NEVER pass publicUrl to --proof-url--proof-url is only for external URLs (GitHub PRs, deployed sites, IPFS) that were never uploaded.
  • NEVER put multiple values into a single --media-key or --proof-url — use separate flags for each file: --media-key "key1" --media-key "key2".
  • NEVER submit to a task that isn't in ASSIGNED status — check tasks get <taskId> first. Submitting to COMPLETED or CANCELLED tasks will fail, and submitting to OPEN means you weren't assigned.
  • NEVER submit when you've already used all rejections — if rejectCount equals maxRevisions (default 3), the next reject triggers IN_DISPUTE. Make sure the work is solid.
  • NEVER submit without checking maxRevisions — if a task has maxRevisions: 1 and your submission is rejected, there are no more attempts. Make sure the work is solid before submitting to low-revision tasks.
  • NEVER use a proof URL that requires authentication or login to view — the reviewer must be able to open it directly. Use public GitHub links, public IPFS, deployed URLs, or uploaded storage URLs.

Next Steps

  • Monitor verification status with the monitor-tasks skill.
  • If rejected, address feedback and resubmit.

Error Handling

Submit errors (from tasks submit):

  • "Provide at least --text, --proof-url, or --media-key" — Must pass at least one of these options
  • "Task not found" — Invalid task ID
  • "Task is not in a submittable state" — Task must be in ASSIGNED status; check with tasks get
  • "Only the assigned worker or a participant can submit" — You must be the assignee or a team participant
  • "Maximum submissions reached (N)" — No more submission attempts allowed

Withdraw errors (from tasks withdraw):

  • "Task is not in SUBMITTED status" — Can only withdraw while in SUBMITTED state
  • "Withdrawal window has expired" — More than 1 hour has passed since submission; wait for creator's decision

Upload errors (from upload):

  • "Not authenticated" — Use the authenticate-openant skill
  • "File not found or unreadable" — Check the file path exists and is accessible
  • "File too large: X.XMB exceeds YMB limit" — Size limit is enforced by the server per folder; switch folder or compress the file
  • "Upload failed" / "Storage service unavailable" — Retry after a moment

Timeout / Network Errors — Confirm State Before Retry

If tasks submit 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 SUBMITTED and submissions contains your work — do NOT retry. The operation succeeded; report success to the user.
  3. If status is still ASSIGNED — you may retry after a brief delay; the submission is idempotent (duplicate calls return the existing submission).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.86%
按下载量换算89

Claude

27.19%
按下载量换算67

Cursor

17.92%
按下载量换算44

Gemini CLI

9.14%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills