npx claudepluginhub dkmaker/my-claude-plugins --plugin my-plugin-devWant just this skill?
Then install: npx claudepluginhub u/[userId]/[slug]
Development toolkit for the my-claude-plugins marketplace. Use when working on plugin development, troubleshooting plugin issues, creating new plugins, or maintaining the my-claude-plugins repository.
This skill is limited to using the following tools:
reference/plugin-templates.mdreference/repo-map.mdworkflows/develop.mdworkflows/scaffold.mdworkflows/troubleshoot.mdmy-plugin-dev: Development Toolkit
Development toolkit for the my-claude-plugins marketplace repository (dkmaker/my-claude-plugins).
Step 1: Auto-Detect Context
Before doing anything, gather context:
Detect Repository
Check if we're inside the my-claude-plugins repo:
# Check for marketplace.json with our known plugins
if [ -f ".claude-plugin/marketplace.json" ]; then
jq -r '.name' .claude-plugin/marketplace.json
fi
If not in the repo, check common locations:
/home/cp/code/dkmaker/my-claude-plugins
If repo not found, ask the user for the path.
Detect Dev vs Production Mode
Check how plugins are loaded:
- Dev mode: Plugins loaded via
--plugin-dirpointing to the repo source - Production mode: Plugins loaded from cache at
~/.claude/plugins/cache/my-claude-plugins/
If production mode is detected, warn:
You're running with cached plugins. Changes to source files won't take effect. To develop locally, restart Claude Code with:
claude --plugin-dir /home/cp/code/dkmaker/my-claude-plugins/<plugin-name>
Gather Status
# Current branch and dirty state
git status --short --branch
# Which plugins have changes
git diff --name-only | grep -oP '^[^/]+' | sort -u
Present a context summary to the user before proceeding.
Step 2: Documentation Source
This skill depends on claude-docs CLI as the source of truth for Claude Code conventions.
Priority chain:
-
Check for claude-docs: Run
command -v claude-docs- If available, use
claude-docs get <slug>before generating any plugin component - Key slugs:
plugins,plugins-reference,skills,hooks-guide,hooks,mcp,plugin-marketplaces - Run
claude-docs listto discover all available topics
- If available, use
-
If claude-docs not found: Ask the user to enable the claude-expert plugin:
The
claude-expertplugin provides theclaude-docsCLI which is the source of truth for Claude Code documentation. Enable it with:/plugin install claude-expert@my-claude-plugins -
Last resort fallback: If user declines claude-expert, fetch documentation directly:
- Documentation index:
https://code.claude.com/docs/llms.txt - Use WebFetch to pull the index, then fetch specific page URLs from it
- Warn: "Using remote docs — install claude-expert for faster, cached access"
- Documentation index:
IMPORTANT: Before generating any plugin component (hooks, skills, MCP config, plugin.json), ALWAYS verify the current format via this documentation chain. Never rely on training data for Claude Code specifics.
Step 3: Route to Workflow
Based on $ARGUMENTS:
| First argument | Action |
|---|---|
develop | Load workflows/develop.md — full dev lifecycle |
troubleshoot | Load workflows/troubleshoot.md — diagnostics & debugging |
scaffold | Load workflows/scaffold.md — create a new plugin |
| (none) | Show the three options below and ask which workflow |
If no argument provided, present:
- develop — Make changes to an existing plugin (branch, edit, test, validate, PR)
- troubleshoot — Debug why a plugin/hook/skill/MCP isn't working
- scaffold — Create a brand new plugin from scratch
Also show:
- Current branch and dirty files
- Whether in dev or production mode
- Which plugins have uncommitted changes
- The
claudecommand line for local dev testing
Reference Files
- reference/repo-map.md — Complete inventory of all plugins, their components, and file paths
- reference/plugin-templates.md — Boilerplate templates for every plugin type
Load repo-map.md when you need to understand the current state of any plugin.
Load plugin-templates.md when creating or modifying plugin components.
Similar Skills
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.