一键导入
cmd-idiot-proof-docs
// Simplify documentation for clarity and scannability with approval-gated edits
// Simplify documentation for clarity and scannability with approval-gated edits
Review protocol code for chain halt risks, non-determinism, and onchain behavior bugs
Improve code readability without altering functionality using idiomatic best practices
Remove dead code and duplication pragmatically with a 5-phase systematic approach
Review changes for test gaps, simplification, naming consistency, reuse opportunities, and TODO quality
Create structured GitHub issues from conversation context using gh CLI
Generate and edit Mermaid flowcharts and sequence diagrams with syntax validation and style guidance
| name | cmd-idiot-proof-docs |
| description | Simplify documentation for clarity and scannability with approval-gated edits |
| disable-model-invocation | true |
Use this command to write or rewrite documentation so it is simple, fast to scan, and easy to execute.
<details><summary>...</summary>...</details>Correct pattern:
Start the server:
make start_server
Run a command:
make run_command
Incorrect pattern (separate steps combined in one unlabeled block):
make start_server
make run_command
Use only sections that add value for the specific document. Default section set:
If environment variables or configuration values are required, use this format:
| Name | Purpose | Default |
|---|---|---|
APP_ENV | Runtime environment | development |
API_URL | Base URL for API calls | http://localhost:8000 |
Move long explanations, implementation notes, and low-priority reference material into details blocks:
<details>
<summary>Deep dive: request lifecycle</summary>
Detailed explanation here.
</details>
.md).