← ClaudeAtlas

mxhelplisted

Use when the user says "/mxHelp", "/mxHelp <name>", or asks which mx-skill does what. Lists all installed mx*-skills grouped by category, or explains one skill in detail. Pure reader — no side effects.
MicrotronX/mxLore · ★ 25 · AI & Automation · score 75
Install: claude install-skill MicrotronX/mxLore
# /mxHelp — mx-Skill Discoverability (AI-Steno: !=forbidden →=use ⚡=critical) > Thin renderer over existing SKILL.md files. NO content authoring, NO MCP writes, NO state changes. > Source of truth = each `~/.claude/skills/mx*/SKILL.md`. This skill only globs, parses frontmatter, and renders. ## Modes | Argument | Mode | |----------|------| | (empty) | List all public mx*-skills grouped by category | | `<skillname>` | Detail view: purpose + modes + examples for one skill | ## Mode 1: List (default, `--verbose` for full descriptions) ⚡ **Tool budget: max 2 tool calls (1× Glob + 1× Grep). NO per-file Reads. NO Bash.** Each Read on a fresh session triggers a permission prompt — multiplied by N skills this is unusable. Stay within Glob+Grep. - **Zero-result handling:** If Glob returns zero matches OR all matches are filtered out by the allowlist, render exactly: `No public mx*-skills installed. Run /mxSetup to install the mxLore-skills bundle.` and return. Do NOT render empty category headers. 1. **Glob (1 call):** `~/.claude/skills/mx*/SKILL.md` — case-insensitive on Windows NTFS. Confirms which skills exist on disk. 2. **Grep (1 call) — extract all frontmatter at once:** - `pattern: '^(name|description):'` - `path: '~/.claude/skills'` - `glob: 'mx*/SKILL.md'` - `output_mode: 'content'` - `-n: true` (line numbers) - Result: every `name:` and `description:` line for ALL mx-skills in a single tool call. Format: `<filepath>:<lineno>:<content>` -