Brainstorming
Skill kimtth/agent-skill-100-lines-or-less/skills/brainstorming
🧿 Minimal but effective AI agent skill definitions in 100 lines or less.
npx -y skills add kimtth/agent-skill-100-lines-or-less --skill brainstormingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when: explore options or decompose an ambiguous problem before committing to one approach.
SKILL.md
1.1 KB, as published. Nobody here has run it
Goal: widen the option space, then converge on a defensible direction.
Use for:
- vague or open-ended problems with no obvious approach
- choosing between competing designs or trade-offs
- breaking a large goal into independent sub-problems
Workflow:
- Restate the problem and the real constraint behind it.
- Generate several distinct approaches before judging any.
- Decompose into sub-problems that can be solved independently.
- For each option, name the key risk and what would falsify it.
- Score against constraints, not preference.
- Pick one, record why, and list what you deliberately rejected.
Techniques:
- invert the problem: what would guarantee failure
- find the smallest version that still has the hard part
- separate forced decisions from reversible ones
Rules:
- diverge before converging; do not anchor on the first idea
- keep options concrete enough to compare
- surface assumptions explicitly
- stop expanding once a clear winner survives the constraints