원클릭으로
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.