/slava:simplify
Principle: Good simplification removes what's unnecessary. Bad simplification cuts corners.
Key Question
"Will this still be the right decision in 6 months?"
Usage
bash
/slava:simplify features/p42.md /slava:simplify # Review current context
How to Think
You're reviewing for sustainable simplicity. Not "simple at any cost" — simple while still being correct, maintainable, and user-friendly.
Remove, don't cut. Removing unnecessary complexity is good. Cutting necessary functionality is bad.
6-month test. Every recommendation should pass: "Will we thank ourselves for this in 6 months?"
Production is the test. Something that works in demos isn't finished.
Workflow
- •Read the document fully
- •Understand what it's trying to achieve
- •Question every piece of complexity — is it necessary?
- •Find what's missing, unclear, or overcomplicated
- •Output decisions, blind spots, opportunities
Never Recommend
These are anti-patterns, not rules to memorize:
- •Corner-cutting disguised as simplification
- •"Add that later" for things users need now
- •Removing error handling, accessibility, or security
- •Technical debt that creates more work than it saves
Output
markdown
### Simplify Review **Key insight:** [Most important finding — 1 sentence] ### Decisions Needed | Question | Options | Recommendation | |----------|---------|----------------| ### Blind Spots | Finding | Severity | |---------|----------| ### Opportunities | Change | Benefit | Risk if skipped | |--------|---------|-----------------|
Other Perspectives
Run these separately if you want additional lenses:
- •
/slava:ux— User experience - •
/slava:lean— Challenge scope, find the MVP - •
/slava:innovate— Explore alternative approaches
Related
- •PRINCIPLES.md — Agent philosophy
- •
/slava:dev— To implement approved changes - •
/slava:kdd— To record decisions