Skill Validator
Validate SKILL.md files against the Agent Skills specification and Claude Code extensions.
When to Run
- After creating a new skill
- After modifying a skill's SKILL.md frontmatter
- Before committing skill changes
- During periodic repo audits
Validation Rules
Required Fields (Agent Skills Spec)
Every SKILL.md must have YAML frontmatter with:
name — kebab-case, matches directory name
description — 1-3 sentences, under 1024 chars, starts with verb or domain noun
Metadata Block
version and tags must be inside metadata:, never top-level:
# CORRECT
metadata:
version: "1.0.0"
tags: "react, performance, optimization"
# WRONG — top-level version
version: 1.0.0
# WRONG — tags as YAML list
metadata:
tags:
- react
- performance
Forbidden Fields
These are not part of any spec:
auto_activate / auto_trigger — removed in 2026-04 migration
risk — not in Agent Skills or Claude Code specs
Claude Code Extensions (Optional)
Valid extension fields (must match allowed_fields in scripts/validate-skill-sync.sh):
| Field |
Purpose |
when_to_use |
Extra trigger phrases appended to description |
disable-model-invocation |
Prevent auto-triggering (for destructive skills) |
user-invocable |
false hides from the / menu |
allowed-tools |
Auto-approve allowlist (not a sandbox — unlisted tools stay callable) |
disallowed-tools |
Removes tools from the pool while active (the actual block mechanism) |
argument-hint |
Autocomplete hint for expected arguments |
compatibility |
Environment prerequisites (packages, network, target agent) |
context |
fork for subagent isolation |
agent |
Subagent type when context: fork |
hooks |
Lifecycle hooks scoped to the skill |
paths |
⚠️ Broken upstream (#49835) — flag if present |
shell |
bash (default) or powershell |
Forbidden Fields (updated)
auto_activate / auto_trigger — removed in 2026-04 migration
risk — not in any spec
metadata.triggers — duplicate activation metadata; put trigger phrases in
description or when_to_use
model / effort — recognized by Claude Code but owned by app/session
configuration, not public reusable skills
- Any top-level field not in the tables above → "Unsupported top-level frontmatter field"
Content Rules
- No hardcoded
/workspace/ paths
- No tool names in instructions (say "search for" not "use Grep")
- Imperative/infinitive style ("Configure X" not "You should configure X")
- Code blocks use real backtick fences, not escaped
\```
- No concrete model names in body,
references/, or scripts/ — reject tier+version IDs (claude-3-7-sonnet-20250219, claude-opus-4.5, gpt-5.5), dated snapshots, and bare family names used as routing keys. Exception: orchestrator skills may name capability tiers in prose. See skill-standards.md → Model references.
- No harness-owned execution parameters in skills, commands, or routine templates.
Apply execution-boundary.md.
- Routine templates follow
routine-standards.md. Run
python3 scripts/audit-routines.py to detect duplicate bodies and app-parameter
leakage without printing prompt or configuration values.
- Provenance (derived skills only): when
metadata.source is set, metadata.last_synced and a README ## Upstream section are required (enforced by check_provenance()). In-house skills need no provenance fields.
Validation Process
- Read the SKILL.md frontmatter
- Check
name matches parent directory name
- Check
description exists and is under 1024 chars
- Check
description plus when_to_use is under 1536 chars
- Check
plugin.json description is present and under 100 chars
- Check
version/tags are NOT top-level (must be inside metadata:)
- Check for forbidden fields (
auto_activate, auto_trigger, risk, model, effort, any field not in the extension tables)
- Check for escaped backtick fences in content
- Validate frontmatter value types:
allowed-tools is a scalar,
metadata.version and metadata.tags are quoted scalars, and metadata is a map
- Reject duplicate
metadata.triggers; keep activation guidance in description
or when_to_use
- Check for hardcoded paths (
/workspace/, project-specific paths)
- Grep body +
references/ + scripts/ for concrete model names (claude-*, gpt-*, sonnet/opus/haiku used as IDs); allow only capability-tier prose in orchestrator skills
- Warn when skills, commands, or templates set harness-owned execution parameters
- Warn when a side-effecting skill lacks both
disable-model-invocation: true
and an explicit Confirmation Required gate
- Check prose routing references across the body, excluding frontmatter and code
fences, and flag missing local skills
- Check provenance for derived skills: if
metadata.source is set, require metadata.last_synced and a README ## Upstream section
- Run
bunx markdownlint-cli on the file
- Run
./scripts/validate-skill-sync.sh for cross-validation
Quick Validation Command
# Single skill
bunx markdownlint-cli skills/<name>/SKILL.md skills/<name>/references/*.md
# All skills
bunx markdownlint-cli --ignore bundles --ignore dist "**/*.md"
# Sync validation
./scripts/validate-skill-sync.sh
1---2name: skill-validator3description: Validate SKILL.md files against the Agent Skills spec and Claude Code extensions. Run on new or modified skills before committing.4---5
6# Skill Validator
7
8Validate SKILL.md files against the Agent Skills specification and Claude Code extensions.
9
10## When to Run
11
12- After creating a new skill
13- After modifying a skill's SKILL.md frontmatter
14- Before committing skill changes
15- During periodic repo audits
16
17## Validation Rules
18
19### Required Fields (Agent Skills Spec)
20
21Every SKILL.md must have YAML frontmatter with:
22
23- `name` — kebab-case, matches directory name
24- `description` — 1-3 sentences, under 1024 chars, starts with verb or domain noun
25
26### Metadata Block
27
28`version` and `tags` must be inside `metadata:`, never top-level:
29
30```yaml
31# CORRECT
32metadata:
33 version: "1.0.0"
34 tags: "react, performance, optimization"
35
36# WRONG — top-level version
37version: 1.0.0
38
39# WRONG — tags as YAML list
40metadata:
41 tags:
42 - react
43 - performance
44```
45
46### Forbidden Fields
47
48These are not part of any spec:
49
50- `auto_activate` / `auto_trigger` — removed in 2026-04 migration
51- `risk` — not in Agent Skills or Claude Code specs
52
53### Claude Code Extensions (Optional)
54
55Valid extension fields (must match `allowed_fields` in `scripts/validate-skill-sync.sh`):
56
57| Field | Purpose |
58|-------|---------|
59| `when_to_use` | Extra trigger phrases appended to `description` |
60| `disable-model-invocation` | Prevent auto-triggering (for destructive skills) |
61| `user-invocable` | `false` hides from the `/` menu |
62| `allowed-tools` | Auto-approve **allowlist** (not a sandbox — unlisted tools stay callable) |
63| `disallowed-tools` | Removes tools from the pool while active (the actual block mechanism) |
64| `argument-hint` | Autocomplete hint for expected arguments |
65| `compatibility` | Environment prerequisites (packages, network, target agent) |
66| `context` | `fork` for subagent isolation |
67| `agent` | Subagent type when `context: fork` |
68| `hooks` | Lifecycle hooks scoped to the skill |
69| `paths` | ⚠️ Broken upstream (#49835) — flag if present |
70| `shell` | `bash` (default) or `powershell` |
71
72### Forbidden Fields (updated)
73
74- `auto_activate` / `auto_trigger` — removed in 2026-04 migration
75- `risk` — not in any spec
76- `metadata.triggers` — duplicate activation metadata; put trigger phrases in
77 `description` or `when_to_use`
78- `model` / `effort` — recognized by Claude Code but owned by app/session
79 configuration, not public reusable skills
80- Any top-level field not in the tables above → "Unsupported top-level frontmatter field"
81
82### Content Rules
83
84- No hardcoded `/workspace/` paths
85- No tool names in instructions (say "search for" not "use Grep")
86- Imperative/infinitive style ("Configure X" not "You should configure X")
87- Code blocks use real backtick fences, not escaped `\`\`\``
88- **No concrete model names** in body, `references/`, or `scripts/` — reject tier+version IDs (`claude-3-7-sonnet-20250219`, `claude-opus-4.5`, `gpt-5.5`), dated snapshots, and bare family names used as routing keys. Exception: orchestrator skills may name **capability tiers** in prose. See [skill-standards.md → Model references](../memory/system/skill-standards.md).
89- **No harness-owned execution parameters** in skills, commands, or routine templates.
90 Apply [execution-boundary.md](../memory/system/execution-boundary.md).
91- **Routine templates** follow
92 [routine-standards.md](../memory/system/routine-standards.md). Run
93 `python3 scripts/audit-routines.py` to detect duplicate bodies and app-parameter
94 leakage without printing prompt or configuration values.
95- **Provenance (derived skills only):** when `metadata.source` is set, `metadata.last_synced` and a README `## Upstream` section are required (enforced by `check_provenance()`). In-house skills need no provenance fields.
96
97## Validation Process
98
991. Read the SKILL.md frontmatter
1002. Check `name` matches parent directory name
1013. Check `description` exists and is under 1024 chars
1024. Check `description` plus `when_to_use` is under 1536 chars
1035. Check `plugin.json` description is present and under 100 chars
1046. Check `version`/`tags` are NOT top-level (must be inside `metadata:`)
1057. Check for forbidden fields (`auto_activate`, `auto_trigger`, `risk`, `model`, `effort`, any field not in the extension tables)
1068. Check for escaped backtick fences in content
1079. Validate frontmatter value types: `allowed-tools` is a scalar,
108 `metadata.version` and `metadata.tags` are quoted scalars, and `metadata` is a map
10910. Reject duplicate `metadata.triggers`; keep activation guidance in `description`
110 or `when_to_use`
11111. Check for hardcoded paths (`/workspace/`, project-specific paths)
11212. Grep body + `references/` + `scripts/` for concrete model names (`claude-*`, `gpt-*`, `sonnet`/`opus`/`haiku` used as IDs); allow only capability-tier prose in orchestrator skills
11313. Warn when skills, commands, or templates set harness-owned execution parameters
11414. Warn when a side-effecting skill lacks both `disable-model-invocation: true`
115 and an explicit `Confirmation Required` gate
11615. Check prose routing references across the body, excluding frontmatter and code
117 fences, and flag missing local skills
11816. Check provenance for derived skills: if `metadata.source` is set, require `metadata.last_synced` and a README `## Upstream` section
11917. Run `bunx markdownlint-cli` on the file
12018. Run `./scripts/validate-skill-sync.sh` for cross-validation
121
122## Quick Validation Command
123
124```bash
125# Single skill
126bunx markdownlint-cli skills/<name>/SKILL.md skills/<name>/references/*.md
127
128# All skills
129bunx markdownlint-cli --ignore bundles --ignore dist "**/*.md"
130
131# Sync validation
132./scripts/validate-skill-sync.sh
133```