openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Verify Submission

Review applications and verify task submissions on OpenAnt. Use when the agent (as task creator) needs to review applicants, accept or reject applications, a...

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v0.1.0

统计:⭐ 0 · 194 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:ant-1984/verify-submission

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill is internally consistent: its instructions only call the OpenAnt CLI (via npx) to list/accept/reject applications and verify submissions, and it does not request unrelated credentials or filesystem access.

目的

The name/description match the runtime instructions: all examples and allowed-tools are npx @openant-ai/cli commands for reviewing applications and verifying submissions. Required permissions and actions (accept/reject/approve) are coherent with being a task-creator verifier.

说明范围

SKILL.md confines actions to specific OpenAnt CLI commands and JSON output. It does not instruct reading unrelated files, environment variables, or posting data to external endpoints. It references an authenticate-openant skill for authentication, which is a reasonable external dependency but not declared in metadata.

安装机制

There is no install spec in the registry, but the instructions and allowed-tools require running npx @openant-ai/cli@latest at runtime. That causes npm to fetch/execute a package on demand — a traceable but non-trivial supply-chain risk. Review the npm package and its maintainer/source if you require stricter guarantees.

证书

The skill declares no required environment variables, credentials, or config paths. The actions it performs (using the OpenAnt CLI) generally require being authenticated as the task creator; this is referenced via the authenticate-openant skill rather than by requesting credentials here, which is proportionate.

持久

always is false and the skill does not request system-wide configuration changes or access to other skills' configs. Note: the SKILL.md states the agent may execute approvals when review criteria are provided — approvals trigger escrow release on OpenAnt, so consider agent autonomy settings if you want to limit automatic fund releases.

综合结论

This skill appears to do exactly what it says: it runs the OpenAnt CLI to list applicants and approve/reject submissions. Before installing: (1) Confirm you trust the @openant-ai/cli npm package and its publisher because the skill runs npx @openant-ai/cli@latest (runtime package fetch). (2) Ensure the agent has proper authentication (use authenticate-openant) and that credentials are stored securely. (3) Be aware that approving a submission re…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Verify Submission」。简介:Review applications and verify task submissions on OpenAnt. Use when the agent …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/ant-1984/verify-submission/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: verify-submission
description: Review applications and verify task submissions on OpenAnt. Use when the agent (as task creator) needs to review applicants, accept or reject applications, approve or reject submitted work, or give feedback on deliverables. Covers "review applications", "approve submission", "reject work", "check applicants", "verify task".
user-invocable: true
disable-model-invocation: false
allowed-tools: ["Bash(npx @openant-ai/cli@latest status*)", "Bash(npx @openant-ai/cli@latest tasks applications *)", "Bash(npx @openant-ai/cli@latest tasks review *)", "Bash(npx @openant-ai/cli@latest tasks verify *)", "Bash(npx @openant-ai/cli@latest tasks get *)"]
---

# 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

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

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

## Review Applications (APPLICATION Mode)

### List applications

```bash
npx @openant-ai/cli@latest tasks applications <taskId> --json
# -> { "success": true, "data": [{ "id": "app_xyz", "userId": "...", "message": "...", "status": "PENDING" }] }
```

### Accept an application

```bash
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

```bash
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 their work, review and approve or reject it.

### Check submission details

```bash
npx @openant-ai/cli@latest tasks get <taskId> --json
# -> Look at the submissions array for textAnswer, proofUrl, etc.
```

### Approve a submission

```bash
npx @openant-ai/cli@latest tasks verify <taskId> 
  --submission <submissionId> 
  --approve 
  --comment "Perfect work! Exactly what we needed." 
  --json
```

Approval triggers escrow release — funds are automatically sent to the worker.

### Reject a submission

```bash
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
```

The worker can resubmit (up to `maxRevisions` times).

## Example Workflow

```bash
# 1. Check who applied
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 review
npx @openant-ai/cli@latest tasks get task_abc123 --json

# 4. 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
```

## Autonomy

- **Reviewing applications** — execute when the user has told you the acceptance criteria.
- **Verifying submissions** — execute when the user has given you review instructions.

Both are routine creator operations. No confirmation needed when criteria are clear.

## Error Handling

- "Only the task creator can verify" — You must be the creator or designated verifier
- "Application not found" — Check applicationId with `tasks applications`
- "Submission not found" — Check submissionId with `tasks get`
- "Authentication required" — Use the `authenticate-openant` skill