Claude-skill-registry kit-builder
Build ClaudeKit Marketing components - skills, agents, commands, workflows. Use when creating new automation, extending marketing capabilities, or understanding kit structure. Includes templates, examples, and init scripts.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/kit-builder" ~/.claude/skills/majiayu000-claude-skill-registry-kit-builder && rm -rf "$T"
manifest:
skills/data/kit-builder/SKILL.mdsource content
Kit Builder
Build skills, agents, commands, and workflows for ClaudeKit Marketing.
When to Use
- Creating new skill for specialized task
- Adding new agent for marketing automation
- Building command for user workflow
- Designing workflow for process orchestration
- Understanding kit component structure
Component Types
| Type | Location | Purpose |
|---|---|---|
| Skill | | Domain knowledge + tools |
| Agent | | Specialized subagent |
| Command | | User-invocable action |
| Workflow | | Process orchestration |
Quick Start
Create skill: Load
references/skill-guide.md
Create agent: Load references/agent-guide.md
Create command: Load references/command-guide.md
Create workflow: Load references/workflow-guide.md
Init Script
python .claude/skills/kit-builder/scripts/init_component.py <type> <name>
Types:
skill, agent, command, workflow
Decision Tree
What to build? ├── Reusable domain knowledge → Skill │ └── API, tool, workflow patterns ├── Autonomous task handler → Agent │ └── Orchestrates skills + tools ├── User-triggered action → Command │ └── Slash command (/name) └── Process definition → Workflow └── Multi-step orchestration
References
| Guide | File |
|---|---|
| Skill Creation | |
| Agent Creation | |
| Command Creation | |
| Workflow Creation | |
| Best Practices | |
| Marketing Checklist | |
Templates
| Template | Path |
|---|---|
| Skill | |
| Agent | |
| Command | |
| Workflow | |
Integration
Related: skill-creator, claude-code
Agents: planner, researcher, docs-manager