Help
Skill RockyHong/super-bootstrap/plugins/super-bootstrap/skills/help
Claude Code plugin: one command scaffolds CLAUDE.md, picks skills/MCPs for your stack, and adds a route-aware workflow with doc-sync commit gate.
npx -y skills add RockyHong/super-bootstrap --skill helpAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 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
Passive on-demand index of installed user-invoke skills, grouped by category. Bundled with super-bootstrap. Invoke as `/super-bootstrap:help` (namespaced to avoid colliding with Claude Code's built-in `/help`); `/super-bootstrap:help <category>` filters. Reads installed-plugin manifest + project skills + per-plugin bundled skills. No active reminders — discovery is pull-only, zero ambient cost.
SKILL.md
1.8 KB, as published. Nobody here has run it
Help — User-Invoke Skill Discovery Surface
Render an on-demand menu of slash commands the user can invoke in this project. Cold-by-nature user-invoke skills (slash commands the user must remember) need a discovery surface; passive /super-bootstrap:help is the right shape.
When to Use
- User forgot which slash commands are available
- User just installed a new plugin and wants to see what it added
- User wants to filter by category (
/super-bootstrap:help git,/super-bootstrap:help docs)
Execution
Protocol lives in the help agent — dispatch via subagent_type: "help".
When the user invokes /super-bootstrap:help [category]:
- Dispatch the
helpsubagent (Agent tool,subagent_type: "help"). Forward the project root path and any category argument as the prompt body. - Relay the agent's rendered menu verbatim to the user. Do not re-do the work.
Rules
- No active reminders. Discovery is pull-only — the user invokes; nothing fires ambiently. Footer-hint convention on other surfaces (e.g.
/super-bootstrap:todoends withmore: /super-bootstrap:help) is the only push. - Namespaced invocation. Always
/super-bootstrap:help, never bare/help— bare/helpis Claude Code's built-in. Footer hints elsewhere in this plugin must use the namespaced form too.