Our review
Scaffolds a new Claude Code skill with a valid SKILL.md structure and frontmatter.
Strengths
- Validates skill name and structure automatically
- Generates proper YAML frontmatter and directory layout
- Guides user through description and allowed-tools configuration
- Includes validation checklist for completeness
Limitations
- Only works with Claude Code's skill system
- Requires user input for description and tools
- Does not auto-generate advanced skill logic beyond structure
When you need to quickly create a new skill scaffold for Claude Code.
When modifying an existing skill or building a skill with complex multi-file dependencies.
Security analysis
SafeThe skill only creates directories and files using safe tools (Read, Write, Glob). No destructive commands, network calls, or data exfiltration.
No concerns found
Examples
Create a new skill called 'file-organizer' with description 'Organize files in the current directory by type into subfolders'.Scaffold a skill named 'code-summarizer' that uses Read and Grep to summarize code files.Generate a new skill 'database-query' for executing SQL queries against a local SQLite database.description: Create a new skill with proper SKILL.md structure and frontmatter argument-hint: <skill-name> [plugin-path] allowed-tools: Read, Write, Glob
Create New Skill
Create a new Claude Code skill with the name: $1 Target plugin path: $2 (defaults to current directory)
Process
-
Validate skill name
- Must be lowercase
- Only alphanumeric and hyphens
- Max 64 characters
-
Create directory structure
skills/ └── $1/ └── SKILL.md -
Generate SKILL.md with template
---
name: $1
description: [Ask user for description - must be specific with trigger phrases, max 1024 chars]
allowed-tools: Read, Grep, Glob
---
# [Skill Title]
## Overview
[Brief explanation of what this skill provides]
## Instructions
[Step-by-step instructions for Claude when this skill is active]
## Examples
[Concrete examples of using this skill]
-
Ask user for:
- Description (with guidance on making it specific)
- Which tools should be allowed (or all)
- Main purpose/instructions
-
Create optional reference.md if needed
Validation
After creation, verify:
- [ ] Directory
skills/$1/exists - [ ]
SKILL.mdhas valid YAML frontmatter - [ ] Description includes trigger phrases
- [ ] Description under 1024 characters
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.