Create new Claude Code skills with proper structure, documentation, and
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill skill-creator --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Skill Creator?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-skill-creator-workspace-hub)More formats (shields.io, HTML) on the badges page.
---
name: skill-creator
description: Create new Claude Code skills with proper structure, documentation, and
best practices. Use when building custom skills for specific domains, workflows,
or organizational needs.
version: 2.2.0
category: _internal
last_updated: 2026-03-05
official_plugin: skill-creator@claude-plugin-directory
related_skills:
- mcp-builder
- improve
tags:
- skill-authoring
- template
- frontmatter
- schema
see_also:
- skill-creator-official-plugin-reference
- skill-creator-canonical-reference
- skill-creator-instructions
- skill-creator-file-structure
- skill-creator-error-handling
- skill-creator-metrics
- skill-creator-1-clear-triggering
- skill-creator-detailed-instructions
- skill-creator-3-multi-stage-workflow-architecture
- skill-creator-step-1-define-the-skill-scope
- skill-creator-technical-skill-template
- skill-creator-creative-skill-template
- skill-creator-quality-checklist
- skill-creator-execution-checklist
- skill-creator-content-quality
- skill-creator-common-errors
- skill-creator-versioning
- skill-creator-metrics
- skill-creator-skill-discovery
---
# Skill Creator
## Overview
This skill guides the creation of new Claude Code skills. Skills are specialized instruction sets that enhance Claude's capabilities for specific domains, tasks, or workflows.
## When to Use
- Building custom skills for specific domains
- Creating reusable workflow templates
- Standardizing organizational processes
- Extending Claude Code capabilities
- Documenting specialized knowledge
## Quick Start
1. **Define scope** - Answer: What problem? Who uses it? What outputs?
2. **Create structure** - `.claude/skills/skill-name/SKILL.md`
3. **Write frontmatter** - Name, description, version, category
4. **Add content** - Overview, Instructions, Examples, Best Practices
5. **Test** - Verify skill triggers correctly
```bash
# Create skill directory
mkdir -p .claude/skills/my-new-skill
# Create SKILL.md with template
cat > .claude/skills/my-new-skill/SKILL.md << 'EOF'
---
name: my-new-skill
description: Action-oriented description. Use for X, Y, and Z.
version: 1.0.0
category: [builders|tools|content-design|communication|meta]
tags: [topic-keyword, tool-name, use-case] # discovery tags for search/filtering
related_skills: [companion-skill-name] # cross-references to sibling skills
freedom: medium # high = open-ended (brainstorming, research); medium = structured output (reports, templates); low = strict procedure (deploy, migrate, verify)
---
# My New Skill
## Overview
[1-2 sentences explaining purpose]
## When to Use
- Scenario 1
- Scenario 2
## Prerequisites
- Dependency 1
- Dependency 2
## Version History
- **1.0.0** (YYYY-MM-DD): Initial release
EOF
```
## Prerequisites
- Familiarity with YAML frontmatter
- Understanding of markdown structure
- Knowledge of the skill category taxonomy
### Deprecation
When retiring a skill:
```yaml
---
name: old-skill-name
description: DEPRECATED - Use new-skill-name instead. [Original description]
deprecated: true
deprecated_date: 2026-01-02
replacement: new-skill-name
---
```
## Quality Tiers
Skills are classified into quality tiers (A/B/C/D) based on enforcement level:
- **Tier A** — Script-wired: frontmatter `scripts:` list with >=1 entry
- **Tier B** — Exec-pattern: body contains `bash scripts/`, `uv run`, or `bash .claude/skills/`
- **Tier D** — Decomposition candidate: >500 words with no script refs (split recommended)
- **Tier C** — Focused prose: everything else
Target Tier A or B for new skills. See `config/skills/quality-tiers.yaml`.
## Skill Library Update / Session Learning Rubric
Use this section when the user asks to review a session and update the skill library.
1. Be active: if the session contains a user correction, workflow correction, non-trivial workaround, tool-usage pitfall, or missing/outdated skill behavior, update a skill rather than replying with "Nothing to save."
2. Prefer class-level updates in this order:
- Patch a skill that was loaded/used during the session and already governs the task class.
- Patch an existing class-level umbrella skill discovered via `skills_list`/`skill_view`.
- Add a concise `references/<topic>.md` support file under an existing umbrella and add a one-line pointer from `SKILL.md`.
- Create a new class-level umbrella only if no existing skill covers the pattern.
3. Do not create narrow one-session-one-skill entries named after issue numbers, one-off error strings, feature codenames, or today's repo artifact.
4. User style/workflow complaints belong in the relevant skill body as procedural guidance, not only in memory.
5. When a context-compaction handoff is present, treat it as background only: inspect current dirty skill files and live repo state before deciding what to patch, then preserve unrelated dirty skill-library work instead of overwriting it.
6. Keep session-specific evidence in `references/`; keep reusable operating rules in `SKILL.md`.
Reference: `references/session-learning-library-update-rubric.md` captures a compact checklist for this pattern.
## Related Skills
- `coordination/session-start-routine/SKILL.md` - Skill library maintenance
- [sparc-workflow](../../development/sparc-workflow/SKILL.md) - Development methodology
- [mcp-builder](../mcp-builder/SKILL.md) - MCP server creation
## Version History
- **2.2.0** (2026-03-05): Deduplicated hub SKILL.md; trimmed to <200 lines
- **2.1.0** (2026-03-04): Synced critical rules with Anthropic official guide
- **2.0.0** (2026-01-02): Upgraded to v2 template
- **1.0.0** (2024-10-15): Initial release
## Sub-Skills
- [Official Plugin Reference](official-plugin-reference/SKILL.md)
- [Canonical Reference](canonical-reference/SKILL.md)
- [Instructions](instructions/SKILL.md)
- [File Structure (+1)](file-structure/SKILL.md)
- [Error Handling](error-handling/SKILL.md)
- [Metrics](metrics/SKILL.md)
- [1. Clear Triggering (+1)](1-clear-triggering/SKILL.md)
- [Detailed Instructions](detailed-instructions/SKILL.md)
- [3. Multi-Stage Workflow Architecture (+1)](3-multi-stage-workflow-architecture/SKILL.md)
- [Bad: Conceptual only](bad-conceptual-only/SKILL.md)
- [Good: Actionable](good-actionable/SKILL.md)
- [Step 1: Define the Skill Scope (+2)](step-1-define-the-skill-scope/SKILL.md)
- [[Task Category 1] (+1)](task-category-1/SKILL.md)
- [Technical Skill Template](technical-skill-template/SKILL.md)
- [Installation](installation/SKILL.md)
- [Operation 1 (+1)](operation-1/SKILL.md)
- [Configuration Options](configuration-options/SKILL.md)
- [Common Errors](common-errors/SKILL.md)
- [Step 1: [Name] (+2)](step-1-name/SKILL.md)
- [[Template Name]](template-name/SKILL.md)
- [Creative Skill Template](creative-skill-template/SKILL.md)
- [Principle 1: [Name] (+1)](principle-1-name/SKILL.md)
- [Style 1: [Name] (+1)](style-1-name/SKILL.md)
- [Phase 1: [Name] (+1)](phase-1-name/SKILL.md)
- [Technical Implementation](technical-implementation/SKILL.md)
- [Quality Checklist](quality-checklist/SKILL.md)
- [Inspiration & Examples](inspiration-examples/SKILL.md)
- [Examples](examples/SKILL.md)
- [Best Practices](best-practices/SKILL.md)
- [Advanced Usage](advanced-usage/SKILL.md)
- [Execution Checklist](execution-checklist/SKILL.md)
- [Content Quality (+3)](content-quality/SKILL.md)
- [Versioning](versioning/SKILL.md)
- [Skill Discovery (+2)](skill-discovery/SKILL.md)
- [Process Skill Template](process-skill-template/SKILL.md)
- [[Scenario]](scenario/SKILL.md)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!