| name | tweak |
| description | Direct implementation mode for small, known fixes or UI updates. Bypasses heavy diagnosis or PRD creation. |
Tweak
Use for small known fixes.
- Locate target files quickly.
- Ask only if multiple identical matches.
- Implement exact requested fix.
- DO NOT rewrite surrounding logic unless requested.
- If existing test covers touched area, run it.
- DO NOT write new tests unless asked.
- Confirm change.
- For R3+ risk, suggest
/zoo-verify before /zoo-code-review before /zoo-commit-and-document. Do not auto-launch. Otherwise offer /zoo-commit-and-document only after user satisfied.
- Do not auto-launch follow-up commands.
Complete
Call attempt_completion with:
- what was changed (file paths, line ranges)
- status (complete / blocked with reason)
- recommended next command
Do NOT use ask_followup_question or write results as plain text without calling the tool.
Context economy
Before broad reads, locate relevant files/symbols with list_files, search_files, or codebase_search.
Prefer targeted read_file ranges or indentation/block reads once the relevant area is known.
Read full files only when structure, ordering, or surrounding context is required for correctness.
Do not re-read unchanged files; use prior findings unless the file changed.
For small changes, audit only the named files and nearby call sites. Expand search only if the first audit shows hidden dependencies.