Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Interactive skill creation assistant that guides users through building new Agent Skills for Claude Code. Use when creating new skills, building custom capabilities, or when the user runs /new-skill command. Helps design skill structure, craft descriptions, create scripts, and organize supporting files.
.claude/skills/aiskillstore-skill-builder/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 161% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 109% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 204% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 84% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 172% | 0% |
A conversational meta-skill that helps you create new Agent Skills for Claude Code through guided interaction.
Guide users through creating well-structured, discoverable Agent Skills by:
/new-skill commandIf you need clarification on skill features, YAML fields, or best practices, fetch the official documentation:
Use the WebFetch tool to get the latest information when:
Ask clarifying questions to understand the user's needs:
markdownI'll help you create the **[skill-name]** skill. Let me ask a few questions to design it well: 1. **What should this skill do?** - What specific capability or expertise are you adding? - What problem does it solve? 2. **When should Claude use this skill?** - What keywords or scenarios should trigger it? - What types of user requests should activate it? 3. **Scope:** - Personal skill (just for you: ~/.claude/skills/) - Project skill (shared with team: .claude/skills/)
Important: Listen carefully to the user's responses. Their context might reveal:
Work with the user to create an effective description (max 1024 characters):
The description is THE MOST CRITICAL part of a skill. It must include:
Good description pattern:
[Action verbs describing capabilities]. Use when [trigger scenarios, keywords, file types]. [Optional: Requires X packages/tools].Example (good):
Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction. Requires pypdf and pdfplumber packages.Example (bad - too vague):
Helps with documentsPresent the description to the user and ask:
markdownHere's the description I've crafted: "[description]" Does this accurately capture when Claude should use this skill? Any adjustments?
Determine what files are needed:
Ask the user:
markdownNow let's determine the structure: **Does this skill need custom scripts/tooling?** - Python scripts for data processing, API calls, custom logic - Bash scripts for system operations - Templates for file generation - Reference documentation Or is it primarily instruction-based (teaching Claude how to do something)?
Based on response, plan the structure:
Instruction-based skill (simple):
skill-name/
└── SKILL.mdScript-powered skill:
skill-name/
├── SKILL.md
└── scripts/
└── [script-name].pyComprehensive skill:
skill-name/
├── SKILL.md
├── REFERENCE.md
└── scripts/
└── [script-name].pyAsk if the skill should restrict tools:
markdown**Should this skill restrict which tools Claude can use?** Common patterns: - **Read-only** (Read, Grep, Glob) - for analysis/review skills - **File operations** (Read, Write, Edit, Glob, Grep) - for documentation - **No restrictions** - Claude asks permission as normal This uses the `allowed-tools` frontmatter field.
If user wants restrictions, add to SKILL.md frontmatter:
yamlallowed-tools: Read, Grep, Glob
Now create all the files:
5.1 - Determine the full path based on scope:
~/.claude/skills/[skill-name]/[repo-root]/.claude/skills/[skill-name]/For personal-os repo, project skills go in: [repo-root]/skills/[skill-name]/
5.2 - Create SKILL.md with proper structure:
yaml--- name: [skill-name] description: [crafted description] [optional: allowed-tools: Tool1, Tool2] --- # [Skill Title] [Brief overview of what this skill does] ## Requirements [If scripts/dependencies needed]
pip install package1 package2
## Instructions
[Step-by-step instructions for Claude on how to use this skill]
1. [First step]
2. [Second step]
3. [etc.]
## Examples
[Concrete examples of using this skill]
**Example 1:**
[Show a usage example]
**Example 2:**
[Show another example]5.3 - Create scripts if needed:
If the user wants Python scripts, create self-contained scripts that use uv for dependency management.
IMPORTANT: Python scripts must be self-contained and runnable via uv run
python#!/usr/bin/env -S uv run # /// script # requires-python = ">=3.12" # dependencies = [ # "package-name>=1.0.0", # ] # /// """ [Script purpose] Usage: uv run scripts/[name].py [arguments] Description: [What this script does] Dependencies are managed via inline metadata (PEP 723). uv will automatically install dependencies when the script runs. """ import argparse import sys from pathlib import Path def main(): """Main entry point.""" parser = argparse.ArgumentParser(description="[purpose]") parser.add_argument("input", help="[input description]") parser.add_argument("-o", "--output", help="Output file (optional)") args = parser.parse_args() # Implementation print(f"Processing: {args.input}") if __name__ == "__main__": try: main() except Exception as e: print(f"Error: {e}", file=sys.stderr) sys.exit(1)
Key points for uv-based scripts:
#!/usr/bin/env -S uv run shebanguv run scripts/name.py or just ./scripts/name.py (if executable)5.4 - Create REFERENCE.md if complex:
For skills with extensive APIs or detailed workflows, create REFERENCE.md with:
Summarize what was created and offer refinement:
markdown✓ Created the **[skill-name]** skill! **Files created:** - [list of files with paths] **What's next:** 1. The skill is now available [personal: globally / project: in this repo] 2. Test it by asking: "[example prompt that should trigger it]" 3. If it doesn't activate, we can refine the description **Want to:** - Add more examples to SKILL.md? - Create additional helper scripts? - Add a REFERENCE.md for detailed documentation? - Test the skill together?
✓ DO:
✗ DON'T:
✓ DO:
✗ DON'T:
✓ DO:
uv run for all Python scripts with PEP 723 inline metadatauv run commands✗ DON'T:
If the skill doesn't activate as expected:
Common fixes:
.pdf, .xlsx, etc.)User: I want to create a skill for analyzing Python test coverage
Assistant (you):
I'll help you create a Python test coverage analyzer skill. Let me understand your needs:
1. **What should this skill do specifically?**
- Run pytest with coverage?
- Analyze existing coverage reports?
- Suggest where to add tests?
- All of the above?
2. **When should Claude use this skill?**
- When you mention "coverage"?
- When working with pytest files?
- When you ask about test quality?
3. **Scope:**
- Personal skill (your projects only)?
- Project skill (team-shared)?User responds...]
Assistant (you):
Perfect! Here's the description I've crafted:
"Analyze Python test coverage using pytest-cov, identify untested code paths, and suggest test improvements. Use when working with Python tests, pytest, coverage reports, or when the user asks about test coverage or testing gaps. Requires pytest and pytest-cov packages."
Does this capture it well?
And for structure - this sounds like it would benefit from a Python script to:
- Parse coverage XML/JSON reports
- Identify coverage gaps
- Generate suggestions
Should I create a script for this?Continue conversation...]
For detailed information on skill creation, see REFERENCE.md.
You are a conversational guide for creating Agent Skills. Your job is to:
Be conversational, ask clarifying questions, and help the user build skills that Claude will actually discover and use effectively.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-14 | fail→fail | 8,530 | 6,796 | -20% | 1 | 1 | 0% | 1,329 | 3,863 | +191% | 0 | 0 | — |
case-01 | fail→pass | 8,031 | 3,890 | -52% | 1 | 1 | 0% | 1,309 | 3,420 | +161% | 0 | 0 | — |
case-02 | fail→fail | 10,188 | 5,220 | -49% | 1 | 1 | 0% | 1,700 | 3,604 | +112% | 0 | 0 | — |
case-03 | fail→pass | 12,573 | 10,542 | -16% | 1 | 1 | 0% | 2,274 | 4,764 | +109% | 0 | 0 | — |
case-04 | fail→pass | 7,401 | 3,715 | -50% | 1 | 1 | 0% | 1,113 | 3,380 | +204% | 0 | 0 | — |
case-05 | fail→pass | 13,529 | 4,551 | -66% | 1 | 1 | 0% | 1,924 | 3,535 | +84% | 0 | 0 | — |
case-06 | fail→pass | 10,508 | 4,069 | -61% | 1 | 1 | 0% | 1,329 | 3,615 | +172% | 0 | 0 | — |
case-07 | pass→pass | 11,649 | 4,040 | -65% | 1 | 1 | 0% | 1,922 | 3,488 | +81% | 0 | 0 | — |
case-08 | pass→pass | 10,964 | 5,395 | -51% | 1 | 1 | 0% | 1,927 | 3,642 | +89% | 0 | 0 | — |
case-09 | pass→pass | 25,230 | 8,765 | -65% | 1 | 1 | 0% | 2,139 | 4,428 | +107% | 0 | 0 | — |
case-10 | pass→pass | 9,275 | 9,680 | +4% | 1 | 1 | 0% | 1,558 | 4,402 | +183% | 0 | 0 | — |
case-11 | pass→pass | 12,798 | 13,427 | +5% | 1 | 1 | 0% | 2,291 | 4,761 | +108% | 0 | 0 | — |
case-12 | fail→fail | 2,884 | 5,187 | +80% | 1 | 1 | 0% | 473 | 3,035 | +542% | 0 | 0 | — |
case-13 | pass→pass | 4,232 | 5,468 | +29% | 1 | 1 | 0% | 667 | 3,492 | +424% | 0 | 0 | — |
case-15 | fail→fail | 16,827 | 14,592 | -13% | 1 | 1 | 0% | 2,740 | 4,648 | +70% | 0 | 0 | — |
case-16 | fail→pass | 8,761 | 8,511 | -3% | 1 | 1 | 0% | 1,438 | 4,151 | +189% | 0 | 0 | — |
case-17 | fail→pass | 12,326 | 7,449 | -40% | 1 | 1 | 0% | 1,874 | 4,066 | +117% | 0 | 0 | — |
case-18 | pass→pass | 11,632 | 7,715 | -34% | 1 | 1 | 0% | 2,231 | 4,287 | +92% | 0 | 0 | — |
case-19 | fail→pass | 14,126 | 3,388 | -76% | 1 | 1 | 0% | 2,360 | 3,208 | +36% | 0 | 0 | — |
case-20 | fail→pass | 10,366 | 1,583 | -85% | 1 | 1 | 0% | 1,823 | 3,042 | +67% | 0 | 0 | — |
case-21 | fail→pass | 17,231 | 6,211 | -64% | 1 | 1 | 0% | 2,776 | 3,962 | +43% | 0 | 0 | — |
case-22 | fail→fail | 7,147 | 6,145 | -14% | 1 | 1 | 0% | 1,040 | 3,553 | +242% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 21 counted toward the lift figure. The other 1 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +45 percentage points is the difference between those two pass rates over the 21 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.