Agent skill · AI & Agents

skill-creator

Guides you through creating well-structured Claude Code skills with proper modularization, templates, and best practices. Use when creating new skills or improving existing ones.

rshankrasgithub.com/rshankrasGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add rshankras/claude-code-apple-skills --skill skill-creator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 9 KB
Bundled scripts: none
Allowed tools: ReadWriteGlobGrepBash
Path: skills/shared/skill-creator/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 589
Language: Swift

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Skill Creator Helps you create well-structured, modularized Claude Code skills with best practices. ## When This Skill Activates Use this skill when the user: - Wants to create a new skill - Asks about skill structure or organization - Wants to improve or refactor existing skills - Needs help with skill modularization - Asks about skill best practices ## Skill Creation Process ### 1. Understand Requirements Ask the user: - **Purpose**: What should this skill do? - **Activation**: When should it activate? - **Tools**: What tools will it need? (Read, Write, Edit, Glob, Grep, Bash, WebFetch, etc.) - **Scope**: Is it project-specific or general-purpose? - **Complexity**: Will it need reference files or can it be self-contained? ### 2. Plan the Skill Structure Based on complexity: **Simple Skills** (Self-contained): ``` .claude/skills/skill-name/ └── SKILL.md ``` **Complex Skills** (Modularized): ``` .claude/skills/skill-name/ ├── SKILL.md # Main skill definition ├── reference-1.md # Supporting reference ├── reference-2.md # Additional reference └── examples.md # Code examples/templates ``` ### 3. Create the Main SKILL.md The main SKILL.md should include: #### Front Matter (Required)

What's inside
Steps it walks through
  1. When This Skill Activates
  2. Skill Creation Process
  3. 1. Understand Requirements
  4. 2. Plan the Skill Structure
  5. 3. Create the Main SKILL.md
  6. 4. Create Supporting Reference Files
  7. 5. Link References in Main SKILL.md
  8. Skill Writing Best Practices
  9. Clear Activation Triggers
  10. Actionable Instructions
  11. Examples and Templates
  12. Structured Output Formats
  13. Tool Selection
  14. Checklists
Ships with 2 files
  • complex-skill-template.md
  • skill-template.md
More from claude-code-apple-skills
All skills →
About this skill
What does the skill-creator skill do?

Guides you through creating well-structured Claude Code skills with proper modularization, templates, and best practices. Use when creating new skills or improving existing ones.

How do I install it?

Run `npx skills add rshankras/claude-code-apple-skills --skill skill-creator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From rshankras/claude-code-apple-skills, a repository with 589 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going