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.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin license-populatorThis skill uses the workspace's default tool permissions.
Enumerate the user's template store and display a compact table.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
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.