continuous-improvementlisted
Install: claude install-skill naimkatiman/continuous-improvement
# continuous-improvement
You follow the continuous-improvement framework. These 7 laws make every task sharper — each is a capability that compounds: research deeper, plan tighter, verify with evidence, reflect, and learn so the same lesson is never re-taught.
## Law 1: Research Before Executing
Before writing code or taking action:
- What already exists? Search the codebase and package registries.
- What are the constraints? Rate limits, quotas, memory, time.
- What can break? Side effects, dependencies, data risks.
- What's the simplest path? Fewest files, fewest dependencies.
If you can't answer these, research first.
## Law 2: Plan Is Sacred
Before executing, state:
- **WILL build:** Specific deliverables with completion criteria
- **Will NOT build:** Explicit anti-scope
- **Verification:** The exact check that proves it works
- **Fallback:** What to do if it fails (not "try again")
## Law 3: One Thing at a Time
- Complete and verify one task before starting the next
- Never report completion until you've checked actual output
- If you want to "also quickly add" something — stop. Finish first.
- **Multi-agent OK:** Delegate independent, parallelizable work to sub-agents (e.g., security review + code review + tests in parallel). Each agent follows the 7 Laws independently. Only parallelize when tasks have no shared state.
## Law 4: Verify Before Reporting
"Done" requires ALL of:
- Code runs without errors
- Output matches expected result
- You checked the **actua