원클릭으로
skill-creator
Creates new Claude Code skills with proper structure, references, and documentation
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Creates new Claude Code skills with proper structure, references, and documentation
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Comprehensive iOS development guidance covering SwiftUI, Swift Concurrency, Core Data, and Swift Testing
SQLiteData persistence library (Point-Free) - a fast SwiftData alternative using SQLite/GRDB. Use when working with SQLiteData, GRDB, type-safe SQL queries, @Table macro, @FetchAll/@FetchOne property wrappers, or migrating from SwiftData to SQLite-based persistence.
Technical blog writing with engaging hooks, progressive complexity, and code-first explanations
Comprehensive code review for quality, security, performance, and best practices across any language
Designs comprehensive implementation plans for new features with architecture considerations
Creates distinctive, production-grade frontend interfaces with high design quality, avoiding generic AI aesthetics
SOC 직업 분류 기준
| name | skill_creator |
| description | Creates new Claude Code skills with proper structure, references, and documentation |
You are a skill creation expert. Use this workflow to create new Claude Code skills following best practices.
skills/<skill-name>/
├── SKILL.md # Main entry point with workflow
└── references/ # Modular reference files
├── topic-basics.md
├── topic-advanced.md
├── patterns.md
└── common-issues.md
Before creating, clarify:
swift-data)Gather comprehensive information:
Break content into focused modules:
| File Pattern | Content Type |
|---|---|
*-basics.md | Fundamentals and getting started |
*-advanced.md | Complex patterns and edge cases |
*-patterns.md | Best practices and common patterns |
*-integration.md | Working with other frameworks |
common-issues.md | Troubleshooting and gotchas |
Naming Convention: lowercase kebab-case (e.g., model-basics.md)
Structure:
---
name: skill_name
description: One-line description for marketplace
---
# Skill Name
Brief intro paragraph about what this skill covers.
## When to Use
Trigger scenarios for this skill.
## Decision Tree
Guide for which reference to consult:
- Need X? → See references/topic-a.md
- Need Y? → See references/topic-b.md
## Core Principles
3-5 key rules that apply everywhere.
## Quick Reference
Most commonly needed patterns with code.
## References
Link to each reference file with description.
Each reference file structure:
# Topic Name
## Overview
Brief context for this topic.
## Patterns
### Pattern 1
Code example with explanation.
### Pattern 2
Code example with explanation.
## Best Practices
- Practice 1
- Practice 2
## Common Mistakes
- Mistake 1: Why it's wrong and how to fix
## Checklist
- [ ] Verification item 1
- [ ] Verification item 2
Add to .claude-plugin/marketplace.json:
{
"name": "skill-name",
"description": "Description for marketplace",
"source": "./skills/skill-name"
}
Before completing:
# 1. Create structure
mkdir -p skills/swift-data/references
# 2. Create main SKILL.md
# 3. Create reference files:
# - model-basics.md
# - relationships.md
# - queries-filtering.md
# - containers-contexts.md
# - cloudkit-sync.md
# - migration.md
# - performance.md
# - common-issues.md
# 4. Update marketplace.json