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.
npx claudepluginhub vanman2024/domain-plugin-builder --plugin domain-plugin-builderThis skill is limited to using the following tools:
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.shSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
This 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