| name | bounded-change |
| description | Reusable workflow for making one small, bounded VoxProof implementation change. Use when implementing a narrow code change, fixing a focused defect, or extending a single capability without expanding scope. |
Bounded Change
Use this workflow for a small future implementation change. Keep scope narrow, reversible, and easy to review.
Workflow
- Read the relevant canonical VoxProof documentation under
docs/ before touching code.
- State the narrow intended outcome.
- State explicit out-of-scope items.
- Inspect only the smallest relevant code surface.
- Make one coherent change.
- Add or update the narrowest relevant validation, only when implementation exists.
- Report:
- verified facts;
- files changed;
- validation run;
- result;
- unresolved ambiguity;
- intentionally deferred work.
Prohibitions
- Do not perform unrelated cleanup.
- Do not introduce speculative abstractions.
- Do not expand the product beyond what the canonical documents describe.
- Do not convert an inspection task into implementation without explicit authorization.