From han-plugin-builder
Provides authoritative guidance for building Claude Code skills, agents, and plugins. Includes init/update commands to vendor plugin-building skills into the current repository.
How this skill is triggered — by the user, by Claude, or both
Slash command
/han-plugin-builder:guidanceThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill has three modes. Pick the mode from how it was invoked, then follow
assets/guidance-portable-SKILL.mdassets/rule-index-body.mdreferences/agent-building-guidelines/agent-description-length.mdreferences/agent-building-guidelines/agent-domain-focus.mdreferences/agent-building-guidelines/agent-external-files.mdreferences/agent-building-guidelines/agent-model-selection.mdreferences/agent-building-guidelines/graceful-degradation.mdreferences/agent-building-guidelines/multi-agent-economics.mdreferences/claude-marketplace-and-plugin-configuration/marketplace-json-options.mdreferences/claude-marketplace-and-plugin-configuration/monitors-json-options.mdreferences/claude-marketplace-and-plugin-configuration/plugin-json-options.mdreferences/claude-marketplace-and-plugin-configuration/plugin-naming.mdreferences/claude-marketplace-and-plugin-configuration/themes-json-options.mdreferences/iterative-plugin-development.mdreferences/plugin-entity-taxonomy.mdreferences/skill-building-guidance/agent-dispatch-namespacing.mdreferences/skill-building-guidance/allowed-tools-AskUserQuestion.mdreferences/skill-building-guidance/allowed-tools-bash-permissions.mdreferences/skill-building-guidance/context-hygiene.mdreferences/skill-building-guidance/context-injection-commands.mdThis skill has three modes. Pick the mode from how it was invoked, then follow only that mode's steps.
init or initialize (any case), run
Initialization Mode.update or refresh (any case), run
Update Mode.Serve the relevant guidance for what the user is building. Do not read every guidance document — that defeats the purpose. Find the one or two that apply, read them, and apply them.
The guidance documents live in this skill's own references/ directory. Use
this map to choose, then read only the specific file(s) you need:
${CLAUDE_SKILL_DIR}/references/plugin-entity-taxonomy.md.${CLAUDE_SKILL_DIR}/references/skill-building-guidance/.${CLAUDE_SKILL_DIR}/references/agent-building-guidelines/.${CLAUDE_SKILL_DIR}/references/claude-marketplace-and-plugin-configuration/.${CLAUDE_SKILL_DIR}/references/.${CLAUDE_SKILL_DIR}/references/templates/.Steps:
${CLAUDE_SKILL_DIR}/references/ to
see the available documents, using the map above.Install the plugin-building skills into the current repository so anyone using the repo can run them and consult the guidance, with no dependency on this plugin remaining installed.
${CLAUDE_SKILL_DIR}/scripts/init-guidance.sh from the repository root.
The script vendors three skills into .claude/skills/ under a plugin-
prefix so they never collide with this plugin's own slash commands: a
guidance-only plugin-guidance skill (whose references/ directory is the
single in-repo copy of the guidance documents), plugin-skill-builder, and
plugin-agent-builder (with their names, cross-references, and guidance paths
rewritten to that vendored copy). It then writes the path-scoped rule index at
.claude/rules/plugin-building-guidance.md. Capture its output.paths: globs. Explain that the
three skills are now available directly in the repo (/plugin-guidance,
/plugin-skill-builder, /plugin-agent-builder) and that the rule index is
an index only — Claude Code loads it when a matching skill or agent file is
touched, and it points to the vendored guidance so only the documents the
current file needs are loaded, not all of them.Refresh the vendored skills and their rule index in a repository that already
has them, so contributors get the current skills and guidance after this plugin
has been updated. Updating is the same vendoring operation as Initialization
Mode — it replaces every vendored skill in full (each SKILL.md and the
guidance documents under plugin-guidance/references/, removing any files that
the plugin source has since dropped) and regenerates the rule index — but it
first confirms the skills are actually installed before touching anything.
find .claude -maxdepth 3 \( -path '*/skills/plugin-guidance' -o -name plugin-building-guidance.md \)
from the repository root. The skills are installed only when both the
.claude/skills/plugin-guidance directory and the
.claude/rules/plugin-building-guidance.md rule index turn up.find turns up neither, or only
one of the two), do not update. Tell the user the skills are not installed
at the expected location (.claude/skills/plugin-guidance/ and
.claude/rules/plugin-building-guidance.md) and ask whether they want to
install them now. If they confirm, switch to Initialization Mode and run
its steps. If they decline, stop without writing anything.${CLAUDE_SKILL_DIR}/scripts/init-guidance.sh from the repository root. The
script removes each vendored skill directory and re-copies it fresh from the
plugin source, so every SKILL.md and every guidance document under
plugin-guidance/references/ is replaced with the current version (and any
file the plugin has since removed is dropped), then regenerates the rule
index at .claude/rules/plugin-building-guidance.md. Capture its output.paths: globs.npx claudepluginhub testdouble/han --plugin han-plugin-builderAnalyzes project context, scores installed skills, and generates trigger-based guidance for CLAUDE.md/AGENTS.md to ensure agents know when to use relevant skills.
Maintains Claude Code plugins through domain analysis, structure review, behavioral testing, and quality fixes for skills, commands, agents, hooks, and reference sheets. Use when enhancing existing packs.
Guides creation, modification, and debugging of Claude Code plugins with schemas, templates, checklists, validation workflows, and troubleshooting. Activates on .claude-plugin/, plugin.json, commands/, skills/, hooks/.