— No reviews yet
0 installs
20 views
0.0% view→install
Install
$ agentstack add skill-claude-world-director-mode-lite-skill-check ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Are you the author of Skill Check? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
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: "" # 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
- [ ]
nameexists (lowercase, hyphenated) - [ ]
descriptionexists
Optional Field Validation
- [ ]
allowed-toolsare valid tool names (if specified) - [ ]
allowed-toolsuses YAML list format (if specified) - [ ]
agentreferences existing agent file (if specified) - [ ]
versionis valid semver format (if specified) - [ ]
modelis valid value: inherit, haiku, sonnet, opus, best, sonnet[1m], opus[1m], opusplan (if specified) - [ ]
contextis valid value: fork (if specified) - [ ]
argument-hintis a string (if specified) - [ ]
when_to_useis a descriptive string (if specified) - [ ]
argumentsis a valid array with name/description/required entries (if specified) - [ ]
disable-model-invocationis boolean (if specified) - [ ]
hookshas valid structure (if specified)
Content Structure
- [ ] Clear instructions
- [ ] Uses
$ARGUMENTSif expecting input - [ ] 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
namefrom directory name - Add missing
description - Convert bracket array tools to YAML list format
- Remove invalid frontmatter fields
- Add
$ARGUMENTShandling
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: claude-world
- Source: claude-world/director-mode-lite
- License: MIT
- Homepage: https://claude-world.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.