🛠️ 開発・MCP コミュニティ
claude-code-templates
Claudeのコード拡張機能で、エージェントやスキル作成時の定型文を自動生成するSkill。
📜 元の英語説明(参考)
Boilerplate templates for Claude Code extensions. Triggers on: create agent, new skill, command template, hook script, extension scaffold.
🇯🇵 日本人クリエイター向け解説
一言でいうと
Claudeのコード拡張機能で、エージェントやスキル作成時の定型文を自動生成するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Claude Code Templates
Starter templates for building Claude Code extensions.
Template Selection
| Building | Template | Key Features |
|---|---|---|
| Expert persona | agent-template.md |
Focus areas, quality checklist, references |
| Tool capability | skill-template.md |
Commands, examples, triggers |
| User workflow | command-template.md |
Execution flow, options |
| Automation | hook-script.sh |
Input parsing, exit codes |
Quick Start
Create an Agent
# Copy template
cp ~/.claude/skills/claude-code-templates/assets/agent-template.md \
~/.claude/agents/my-expert.md
# Edit: name, description, focus areas, references
Create a Skill
# 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
Create a Command
# Copy template
cp ~/.claude/skills/claude-code-templates/assets/command-template.md \
~/.claude/commands/my-command.md
# Edit: name, description, execution flow
Create a Hook Script
# 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
Template Locations
Templates are in ./assets/:
| File | Purpose |
|---|---|
agent-template.md |
Expert agent boilerplate |
skill-template.md |
Skill with YAML frontmatter |
command-template.md |
Slash command scaffold |
hook-script.sh |
Secure hook script template |
Naming Conventions
| Type | Pattern | Example |
|---|---|---|
| Agent | {technology}-expert.md |
react-expert.md |
| Skill | {tool-or-pattern}/SKILL.md |
git-workflow/SKILL.md |
| Command | {action}.md |
review.md |
| Hook | {event}-{action}.sh |
pre-write-validate.sh |
Validation
# Validate YAML frontmatter
head -20 my-extension.md
# Check name matches filename
grep "^name:" my-extension.md
# Run project tests
just test
Official Documentation
- https://code.claude.com/docs/en/skills - Skills reference
- https://code.claude.com/docs/en/sub-agents - Custom subagents
- https://code.claude.com/docs/en/hooks - Hooks reference
- https://agentskills.io/specification - Agent Skills open standard
Assets
./assets/agent-template.md- Expert agent scaffold./assets/skill-template.md- Skill with references pattern./assets/command-template.md- Slash command scaffold./assets/hook-script.sh- Secure bash hook template
See Also: claude-code-debug for troubleshooting extensions