skill-creator
SolidCreate new Claude Code skills. Applies standard templates and best practices to scaffold a skill file automatically.
AI & Automation 4 stars
0 forks Updated 3 days ago MIT
Install
Quality Score: 80/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Skill Creator
> Claude Code 스킬을 빠르고 정확하게 생성
베스트 프랙티스를 적용한 스킬을 자동 생성합니다.
---
## 사용법
### 신규 스킬 생성
```
/skill-creator "데이터 분석" data-analysis
/skill-creator "API 모니터링" api-monitor
/skill-creator "보안 검사" security-audit
```
---
## 생성 워크플로우
### 1. 요구사항 수집
다음 정보를 확인합니다:
- 스킬 이름 (kebab-case)
- 스킬 설명
- 사용 시점 (when to use)
- 필요한 도구
- 모델 (opus/sonnet/haiku)
### 2. Frontmatter 생성
```yaml
---
name: skill-name
description: What it does + when to use
model: sonnet | opus | haiku
effort: low | medium | high | max
argument-hint: "[파라미터 힌트]"
allowed-tools: [tools]
---
```
### 3. 본문 작성
**구조:**
1. 개요
2. 사용법
3. 워크플로우
4. 예시
5. 관련 도구
---
## 플러그인 구조 등록
`plugins/{domain}/.claude-plugin/plugin.json`의 `skills` 필드 확인 후
`plugins/{domain}/skills/{name}/SKILL.md` 경로에 파일 생성.
---
## 스킬 템플릿
### 기본 템플릿
```markdown
---
name: skill-name
description: Brief description. Use when [scenario].
model: sonnet
effort: medium
argument-hint: "[argument description]"
allowed-tools: Read, Write, Bash
---
# Skill Title
> One-line tagline
Brief overview of what this skill does.
---
## 사용법
/skill-name [arguments]
/skill-name "specific task"
---
## 워크플로우
### 1. Step One
Description...
### 2. Step Two
Description...
---
## 예시
/skill-name example-input
**Result:** Description of result
---
## 관련 도구
- **related-agent**: Description
```
### Task 에이전트 호출 템플릿
```markdown
---
name: skill-name
description: Orchestrates agents for [purpose].
model: sonnet
effort: high
argument-hint: "[argumen...
Details
- Author
- This-HW
- Repository
- This-HW/claude-code-kit
- Created
- 5 months ago
- Last Updated
- 3 days ago
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
skill-creator
Generate a new Claude Code skill file from a plain-language description. Scaffolds the SKILL.md, command file, and CLAUDE.md additions.
11 Updated today
conorbronsdon Code & Development Solid
skill-developer
Claude Code 스킬, 훅, 에이전트, 명령어를 생성하고 관리하기 위한 메타 스킬. 새 스킬 생성, 스킬 트리거 설정, 훅 설정, Claude Code 인프라 관리 시 사용.
413 Updated today
aiskillstore AI & Automation Listed
skill-creator
Guide for creating and editing Claude Code skills. Use when user wants to create a new skill, create a new slash command (skills are the unified primitive - commands live in skills/ now), update an existing skill, or needs help structuring a SKILL.md file.
2 Updated today
lttr