一键导入
create-skill
Use when creating new Claude Code skills - guides SKILL.md structure, description writing, and file organization
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when creating new Claude Code skills - guides SKILL.md structure, description writing, and file organization
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when creating custom Claude Code subagents - guides YAML frontmatter structure, system prompts, tool restrictions, model selection, and permission configuration
Use when creating or updating pull requests with comprehensive descriptions and meaningful commits - streamlines PR workflow with branch management and commit best practices
| name | create-skill |
| description | Use when creating new Claude Code skills - guides SKILL.md structure, description writing, and file organization |
Skills are directories with a SKILL.md file that extend Claude's capabilities. Claude auto-discovers them based on the description field.
.claude/skills/skill-name/ # Project (shared via git)
~/.claude/skills/skill-name/ # Personal (local only)
---
name: kebab-case-name # Lowercase, hyphens, numbers. Max 64 chars
description: [WHAT] + [WHEN] # Max 1024 chars. THIS IS HOW CLAUDE FINDS IT
allowed-tools: Read, Grep # Optional: restrict to specific tools
---
# Skill Title
## Instructions
Clear, actionable guidance for Claude. Include examples inline if short.
Claude decides when to use a skill based ONLY on the description. Be specific about both WHAT and WHEN.
# ✓ Good - clear trigger conditions
description: Use when creating pull requests - handles branch naming, commit messages, and PR descriptions
# ✓ Good - specific scope
description: Write SEO-optimized markdown articles with proper frontmatter and structure
# ✗ Bad - vague, no trigger
description: Helps with git stuff
# ✗ Bad - what but no when
description: Formats code according to standards
Most skills only need SKILL.md. Add supporting files ONLY when the content is too large or complex for the main file.
my-skill/
├── SKILL.md # Required - main instructions
├── templates.md # Only if templates are extensive
└── scripts/
└── helper.sh # Only if automation is needed
When to add templates.md:
When to add scripts/:
Reference them from SKILL.md when relevant:
Use the PR template from [templates.md](templates.md).
Run `bash scripts/deploy.sh` to publish.
Claude reads supporting files on-demand - don't add them "just in case".
name: kebab-case, ≤64 charsdescription: includes WHAT it does AND WHEN to use it