一键导入
verify
Run the app + tests + confirm the change actually works (not just unit-tests-green).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run the app + tests + confirm the change actually works (not just unit-tests-green).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Help build/debug DeepSeek API usage (openai-compatible).
Run a command on a recurring interval (poll CI etc.).
Read/extract/combine/split PDFs.
Launch this project's app to see a change in action.
Schedule a one-off or cron task via DeepCode's daemon.
Help author a new skill — frontmatter + body + best-trigger description.
| name | verify |
| description | Run the app + tests + confirm the change actually works (not just unit-tests-green). |
Don't declare a task complete just because unit tests pass. Actually run the code path the user asked about and confirm the observable behavior.
| Change type | Verify by |
|---|---|
| New CLI flag / subcommand | Run the binary with the flag; confirm exit code + stdout. |
| Bug fix in a function | Add (or run) a test that reproduces the bug + passes after the fix. |
| Refactor of internal API | Run the full test suite + grep for remaining old-name callers. |
| Schema migration | Apply forward + backward on a fresh DB; confirm \d matches. |
| HTTP endpoint added | curl localhost:<port>/<path> and inspect the response. |
| Background task / cron | Trigger the entry point manually; check the log file or queue. |
| UI change | Take a screenshot via mcp__computer-use__screenshot OR ask the user. |
A concise paragraph naming what you ran, what you observed, and whether the observation matches the user's intent. If you can't fully verify (e.g. requires production data), say so explicitly and propose the minimum the user has to do.