원클릭으로
skill-creator
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Planner-Generator-Evaluator 编排模式。GAN 启发的多 agent 动态编排,通过 ai CLI 控制子 agent 完成复杂任务的拆解-执行-验证闭环。
Code review skill using codex-rs methodology with ai CLI
为任意代码仓库构建结构化知识库(code wiki),并通过 frozen snapshot 机制启动即问即答的 expert agent。 当你需要深入理解一个大型代码仓库、构建可复用的代码知识库、或为其他 agent 提供代码专家服务时使用此技能。
Use the mcporter CLI to list, configure, auth, and call MCP servers/tools directly (HTTP or stdio), including ad-hoc servers, config edits, and CLI/type generation.
Orchestrate a real-time alternating debate between two subagents using ai serve/send. Judge controls rounds by prompting each agent in turn.
任务规划与进度追踪。当任务有 5+ 步骤、多文件改动、或长执行链时使用。 核心机制:用 checkbox 列表追踪进度,每完成一步立即更新,利用"重写列表"将完整任务清单重新注入 context。
| name | skill-creator |
| description | Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets. |
This skill provides guidance for creating effective skills.
Writing skills IS Test-Driven Development applied to process documentation.
Same Iron Law: No skill without failing test first. Same cycle: RED (baseline) → GREEN (write skill) → REFACTOR (close loopholes). Same benefits: Better quality, fewer surprises, bulletproof results.
Skills are markdown files with YAML frontmatter that extend Claude's capabilities by providing specialized knowledge, tools, or workflows.
skill-name/
├── SKILL.md # Required: Main skill definition
├── scripts/ # Optional: Helper scripts
│ └── helper.sh
├── references/ # Optional: Reference documents
│ └── api-docs.md
└── assets/ # Optional: Static files
└── template.json
---
name: skill-name
description: One-line description of what this skill does
license: MIT
---
# Skill Title
## Overview
Brief explanation of the skill's purpose and when to use it.
## Instructions
Detailed guidance for using the skill.
## Examples
Concrete usage examples.
Before writing any skill content:
Ask yourself:
Without a clear failing case, you don't know what problem you're solving.
Now write the skill to solve the identified problem:
skill-name/SKILL.mdRequired sections:
Good skill content:
Avoid:
After testing:
Close the loopholes:
Required fields:
name: Skill identifier (lowercase, hyphens)description: One-line summary for discoveryOptional fields:
license: License type (e.g., MIT)tools: Tool whitelist for restricted skills| Section | Purpose | Required |
|---|---|---|
| Overview | What/When | Yes |
| Instructions | How | Yes |
| Examples | Concrete usage | Yes |
| Patterns | Quick reference table | Recommended |
| Anti-Patterns | What to avoid | Recommended |
| Common Mistakes | Troubleshooting | Optional |
| References | Links to docs | Optional |
Use supporting files for:
scripts/)references/)assets/)Keep SKILL.md focused on instructions, not dumping grounds for documentation.
How future Claude finds your skill:
Optimize for this flow - put searchable terms early and often.
Before deploying any skill:
Structure:
Content:
TDD:
If you want to share skills, use the packaging script:
scripts/package_skill.py <path/to/skill-folder>
Optional output directory specification:
scripts/package_skill.py <path/to/skill-folder> ./dist
The packaging script will:
Validate the skill automatically, checking:
Package the skill if validation passes, creating a .skill file named after the skill (e.g., my-skill.skill) that includes all files and maintains the proper directory structure for distribution. The .skill file is a zip file with a .skill extension.
If validation fails, the script will report the errors and exit without creating a package. Fix any validation errors and run the packaging command again.
After testing the skill, users may request improvements. Often this happens right after using the skill, with fresh context of how the skill performed.
Iteration workflow:
Creating skills IS TDD for process documentation.
If you follow TDD for code, follow it for skills. It's the same discipline applied to documentation.
No skill without failing test first. RED → GREEN → REFACTOR.