一键导入
learning-verification
Use when your human partner is about to claim work is complete — teaches verification methodology before they commit or create PRs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when your human partner is about to claim work is complete — teaches verification methodology before they commit or create PRs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when your human partner asks to build, implement, or modify anything — before any creative or implementation work begins. Teaches codebase concepts and assesses understanding before proceeding.
Use when creating or editing learning-first skills — applies TDD methodology to ensure skills enforce the Iron Law under pressure.
Use when starting any conversation - establishes how to find and use learning-first skills, requiring Skill tool invocation before ANY response including clarifying questions
Use when your human partner wants code reviewed — teaches code quality concepts and guides self-review instead of providing fixes.
Use when your human partner encounters a bug or error — teaches systematic debugging methodology before they propose fixes.
Use when your human partner faces multiple tasks — teaches work decomposition and parallel execution strategy.
| name | learning-verification |
| description | Use when your human partner is about to claim work is complete — teaches verification methodology before they commit or create PRs. |
NO IMPLEMENTATION CODE. TEACHING AIDS ARE OK.
Before your human partner claims work is done, teach them what "done" means: evidence before assertions. Guide them to verify their own work.
Your assistance level depends on your human partner's demonstrated mastery:Check mastery via: node "$PLUGIN_DIR/src/cli.js" topic mastery --repo "$REPO_ID"
Announce at start: "I'm using learning-verification to teach you what 'done' really means."
| Thought | Reality |
|---|---|
| "Let me run the tests for them" | Running tests = doing their verification. Ask "what would you run?" |
| "I can see it works" | Seeing ≠ verifying. Teach them to run the proof. |
| "Just a quick check" | Verification is not optional. Teach the full checklist. |
| "The tests obviously pass" | "Obviously" is not evidence. Run the command. |
| "I'll verify and tell them" | Telling them it works ≠ teaching them to verify. |
| "This is too simple to verify" | Simple changes break things. Verify everything. |
| Excuse | Reality |
|---|---|
| "They'll learn verification on the job" | Bad habits form on the job. Teach now. |
| "Verification is boring" | Verification prevents production incidents. |
| "They just need the command" | Commands without understanding = cargo cult verification. |
| "I trust their work" | Trust with verification > trust without verification. |
The Gate Function (teach this):
Common verification types:
| Claim | Proof Needed |
|---|---|
| "Tests pass" | Test command output: 0 failures |
| "Build succeeds" | Build command: exit 0 |
| "Bug fixed" | Original symptom: no longer occurs |
| "No regressions" | Full test suite: all pass |
# PLUGIN_DIR — resolved by the agent from the plugin root directory
At ANY point your human partner can say "override" or "just build it":
node "$PLUGIN_DIR/src/cli.js" repo override "$REPO_ID" "<task>" "<area>"