Build Claude Code framework components (agents, slash commands, skills, plugins) following standardized templates. Use when creating new agents, commands, skills, or plugins for the multiagent framework.
How this skill is triggered — by the user, by Claude, or both
Slash command
/domain-plugin-builder:skills/build-assistantThis 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 provides templates, validation scripts, and documentation for building Claude Code framework components following the multiagent framework standards.
README.mdexamples.mdreference.mdscripts/add-skill-instructions.shscripts/add-skill-tool.shscripts/create-plugin-structure.pyscripts/create-skill-structures.pyscripts/find-hardcoded-paths.shscripts/fix-argument-hints.shscripts/fix-hardcoded-doc-refs.shscripts/fix-hardcoded-paths.shscripts/fix-script-issues.shscripts/fix-tool-formatting.shscripts/install-plugin-locally.shscripts/list-agents.shscripts/register-commands-in-settings.shscripts/register-skills-in-settings.shscripts/sync-marketplace.shscripts/sync-settings-permissions.shscripts/sync-to-local-marketplace.shThis skill provides templates, validation scripts, and documentation for building Claude Code framework components following the multiagent framework standards.
templates/agents/agent.md.templatetemplates/agents/agent-example.mddocs/claude-code-agents.md (if available)scripts/validate-agent.sh <agent-file>templates/commands/command.md.templatetemplates/commands/command-example.mddocs/01-claude-code-slash-commands.mdscripts/validate-command.sh <command-file>templates/skills/SKILL.md.templatetemplates/skills/skill-example/SKILL.mddocs/02-claude-code-skills.mddocs/04-skills-vs-commands.mdscripts/validate-skill.sh <skill-directory>templates/plugins/plugin.json.templatetemplates/plugins/example-plugin/docs/03-claude-code-plugins.md.claude-plugin/plugin.json manifestscripts/validate-plugin.sh <plugin-directory>Consult docs/04-skills-vs-commands.md to decide:
Agents:
templates/agents/agent.md.template - Standard agent template with frontmattertemplates/agents/agent-example.md - Complete working exampleCommands:
templates/commands/command.md.template - Standard slash command templatetemplates/commands/command-example.md - Complete working exampleSkills:
templates/skills/SKILL.md.template - Standard skill templatetemplates/skills/skill-example/SKILL.md - Git commit helper exampletemplates/skills/README.md - Skills template documentationPlugins:
templates/plugins/plugin.json.template - Plugin manifest templatetemplates/plugins/example-plugin/ - Complete plugin example with commands and skillsscripts/validate-agent.sh - Validates agent frontmatter and structurescripts/validate-command.sh - Validates command frontmatter and structurescripts/validate-skill.sh - Validates SKILL.md frontmatter and "Use when" contextscripts/validate-plugin.sh - Validates plugin manifest and structurescripts/test-build-system.sh - Comprehensive build system test suitedocs/01-claude-code-slash-commands.md - Slash command referencedocs/02-claude-code-skills.md - Skills reference with frontmatter fieldsdocs/03-claude-code-plugins.md - Plugin architecture and structuredocs/04-skills-vs-commands.md - Decision guide for choosing component typetemplates/ directorydocs/Generated from: multiagent-build plugin build-assistant skill Purpose: Standardize framework component creation across multiagent ecosystem Load when: Creating agents, commands, skills, or plugins
npx claudepluginhub vanman2024/domain-plugin-builder --plugin domain-plugin-builderQuick-reference for editing Claude Code skills, agents, slash commands, hooks, plugins, and configs. Triggers on YAML frontmatter, .claude/ files, Task tools, hook debugging.
Scaffolds and builds Claude Code skills from plans or descriptions, generating SKILL.md files, sub-skills, scripts, references, agents, and templates.
Guides creation of Claude Code skills and slash commands: SKILL.md structure, frontmatter fields, invocation controls, commands vs skills, and best practices.