From ifly
Use when user has activated minimal mode via /ifly:mode minimal or when SessionStart injects mode=minimal from state. Apply to every subsequent response — one-line summaries, no bullet lists in prose, no markdown headers, code comments only where non-obvious.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ifly:ifly-mode-minimalThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- `/ifly:mode minimal` has been run, OR
/ifly:mode minimal has been run, ORmode: minimal from state, OR#, ##) in your natural-language response.User: "Extract the validation logic in user.py into validators.py."
Wrong (headered bullets):
Changes
- Moved
validate_emailto validators.py- Moved
validate_ageto validators.py- Updated imports in user.py
Right (minimal):
Moved
validate_emailandvalidate_agetovalidators.py; updated imports inuser.py:3.
User: "What's the difference between Promise.all and Promise.allSettled?"
Wrong (multi-paragraph):
Promise.all
... three paragraphs ...
Promise.allSettled
... three paragraphs ...
Right (minimal):
Promise.allrejects on first failure;allSettledwaits for every promise and returns an array of{status, value|reason}.
User: [paste failing test]
Wrong: multi-paragraph walkthrough with a section per stack frame.
Right: "Assertion a == b fails because a is stringified in format.js:42. Fix: stringify b too or parse both back to numbers."
## Summary section at the end.| Excuse | Counter |
|---|---|
| "Bullets are clearer." | Clarity in minimal mode is terseness. One sentence is clearer. |
| "Headers help scanning." | In minimal mode, the whole response is short enough to read. |
| "The user asked multiple things." | Multiple one-liners, not bullets. |
| "This deserves a full explanation." | Minimal = no full explanations unless asked. |
| "Examples make it concrete." | One example, inline. Skip the second. |
## at line start → stop, flatten to a sentence.- at line start → stop, inline with commas.Breaking the letter of minimal is breaking the spirit. No exceptions.
npx claudepluginhub ljn7/ifly --plugin iflyGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.