원클릭으로
skill-creator
Create new skills with proper structure and evals. Use when creating domain-specific skills for the .agents/skills/ directory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create new skills with proper structure and evals. Use when creating domain-specific skills for the .agents/skills/ directory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
GOAP-based orchestrator for managing GitHub issues, creating action plans, and executing workspace operations with branch/PR workflow.
Configure and troubleshoot npm OIDC Trusted Publishing for GitHub Actions. Use when npm publish fails with E404, OIDC errors, or provenance issues.
GitHub release management, crates.io trusted publishing, npm provenance, and GitHub Pages documentation. Use when creating releases, publishing packages, or deploying docs.
Git commit conventions, validation gates, and CI/CD workflows. Use when committing changes, verifying gates, or working with GitHub Actions.
Validate merge readiness with atomic commits and GitHub Actions checks using gh CLI; use for pre-merge verification and CI truth validation.
Apply TRIZ inventive principles to solve problems that seem to have no good solution. Use after triz-analysis has identified contradictions.
| name | skill-creator |
| description | Create new skills with proper structure and evals. Use when creating domain-specific skills for the .agents/skills/ directory. |
Template-driven skill creation with evaluation criteria.
┌─────────────────────────────────────────────────┐
│ 1. DEFINE: Identify trigger conditions │
│ 2. DRAFT: Write SKILL.md from template │
│ 3. ADD: Include evaluation criteria │
│ 4. TEST: Validate skill loads correctly │
└─────────────────────────────────────────────────┘
.agents/skills/<skill-name>/
SKILL.md # Required: skill definition
examples/ # Optional: usage examples
templates/ # Optional: file templates
evals.md # Optional: evaluation criteria
---
name: <skill-name>
description: "<one-line description of when to use this skill>"
---
# <Skill Name>
## When to Use
- Bullet list of trigger conditions
- Be specific about use cases
## Do NOT Use
- Anti-patterns and edge cases
- When other skills are more appropriate
## Process
Step-by-step instructions with:
1. Numbered steps
2. Code examples where helpful
3. Clear decision points
## Parameters
| Parameter | Default | Description |
|-----------|---------|-------------|
| key | value | explanation |
## Examples
Concrete usage scenarios
## References
Links to related files (@file.md style)
Identify when this skill should activate:
Create the file following the template:
mkdir -p .agents/skills/<skill-name>
touch .agents/skills/<skill-name>/SKILL.md
Key sections:
name and description (required)If skill produces artifacts, define success criteria:
# Evaluation Criteria
| Criterion | Pass | Fail |
|-----------|------|------|
| Correctness | Output compiles | Syntax errors |
| Completeness | All steps done | Missing steps |
| Quality | Follows patterns | Deviates from style |
# Verify frontmatter parses
grep -E "^name:|^description:" .agents/skills/<skill-name>/SKILL.md
# Check file structure
ls -la .agents/skills/<skill-name>/
| Field | Required | Format |
|---|---|---|
name | Yes | kebab-case, matches directory |
description | Yes | One line, describes trigger |
| Pattern | Example | Use Case |
|---|---|---|
<domain>-<action> | rust-development | Domain-specific work |
<tool>-<task> | github-ci-guardrails | Tool-specific tasks |
swarm-<focus> | swarm-testing-quality | Swarm coordination |
self-<action> | self-fix-loop | Automation loops |
User: "Create a skill for managing database migrations"
Agent: [Skill Creator activated]
1. DEFINE: Triggers on "migration", "schema change", "db upgrade"
2. DRAFT: Created .agents/skills/db-migrations/SKILL.md
3. ADD: Added evals.md with success criteria
4. TEST: Verified frontmatter and structure
Created skill with:
- When to use: Schema changes, version bumps
- Process: 1) Generate migration 2) Test 3) Apply
- Evals: All migrations reversible, tests pass
name and description