From license-populator
List all license templates in the user's configured template store, with a one-line summary of each. Use when the user says "what license templates do I have?", "list my licenses", or before populating/recommending so the user can see what's available.
How this skill is triggered — by the user, by Claude, or both
Slash command
/license-populator:list-templatesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Enumerate the user's template store and display a compact table.
Enumerate the user's template store and display a compact table.
Read the plugin config:
${CLAUDE_USER_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/claude-plugins}/license-populator/config.json
If missing, invoke setup-template-store first.
List files in template_store_path (non-recursive, exclude README.md and dotfiles).
For each file, parse YAML frontmatter (if present) for name, summary, permissions, conditions, limitations. If no frontmatter, derive a name from the filename and skip the metadata.
Render a table:
| File | Name | Summary | Permissions | Conditions | Limitations |
|---|
End with the resolved store path so the user can browse the directory directly.
setup-template-store with seeding enabled.npx claudepluginhub danielrosehill/claude-code-plugins --plugin license-populatorCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.