一键导入
claude-code-templates
Boilerplate templates for Claude Code extensions. Triggers on: create agent, new skill, command template, hook script, extension scaffold.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Boilerplate templates for Claude Code extensions. Triggers on: create agent, new skill, command template, hook script, extension scaffold.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Review product and feature risk before an AI coding agent starts implementation.
Use Xquik for X data and confirmation-gated X actions: tweet search, user lookup, follower export, media download, monitors, webhooks, MCP, and SDK workflows.
Use Xquik from Hermes Agent for X search, posting, replies, likes, retweets, follows, DMs, monitors, extraction jobs, draws, media, and trends.
Discover and extract sitemaps from any website using SitemapKit. Use this skill whenever the user wants to find pages on a website, get a list of URLs from a domain, audit a site's structure, crawl a sitemap, check what pages exist on a site, or do anything involving sitemaps or site URL discovery — even if they don't explicitly say "sitemap". Requires the sitemapkit MCP server configured with a valid SITEMAPKIT_API_KEY.
GitHubのプルリクエスト(PR)を作成する際に使用します。変更のコミット、プッシュ、PR作成を含む完全なワークフローを日本語で実行します。「PRを作って」「プルリクエストを作成」「pull requestを作成」などのリクエストで自動的に起動します。
Canton Network open-source ecosystem guide covering DAML SDK, Canton runtime, and Splice applications. Use when working with Canton Network, DAML smart contracts, or building decentralized applications.
| name | claude-code-templates |
| description | Boilerplate templates for Claude Code extensions. Triggers on: create agent, new skill, command template, hook script, extension scaffold. |
| compatibility | Claude Code CLI |
| allowed-tools | Read Write |
| depends-on | [] |
| related-skills | ["claude-code-hooks","claude-code-debug"] |
Starter templates for building Claude Code extensions.
| 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 |
# 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
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 |
| 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 |
# 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 - 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 templateSee Also: claude-code-debug for troubleshooting extensions