when-creating-skill-template-use-skill-builder

Solid

Create new Claude Code Skills with proper YAML frontmatter, progressive disclosure structure, and complete directory organization

Data & Documents 335 stars 29 forks Updated today

Install

View on GitHub

Quality Score: 85/100

Stars 20%
84
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
0
Description 5%
100

Skill Content

# Skill Builder - Claude Code Skill Template Generator ## Overview Creates new Claude Code Skills with proper structure, YAML frontmatter, progressive disclosure, and complete documentation. Ensures skills follow best practices and specification requirements. ## When to Use - Creating new reusable skills - Need skill template/boilerplate - Building skill library - Standardizing skill format ## Phase 1: Design Skill Structure (5 min) ### Objective Define skill components and metadata ### Agent: Base-Template-Generator **Step 1.1: Gather Requirements** ```javascript const skillRequirements = { name: 'when-[condition]-use-[skill-name]', category: 'utilities|development|testing|machine-learning', description: 'Clear one-sentence purpose', agents: ['agent1', 'agent2'], phases: [ { name: 'Phase 1', duration: '5min', objective: '...' }, // ... ], triggers: ['When X happens', 'When Y is needed'], outputs: ['file1.json', 'report.md'] }; await memory.store('skill-builder/requirements', skillRequirements); ``` **Step 1.2: Define YAML Frontmatter** ```yaml --- name: when-[trigger]-use-[skill-name] version: 1.0.0 description: Single sentence describing purpose category: utilities tags: [tag1, tag2, tag3] agents: [agent1, agent2] difficulty: beginner|intermediate|advanced estimated_duration: 15-30min success_criteria: - Criterion 1 - Criterion 2 validation_method: test_type dependencies: - claude-flow@alpha - other-dependency prerequisites: - Req...

Details

Author
aiskillstore
Repository
aiskillstore/marketplace
Created
5 months ago
Last Updated
today
Language
Python
License
None

Similar Skills

Semantically similar based on skill content — not just same category

Web & Frontend Listed

skill-builder

Create new Claude Code Skills with proper YAML frontmatter, progressive disclosure structure, and complete directory organization. Use when you need to build custom skills for specific workflows, generate skill templates, or understand the Claude Skills specification.

335 Updated today
aiskillstore
AI & Automation Solid

skill-builder

Create new Claude Code Skills with proper YAML frontmatter, progressive disclosure structure, and complete directory organization. Use when you need to build custom skills for specific workflows, generate skill templates, or understand the Claude Skills specification.

57,130 Updated today
ruvnet
AI & Automation Listed

creating-skills

Creates new Claude Code skills following best practices. Guides through skill structure, naming, descriptions, and progressive disclosure. Use when user wants to create a skill, build a skill, make a new capability, or asks about skill best practices.

335 Updated today
aiskillstore
Code & Development Listed

creating-skills

Guide for creating Claude Code skills following Anthropic's official best practices. Use when user wants to create a new skill, build a skill, write SKILL.md, update an existing skill, or needs skill creation guidelines. Provides structure, frontmatter fields, naming conventions, and new features like dynamic context injection and subagent execution.

63 Updated 2 weeks ago
fvadicamo
AI & Automation Solid

skill-creator

Scaffold a new Claude Code skill with SKILL.md, frontmatter, and bundled resources. Use when creating a custom skill, standardizing skill structure across a team, or packaging a skill for distribution.

4,608 Updated 2 days ago
FlorianBruniaux