Documentation
README
Coding Agent Standards
Purpose
Use this skill to keep code changes predictable, reviewable, and safe.
Default Behavior
- Clarify the requested outcome and constraints before editing.
- Prefer small, focused changes over broad refactors.
- Preserve existing behavior unless a behavior change is requested.
- Keep naming, structure, and style consistent with nearby code.
- Add or update tests when behavior changes.
Implementation Checklist
- Confirm the smallest viable file set to edit.
- Handle edge cases and explicit failure paths.
- Avoid speculative abstractions and dead code.
- Add concise comments only where intent is not obvious.
- Run available validation steps before finalizing.
This is the opening of the README. Read the full README on GitHub.