vault/Operations/Claude/skills/documentation/write-skill/SKILL.md
Meta-skill for creating new skills in the proper format with [BRACKET] sections and correct structure.
npx skillsauth add eddowding/cortex write-skillInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Meta-skill for creating new skills with proper structure.
Create well-structured skills that follow the [BRACKET] pattern and are easy for AI to parse and execute.
Skills are executable instructions in markdown. They should be:
skills/
├── thinking/ # brainstorming, decision-making, critique
├── documentation/ # writing docs, planning
├── meetings/ # prep, follow-up
├── research/ # web research, investigation
├── memory/ # memory management
├── system/ # file organization, setup
└── coding/ # git, refactoring, testing
Name: lowercase-hyphen format (e.g., meeting-prep, write-planning-doc)
skill-name/
├── SKILL.md # Required: instructions
├── scripts/ # Optional: automation code
├── references/ # Optional: supporting docs
└── assets/ # Optional: templates
---
name: skill-name
description: "One-line description"
last_updated: YYYY-MM-DD
tools_required: [Tool1, Tool2]
agent_type: main_agent | subagent | either
---
# Skill Title
Brief intro (1-2 sentences).
## See Also
- [[related-skill]] - Brief context
- [[another-skill]]
## [PERSONA]
Specific expert role (not generic like "helpful assistant").
## [GOAL]
One clear sentence describing what this accomplishes.
## [CONTEXT]
Why this skill exists (2-4 sentences).
## [PROCESS]
- Hyphenated, verb-first steps
- Reference specific files/paths
- Mention relevant tools if needed
- Specific enough to execute without ambiguity
## [IMPORTANT]
- Non-negotiable requirements (bullets)
- Common mistakes to avoid
- Tool-specific gotchas
name matches folder)[PERSONA] and [GOAL] present[PROCESS] with verb-first steps[IMPORTANT] for gotchastools
Dispatch to the right problem-solving technique based on how you're stuck.
testing
Interactive brainstorming and advisory mode that helps think through questions, critique approaches, propose alternatives, and reach optimal decisions.
tools
Find one insight that eliminates multiple components - 'if this is true, we don't need X, Y, or Z'
testing
Test at extremes (1000x bigger/smaller) to expose fundamental truths hidden at normal scales.