help
SolidList available commands the user can invoke. Works from CLI or messaging channels. Triggers on /help, /commands, /agent:help, "qué comandos puedo usar", "help commands".
AI & Automation 62 stars
14 forks Updated today MIT
Install
Quality Score: 84/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Help — list commands
Show a concise, LIVE list of all available commands. Never hardcode — always pull from the `list_commands` MCP tool so recently installed or removed skills are reflected.
## Steps
1. **Detect the surface.** If the incoming message has a `<channel source="...">` marker, you're on a messaging channel. Otherwise you're on CLI or WebChat.
2. **Call `list_commands`** with the right format:
- **CLI / WebChat:** `list_commands({ format: "table", includeTools: false })` — grouped markdown, readable.
- **Messaging (WhatsApp, Telegram, Discord, iMessage):** `list_commands({ format: "compact", includeTools: false })` — one line per command, mobile-friendly.
Leave `includeTools: false` for the user-facing help — MCP tools are agent-invoked, not user-typed. Users who want the internals can ask "what MCP tools do you have?" and you call with `includeTools: true`.
3. **Print the output** from the tool as-is. Do not rewrite or reorder.
4. **Adapt formatting to the channel** after the tool output:
- WhatsApp: strip `**bold**` → `*bold*`, remove markdown headers if too noisy
- Telegram: keep `**bold**` or convert to HTML
- Discord: markdown as-is
- iMessage: strip markdown to plain text
- CLI / WebChat: markdown as-is
5. **Append a short native-tools note** at the end (only on CLI):
```
Native Claude Code commands (CLI only): /status /usage /cost /compact /clear /mcp /model /help
```
## Example flows
### CLI user asks `/help`
C...
Details
- Author
- crisandrews
- Repository
- crisandrews/ClawCode
- Created
- 5 months ago
- Last Updated
- today
- Language
- TypeScript
- License
- MIT
Integrates with
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
aiwg-help
Display all available AIWG CLI commands, their arguments, and usage examples
210 Updated today
jmagly AI & Automation Listed
engine-help
List the Engine's commands — what you can type and what each one does.
0 Updated today
StarshipSuperjam Web & Frontend Listed
help
Shows where you are in the Web Studio pipeline and what to do next; `commands` lists every command with its description, `guide [topic]` opens the playbook (what to run in every situation). Use when the user asks 'what now', 'what should I do next', 'which commands exist', 'what do I do if…', or is stuck.
0 Updated yesterday
gonimar