원클릭으로
skill-builder
Guide users through creating new Claude Code Skills with proper structure, validation, and best practices
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guide users through creating new Claude Code Skills with proper structure, validation, and best practices
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate comprehensive "Shownotes" summaries from longform articles, papers, transcripts, videos, or audio content. Use when users request shownotes, episode summaries, content summaries with takeaways, or when they reference the mdynotes.com format. Creates structured summaries with metadata, hooks, takeaways, quotes, and references.
Research-backed code review skill with OWASP Top 10 security checks, SAST tool integration (SonarQube, CodeQL, Snyk), performance pattern detection, and automated quality standards enforcement. Auto-invoked for code review, security audit, PR analysis, and bug checking. Implements 2025 best practices with 92% faster vulnerability remediation.
Research-backed feature implementation workflow enforcing gap analysis, incremental planning, agent coordination, and continuous integration best practices. Auto-invoked for ALL feature implementation requests to prevent code duplication and ensure CLAUDE.md compliance.
Proactively monitors file sizes and suggests refactoring BEFORE editing. Auto-invoked when files exceed size thresholds (150/200/300 lines) or complexity patterns detected. Works across JavaScript/TypeScript, Python, and general codebases. Prevents accidental complexity growth.
Mandatory audit workflow for UI/UX changes that reads current state FIRST, checks for redundancy, respects clean design philosophy, and identifies genuine gaps before implementation. Auto-invoked when user mentions UI, UX, design, layout, homepage, page improvements, visual changes, or interface modifications.
Create aesthetically pleasing, visually distinctive frontend UIs using research-backed prompting strategies from Anthropic's frontend aesthetics cookbook
| name | skill-builder |
| description | Guide users through creating new Claude Code Skills with proper structure, validation, and best practices |
This skill helps you create well-structured Claude Code Skills. Use it when the user wants to build a new skill for Claude Code.
Invoke this skill when users:
Ask the user these questions (use AskUserQuestion tool when appropriate):
Based on scope, choose the directory:
.claude/skills/[skill-name]/ (within project root)~/.claude/skills/[skill-name]/ (available everywhere)Use this pattern:
skill-name/
├── SKILL.md (required: main instructions)
├── REFERENCE.md (optional: detailed reference info)
├── FORMS.md (optional: templates and forms)
├── scripts/ (optional: executable code)
│ ├── script1.py
│ └── script2.sh
└── resources/ (optional: templates, data files)
└── template.txt
The SKILL.md must follow this structure:
---
name: skill-name
description: Clear description of what this skill does and when to use it
---
# Skill Name
Main instructions for Claude go here.
## When to Use
Describe scenarios where this skill should be invoked.
## How It Works
Step-by-step instructions for Claude to follow.
## Examples
Provide examples of usage.
Frontmatter Requirements:
name: Max 64 chars, lowercase letters/numbers/hyphens only (e.g., "excel-automation")description: Non-empty, max 1024 chars, should clearly indicate when to use the skill
Best Practices for Instructions:
REFERENCE.md: Detailed technical information that Claude can read when needed
FORMS.md: Templates and structured formats
scripts/: Executable code for complex operations
resources/: Static files and templates
Check these requirements:
SKILL.md exists with valid YAML frontmattername is lowercase, alphanumeric with hyphens, max 64 charsdescription is clear, non-empty, max 1024 charsRun automated validation:
python .validation/validate-skills.py
Validation Scoring (29 points total):
Passing threshold: 80% (24/29 points)
After creation:
Design skills to minimize token usage:
Always Loaded (Metadata): ~100 tokens
Loaded When Triggered (Instructions): <5k tokens
Loaded As Needed (Resources): No token cost
doc-generator/
├── SKILL.md (generation instructions)
├── templates/ (document templates)
└── scripts/ (formatting scripts)
code-analyzer/
├── SKILL.md (analysis procedures)
├── REFERENCE.md (pattern definitions)
└── scripts/ (analysis tools)
automation-helper/
├── SKILL.md (automation workflows)
├── FORMS.md (configuration templates)
└── scripts/ (automation scripts)
When helping users build a skill:
Before completing, verify:
See the templates directory for: