← スキル一覧に戻る

skill-creator
by aster-void
Everything has been nixified.
⭐ 1🍴 0📅 2026年1月25日
SKILL.md
name: skill-creator description: Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Skill Creator
Core Principles
- Concise is key: Context window is shared. Only add what Claude doesn't already know.
- Keep skills short: SKILL.md under 100 lines preferred, 500 lines max. Split to references/ if longer.
- Degrees of freedom: Match specificity to task fragility. Scripts for fragile operations, text for flexible ones.
Skill Structure
skill-name/
├── SKILL.md (required)
│ ├── YAML frontmatter: name, description (required)
│ └── Markdown body (required)
└── Bundled Resources (optional)
├── scripts/ - Executable code for deterministic/repeated tasks
├── references/ - Documentation loaded as needed
└── assets/ - Files used in output (templates, images)
SKILL.md
- Frontmatter:
nameanddescriptiononly. Description is the trigger mechanism—include when to use. - Body: Instructions for using the skill and its bundled resources.
Resources
- scripts/: Reusable code. Test before including.
- references/: Domain knowledge, schemas, detailed guides. Load only when needed.
- assets/: Templates, images for output. Not loaded into context.
Do NOT include: README.md, CHANGELOG.md, or auxiliary documentation.
Creation Process
- Understand - Gather concrete usage examples from user
- Plan - Identify reusable scripts, references, assets
- Initialize - Run
scripts/init_skill.py <name> --path <dir> - Edit - Implement resources, write SKILL.md
- Iterate - Improve based on real usage
Design Patterns
See references/ for detailed patterns:
- references/workflows.md - Multi-step processes, conditional logic
- references/output-patterns.md - Templates, quality standards
init_skill.py
scripts/init_skill.py <skill-name> --path <output-directory>
Creates skill directory with SKILL.md template and example resources.
Note: In this repo, create skills in modules/home/profile-dev/programs/claude-code/skills/.
スコア
総合スコア
40/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です