Loading...
Loading...
Tools for creating, auditing, and maintaining Claude Code skills. Includes /create-skill for scaffolding, /review-skill for quality checks, and /audit commands for bulk verification. Use when: building new skills, maintaining skill quality, or forking claude-skills repo.
npx skill4agent add jezweb/claude-skills skill-development/create-skill <name>templates/skill-skeleton/skills/<name>//create-skill my-new-skill/review-skill <name>/review-skill cloudflare-worker-base/audit [name]/audit/audit cloudflare-*/audit-skill-deep <name>/audit-skill-deep tailwind-v4-shadcn/deep-audit <name>archive/audit-cache//deep-audit openai-api/scrape-api <docs-url> [skill-name]/scrape-api https://api.example.com/docs my-api/scrape-api https://rocketdotnet.readme.io/| Template | Purpose |
|---|---|
| Complete skill directory to copy |
| SKILL.md with TODOs to fill |
| README.md with keywords section |
| YAML frontmatter reference |
| Research output format |
| Audit checklist |
# Option 1: Use /create-skill (recommended)
/create-skill my-new-skill
# Option 2: Manual copy
cp -r skills/skill-development/templates/skill-skeleton/ skills/my-new-skill/
# Then fill in the TODOsnamedescriptionONE_PAGE_CHECKLIST.md| Agent | Purpose |
|---|---|
| Scaffold new skills with proper structure |
| Generate skills from API documentation URLs |
| Verify package versions are current |
| Compare skill content vs official docs |
| Validate code examples are syntactically correct |
| Verify documented API methods exist |
| Check documentation quality |
| Apply changes across multiple skills |
.claude/agents/agents/1. /create-skill my-skill
2. Fill in TODOs in SKILL.md
3. Add templates, references, scripts as needed
4. /review-skill my-skill
5. Fix any issues
6. Test: /plugin install ./skills/my-skill
7. Commit and push1. /audit # Quick check all skills
2. /audit-skill-deep my-skill # Deep check specific skill
3. Review findings
4. Fix issues or document as known limitations
5. Update metadata.last_verified date1. Run: ./scripts/check-all-versions.sh
2. Review VERSIONS_REPORT.md
3. /audit for all skills needing updates
4. Update package versions
5. Test affected skills
6. Commit: "chore: quarterly version updates"/plugin install ./skills/skill-development.claude/agents/git fetch upstream && git merge upstream/main