Loading...
Loading...
Boilerplate templates for Claude Code extensions. Triggers on: create agent, new skill, command template, hook script, extension scaffold.
npx skill4agent add neversight/skills_feed claude-code-templates| Building | Template | Key Features |
|---|---|---|
| Expert persona | | Focus areas, quality checklist, references |
| Tool capability | | Commands, examples, triggers |
| User workflow | | Execution flow, options |
| Automation | | Input parsing, exit codes |
# Copy template
cp ~/.claude/skills/claude-code-templates/assets/agent-template.md \
~/.claude/agents/my-expert.md
# Edit: name, description, focus areas, references# Create skill directory
mkdir -p ~/.claude/skills/my-skill
# Copy template
cp ~/.claude/skills/claude-code-templates/assets/skill-template.md \
~/.claude/skills/my-skill/SKILL.md
# Edit: name, description, commands, examples# Copy template
cp ~/.claude/skills/claude-code-templates/assets/command-template.md \
~/.claude/commands/my-command.md
# Edit: name, description, execution flow# Copy template
cp ~/.claude/skills/claude-code-templates/assets/hook-script.sh \
.claude/hooks/my-hook.sh
# Make executable
chmod +x .claude/hooks/my-hook.sh./assets/| File | Purpose |
|---|---|
| Expert agent boilerplate |
| Skill with YAML frontmatter |
| Slash command scaffold |
| Secure hook script template |
| Type | Pattern | Example |
|---|---|---|
| Agent | | |
| Skill | | |
| Command | | |
| Hook | | |
# Validate YAML frontmatter
head -20 my-extension.md
# Check name matches filename
grep "^name:" my-extension.md
# Run project tests
just test./assets/agent-template.md./assets/skill-template.md./assets/command-template.md./assets/hook-script.shclaude-code-debug