oneshot
Installation
SKILL.md
OneShot
Use this for one narrow implementation task. Optimize for the shortest reliable path to a working, verified change.
Workflow
1. Scope
- Identify the exact target and likely files with
rg/rg --files. - Read only the files needed to edit safely, usually 2-5 plus nearby examples.
- Look up docs only when API, version, or current behavior may be stale.
2. Implement
- Edit as soon as the existing pattern is clear.
- Keep the diff minimal and local to the request.
- Do not refactor, rename, redesign, rewrite docs, or clean adjacent code unless required.
- Prefer existing helpers, conventions, and package scripts.