← Back to list

writing-skills
by jasonkuhrt
Tool configurations
⭐ 1🍴 0📅 Jan 22, 2026
SKILL.md
name: writing-skills description: Use when creating, improving, or reviewing Claude Code skills. Covers frontmatter, tool use patterns, file structure, hooks, and CC platform limitations. Also invoke superpowers:writing-skills for CSO and testing workflow.
Writing Skills
Facts
- The frontmatter
nameis what appears in autocomplete list when typing/in session. Soname: foowould allow user to submit/footo trigger that skill. - The skill directory name appears printed in session when skill is activated by the agent. E.g. dir
/foobarwould yield e.g.⏺ Skill(foobar) ⎿ Initializing… Skill(foobar)is also the syntax for granting permission to the skill in config- Development Related
- Skills created or modified in ~/.claude/skills or .claude/skills are immediately available without restarting the session (added in v2.1.0)
Overview
This skill covers Claude Code platform specifics. For skill design methodology (CSO, TDD, testing), also invoke superpowers:writing-skills.
Key Rules (from Anthropic guide)
Frontmatter:
name: Max 64 chars, lowercase letters/numbers/hyphens only, no reserved words ("anthropic", "claude")description: Max 1024 chars, non-empty, third person, critical for discovery- Good: "Processes Excel files and generates reports"
- Avoid: "I can help you process Excel files"
- Use gerund form (verb + -ing) for names:
processing-pdfs,analyzing-spreadsheets
Body:
- Keep SKILL.md under 500 lines
- "Claude is already very smart. Only add context Claude doesn't already have."
- Paths are relative to skill directory — use
scripts/foonot.claude/skills/my-skill/scripts/foo
File Structure
my-skill/
├── SKILL.md # Main (<500 lines)
├── reference/ # Detailed docs (loaded on demand)
├── scripts/ # Executable (zero-token)
└── assets/ # Static files (banners, templates)
Naming: Directory name = skill name (kebab-case). Opening # Title = titleized skill name.
Skill Body Headings
| Heading | Purpose |
|---|---|
## CRITICAL | Safety rules at top |
## Use Cases | Refine when skill applies |
## Requirements | Deps, env vars, how to handle absence |
## Steps | Sequential workflow |
## Operations | Menu of actions |
## Examples | User prompt → Claude action |
## Reference | Internal docs |
## Notes | Gotchas, tips |
## Appendix | Implementation details |
Tools for Skills
| Tool | Purpose | Reference |
|---|---|---|
| AskUserQuestion | Interactive prompts (max 4 options) | tool-ask-user-question.md |
| TodoWrite | Task checkboxes | tool-todo-write.md |
| Bash | Execute bundled scripts (zero-token) | pattern-script-bundling.md |
| Read | Load reference files on demand | pattern-progressive-disclosure.md |
Frontmatter Options
| Field | Purpose | Reference |
|---|---|---|
name, description | Identity and discovery | config-frontmatter.md |
allowed-tools | Skip permission prompts | config-allowed-tools.md |
context: fork | Run in isolated subagent | config-context-fork.md |
hooks | PreToolUse/PostToolUse/Stop | config-hooks.md |
user-invocable | Show in slash menu | config-frontmatter.md |
disable-model-invocation | User-triggered only | config-frontmatter.md |
Platform Limitations
Cannot control:
- Collapsed/expanded state of tool output - see limitation-output-collapse.md
- Terminal theme/colors
- Streaming behavior
- Custom UI widgets
- Status line refresh from skills - see feature-status-line.md
Patterns
| Pattern | Reference |
|---|---|
| Code examples | pattern-code-examples.md |
| Progressive disclosure | pattern-progressive-disclosure.md |
| Script bundling | pattern-script-bundling.md |
When Reviewing Skills
Apply criteria from both this skill (CC platform) and superpowers:writing-skills (methodology).
Platform checklist:
- Frontmatter valid? (name format, description length, third person)
- SKILL.md under 500 lines?
- Reference files used for detailed content?
- Code examples have language tags?
- Known limitations acknowledged? (output collapse, status line)
- Hooks correctly structured if used?
-
allowed-toolssyntax correct if used?
Methodology checklist (from superpowers:writing-skills):
- CSO applied? (Claude-Specific Optimization)
- Token-efficient structure?
- Clear trigger conditions in description?
Score
Total Score
55/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon



