The honest comparison
Loose skills vs Superpowers vs Flowy.
Flowy does not replace skill libraries. It layers on top: a routing and enforcement layer that decides which skill fires when, and makes that decision mandatory.
Loose skills
You collect SKILL.md files from repos, guides, and GitHub stars. Each file tells the agent what it can do in a given context.
- Discovery: you find and collect skills yourself
- Routing: you remember which skill to invoke and when
- Enforcement: none. Skills are suggestions; the agent treats them as hints
- Quality: varies wildly. No shared review bar
Superpowers
An excellent, widely-used open-source skill library by Jesse Vincent. Brings proven, hand-built skills and its own conventions for how agents should work.
- Discovery: one install gives you the full skill set
- Routing: you choose which skill to invoke per prompt
- Enforcement: none built-in. Invocation is your call every time
- Quality: high. Skills are author-maintained and widely tested
Flowy
A routing and enforcement layer. Hand-picked skills are glued by a FLOW.md that auto-invokes the right skill at the right moment, made mandatory by a hook. Works with libraries like Superpowers, not against them.
- Discovery: hand-picked Flows in one library. No hunting
- Routing: FLOW.md reads your intent and auto-invokes the right skill. You just prompt
- Enforcement: a hook makes routing mandatory, not optional
- Composition: layers on top of any skill library, including Superpowers
Mechanism breakdown
What actually differs.
| Mechanism | Loose skills | Superpowers | Flowy |
|---|---|---|---|
| Discovery | you find and collect | one install, full library | hand-picked Flows in one place |
| Routing | you remember which skill and when | you choose per prompt | FLOW.md reads context, auto-invokes |
| Enforcement | none | none | hook makes routing mandatory |
| Setup | manual collection | install once | install plugin, activate a Flow |
Better together
Flowy on top of Superpowers.
The superpowers-flow Flow is the clearest example: it is a Flowy Flow whose FLOW.md routes Superpowers' own skills. You still have access to everything Superpowers provides. Flowy adds the layer that decides when each skill fires and makes that decision stick.
Think of it as a conductor score on top of a full orchestra: the instruments are already excellent. The score is what makes them play together without you waving the baton on every measure.
See it in action.
Browse the Flows in the library, or read what a Flow actually is before you decide.