← ClaudeAtlas

skill-writerlisted

Guide users through creating Agent Skills for Claude Code. Use when the user wants to create, write, author, or design a new Skill, or needs help with SKILL.md files, frontmatter, or skill structure.
aiskillstore/marketplace · ★ 329 · AI & Automation · score 79
Install: claude install-skill aiskillstore/marketplace
# Skill Writer This Skill helps you create well-structured Agent Skills for Claude Code that follow best practices and validation requirements. ## When to use this Skill Use this Skill when: - Creating a new Agent Skill - Writing or updating SKILL.md files - Designing skill structure and frontmatter - Troubleshooting skill discovery issues - Converting existing prompts or workflows into Skills ## Instructions ### Step 1: Determine Skill scope First, understand what the Skill should do: 1. **Ask clarifying questions**: - What specific capability should this Skill provide? - When should Claude use this Skill? - What tools or resources does it need? - Is this for personal use or team sharing? 2. **Keep it focused**: One Skill = one capability - Good: "PDF form filling", "Excel data analysis" - Too broad: "Document processing", "Data tools" ### Step 2: Choose Skill location Determine where to create the Skill: **Personal Skills** (`~/.claude/skills/`): - Individual workflows and preferences - Experimental Skills - Personal productivity tools **Project Skills** (`.claude/skills/`): - Team workflows and conventions - Project-specific expertise - Shared utilities (committed to git) ### Step 3: Create Skill structure Create the directory and files: ```bash # Personal mkdir -p ~/.claude/skills/skill-name # Project mkdir -p .claude/skills/skill-name ``` For multi-file Skills: ``` skill-name/ ├── SKILL.md (required) ├── reference.md (optional) ├── exam