一键导入
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 职业分类
| 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 descriptionGOAP-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.