skill-developer

Solid

Claude Code 스킬, 훅, 에이전트, 명령어를 생성하고 관리하기 위한 메타 스킬. 새 스킬 생성, 스킬 트리거 설정, 훅 설정, Claude Code 인프라 관리 시 사용.

Code & Development 402 stars 39 forks Updated today

Install

View on GitHub

Quality Score: 79/100

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

Skill Content

# Skill Developer Guide ## Purpose Comprehensive guide for creating and managing Claude Code skills, hooks, agents, and commands. This meta-skill helps you build and configure Claude Code infrastructure components. ## When to Use This Skill - Creating new skills - Configuring skill triggers in skill-rules.json - Setting up hooks - Creating agents - Adding slash commands - Understanding skill activation patterns - Customizing skill behavior --- ## Quick Start ### Creating a New Skill 1. **Create skill directory**: ```bash mkdir -p .claude/skills/{skill-name} ``` 2. **Create SKILL.md file**: - Add frontmatter with `name` and `description` - Write comprehensive guidelines - Use progressive disclosure (main file + resources/) 3. **Update skill-rules.json**: - Add skill entry with triggers - Configure `fileTriggers` and `promptTriggers` - Set `enforcement` and `priority` ### Skill Structure ``` .claude/skills/ {skill-name}/ SKILL.md # Main skill file resources/ # Optional: Additional resources pattern-1.md pattern-2.md ``` --- ## Skill Configuration ### skill-rules.json Structure ```json { "version": "1.0", "description": "Skill activation triggers", "skills": { "{skill-name}": { "type": "domain" | "guardrail", "enforcement": "suggest" | "block" | "warn", "priority": "critical" | "high" | "medium" | "low", "description": "Skill description", "promptTri...

Details

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

Similar Skills

Semantically similar based on skill content — not just same category