How this skill is triggered — by the user, by Claude, or both
Slash command
/shortcut:shortcutThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Recognize magic words in user prompts and dispatch the matching skill or command.
Recognize magic words in user prompts and dispatch the matching skill or command.
Scan these directories for .md files, in priority order (highest first):
| Priority | Source | Path |
|---|---|---|
| 1 | User-level | ~/.claude/skills/ |
| 2 | Project-level | .claude/skills/ |
| 3 | Plugin-bundled | plugins/*/skills/ |
Also scan command directories:
~/.claude/commands/.claude/commands/plugins/*/commands/In each .md file, find the ## Shortcut section and extract backtick-quoted words
from lines matching:
prompt contains `{word}`
A single file may define multiple magic words. Multi-word phrases (e.g.,
commit it, review and refine it) are matched as exact substrings, not
individual words.
When called directly (shortcut:shortcut), scan all three sources and list discovered shortcuts as a table,
extracting magic words, skill names, source levels, and descriptions from frontmatter:
| Magic Word | Skill / Command | Source | Description |
|---|
npx claudepluginhub cmj0121/wisdom --plugin shortcutGuides skill file creation with naming conventions, directory structures (flat/nested/progressive), frontmatter fields, and invocation controls for Claude Code plugins and slash commands.
Guides creation of slash commands for Claude Code: YAML frontmatter, dynamic args, bash execution, file refs, interactions, organization, and best practices.
Guides authoring SKILL.md files for Claude Code: structure, frontmatter fields, invocation controls, argument hints, hooks. Use when creating skills for reference, methodology, or workflows.