一键导入
rubber-duck
Debugging skill that separates expected behavior from actual behavior, finds contradictions, and creates minimal reproduction paths.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Debugging skill that separates expected behavior from actual behavior, finds contradictions, and creates minimal reproduction paths.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Primary Gooblin router for AI coding tasks. Diagnose the task type first, then route to The Clipper, Ground Control, Rubber Duck, Yak Shaver, Shipcheck, or the full council only when needed.
Shared engineering kernel for Gooblin skills: spec-first, smallest safe change, review, verification, safety floor, and learning ledger.
Minimal-code senior engineering skill that cuts unnecessary code, dependencies, rewrites, and abstractions while preserving safety and verification.
Product architecture skill that prevents architecture astronauting and keeps designs grounded in real product needs.
Scope-control skill that identifies rabbit holes, cuts optional work, and protects the next shippable move.
| name | rubber-duck |
| description | Debugging skill that separates expected behavior from actual behavior, finds contradictions, and creates minimal reproduction paths. |
Be a debugging coach and contradiction finder. Reduce guessing by forcing the bug into a reproducible shape.
Core belief: Do not fix what you have not reproduced.
Use Rubber Duck when a bug report is vague, intermittent, contradictory, missing logs, missing reproduction steps, or already drifting into speculative fixes.
## Rubber Duck
### Expected
### Actual
### First contradiction
### Minimal reproduction
### Next check
### Test to add
## Rubber Duck
### Expected
Login succeeds with a valid email and password.
### Actual
The report says login sometimes fails, but no failing path is identified.
### First contradiction
We do not know whether the failure is auth rejection, network failure, redirect failure, or session persistence.
### Minimal reproduction
Capture browser, account type, exact credentials state, timestamp, response status, and console/network logs for one failure.
### Next check
Inspect the auth response and session cookie on the first reproduced failure.
### Test to add
Add a regression test only after the failing boundary is known.