What problem does it solve?
Point helps you make one small software change by tracing a result back to its cause and choosing the simplest proof that the change worked. It is designed for local bugs, focused features, configuration tweaks, small refactors, and failing tests where the right answer can be verified close to the source.
Core Features & Use Cases
- Cause-and-effect debugging: Works backward from the observed outcome to the smallest part that can produce it.
- Minimal, proof-driven changes: Encourages the smallest complete fix and the most direct check, so you do not expand scope unnecessarily.
- Local verification: Fits issues where a nearby regression test or behavior check can confirm the result.
- Use case: A test fails because one function returns the wrong value; Point helps isolate the local cause, make the smallest safe change, and prove the fix with a direct check.
Quick Start
Use the point skill to identify the local cause of this bug, make the smallest change, and verify it with the most direct test.