install
source · Clone the upstream repo
git clone https://github.com/claude-world/director-mode-lite
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/claude-world/director-mode-lite "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/skill-check" ~/.claude/skills/claude-world-director-mode-lite-skill-check && rm -rf "$T"
manifest:
skills/skill-check/SKILL.mdsource content
Skill File Validator
Validate skill files for correct format.
Validation Target
- With argument: validate specific file
- Without: validate all
.claude/skills/*/SKILL.md
Required Frontmatter
--- name: skill-name # Required: lowercase, hyphenated description: What it does # Required: shown in / menu version: 0.1.0 # Optional: semantic version user-invocable: true # Optional: default true model: sonnet # Optional: inherit, haiku, sonnet, opus, best, sonnet[1m], opus[1m], opusplan allowed-tools: # Optional: restrict tools (YAML list) - Read - Write - Bash context: fork # Optional: isolated context agent: agent-name # Optional: run as specific agent argument-hint: "<hint>" # Optional: hint for arguments when_to_use: Description of when this skill should be used # Optional: underscore format arguments: # Optional: structured argument definitions - name: arg-name description: What the argument does required: true disable-model-invocation: false # Optional: prevent programmatic invocation hooks: # Optional: lifecycle hooks (same format as settings.json) PreToolUse: - matcher: Write hooks: - type: command command: ./scripts/validate.sh PostToolUse: - matcher: Bash hooks: - type: command command: ./scripts/log.sh Stop: - hooks: - type: command command: ./scripts/verify.sh once: true ---
Valid Tools (for allowed-tools)
Read, Write, Edit, Bash, Grep, Glob, Task, WebFetch, WebSearch, TodoWrite, NotebookEdit
Validation Checklist
Required Fields
-
exists (lowercase, hyphenated)name -
existsdescription
Optional Field Validation
-
are valid tool names (if specified)allowed-tools -
uses YAML list format (if specified)allowed-tools -
references existing agent file (if specified)agent -
is valid semver format (if specified)version -
is valid value: inherit, haiku, sonnet, opus, best, sonnet[1m], opus[1m], opusplan (if specified)model -
is valid value: fork (if specified)context -
is a string (if specified)argument-hint -
is a descriptive string (if specified)when_to_use -
is a valid array with name/description/required entries (if specified)arguments -
is boolean (if specified)disable-model-invocation -
has valid structure (if specified)hooks
Content Structure
- Clear instructions
- Uses
if expecting input$ARGUMENTS - Step-by-step process if complex
Output Format
## Skill Validation Report ### Files Checked | File | Status | Issues | |------|--------|--------| | workflow/SKILL.md | OK | None | | my-skill/SKILL.md | WARN | Missing description | ### Summary - Total: [N] - Valid: [N] - Needs fixes: [N]
Auto-Fix
- Add missing
from directory namename - Add missing
description - Convert bracket array tools to YAML list format
- Remove invalid frontmatter fields
- Add
handling$ARGUMENTS