一键导入
skill-creator
Create and scaffold new agent skills with proper structure, validation, and spec compliance. Use when building new skills from scratch.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create and scaffold new agent skills with proper structure, validation, and spec compliance. Use when building new skills from scratch.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
List all available channels. Use when discovering what channels exist or checking channel metadata.
Publish a message to a channel or DM. Use this to post updates, session summaries, issues, or direct messages to personas.
Read messages from a channel. Use this to check for new messages, review issue history, or catch up on session logs.
Reply to a specific message in a channel. Use this to respond to issues, answer questions, or continue threaded conversations.
Install agent skills from various sources including local paths, GitHub URLs, or the dot-agents repository. Use when adding new skills to a project or user environment.
Discover, browse, and compare agent skills from repositories. Shows new skills, updates, and helps users find relevant skills. Use when exploring available skills or checking for updates.
| name | skill-creator |
| description | Create and scaffold new agent skills with proper structure, validation, and spec compliance. Use when building new skills from scratch. |
| license | MIT |
Create well-structured agent skills that comply with the Agent Skills Specification v1.0.
Use skill-creator when you need to:
code-complexity-analyzer, api-doc-generatorCode_Analyzer (underscores)codeAnalyzer (camelCase)CODE-ANALYZER (uppercase)code-analyzer (correct)Minimal (instructions only):
skill-name/
└── SKILL.md
With scripts:
skill-name/
├── SKILL.md
└── scripts/
└── helper.py
Full structure:
skill-name/
├── SKILL.md
├── scripts/
│ └── helper.py
├── templates/
│ └── template.md
├── assets/
│ └── output/
└── references/
└── docs.md
Required fields:
---
name: skill-name
description: Clear explanation of what the skill does and when Claude should use it
---
With optional fields:
---
name: skill-name
description: Clear explanation of what the skill does and when Claude should use it
license: MIT
allowed-tools:
- Read
- Write
- Bash
metadata:
author: username
version: "1.0.0"
---
Use imperative language:
# Skill Name
Brief introduction to what this skill does.
## When to Use This Skill
List specific scenarios...
## Process
### Step 1: Action
Instructions in imperative form...
### Step 2: Action
More instructions...
## Examples
### Example 1: Concrete Scenario
Input: ...
Expected Output: ...
scripts/ directoryscript --help firstExample reference in SKILL.md:
Run the validation script:
\`\`\`bash
python scripts/validate.py --help
python scripts/validate.py --input data.json
\`\`\`
templates/ directoryName validation
name field exactlyYAML validation
name, descriptionFile reference validation
Content validation
python scripts/validate_skill.py /path/to/skill-name
Use these templates as starting points:
cat templates/basic-skill.md
cat templates/skill-with-scripts.md
Validate a skill's structure:
python scripts/validate_skill.py /path/to/skill-directory
The script checks:
Input: "Create a skill for applying brand guidelines"
Steps:
brand-guidelines---
name: brand-guidelines
description: Apply brand visual identity guidelines including colors, typography, and spacing. Use when creating branded materials or reviewing designs.
license: MIT
---
# Brand Guidelines
Apply consistent brand visual identity.
## Colors
- Primary: #1A1A1A
- Secondary: #4A90E2
## Typography
- Headings: Inter, 24px, 600 weight
- Body: Inter, 16px, 400 weight
## Spacing
- Base unit: 8px
- Margins: 16px, 24px, 32px
Input: "Create a skill for testing web applications with Playwright"
Steps:
webapp-testingname field exactlyBefore finalizing a skill:
name fieldscripts/validate_skill.pytemplates/ directory