Skill Creator

### SKILL.md Frontmatter Only

v1.0.0

关于此技能

安装 Skill Creator,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看功能、使用场景、限制条件与安装命令。

功能特性

Anatomy of a Skill
├── SKILL.md ← required: frontmatter + instructions
├── scripts/ ← optional: executable code (Python/Bash)
├── references/ ← optional: docs loaded into context as needed
└── assets/ ← optional: templates, images, fonts used in output
Creativityliberty Creativityliberty
[0]
[0]
更新于: 3/11/2026

技能概览

先看适用场景、限制条件和安装路径,再决定是否继续深入。

安装 Skill Creator,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看功能、使用场景、限制条件与安装命令。

核心价值

推荐说明: skill-creator helps agents anatomy of a skill. Skill Creator Skills are self-contained packages that extend Claude's capabilities with specialized workflows, domain knowledge, and reusable resources. This AI

适用 Agent 类型

适用场景: anatomy of a skill.

赋予的主要能力 · Skill Creator

适用任务: Anatomy of a Skill
适用任务: ├── SKILL.md ← required: frontmatter + instructions
适用任务: ├── scripts/ ← optional: executable code (Python/Bash)

! 使用限制与门槛

  • 限制说明: Fragile, must be exact Specific scripts with few params
  • 限制说明: Concise is key — Context window is shared. Only include what Claude doesn't already know.
  • 限制说明: No extra docs — No README.md, CHANGELOG.md, INSTALLATION.md in the skill. Only files the AI agent needs.

! 来源说明

此页面仍可作为安装与查阅参考。继续使用前,请结合上方适用场景、限制条件和上游仓库说明一起判断。

SKILL.md
Readonly

Skill Creator

Skills are self-contained packages that extend Claude's capabilities with specialized workflows, domain knowledge, and reusable resources.

Anatomy of a Skill

skill-name/
├── SKILL.md              ← required: frontmatter + instructions
├── scripts/              ← optional: executable code (Python/Bash)
├── references/           ← optional: docs loaded into context as needed
└── assets/               ← optional: templates, images, fonts used in output

SKILL.md Frontmatter

Only name and description are required. The description is the primary trigger — write it to cover all "when to use" cases, because the body only loads after the skill triggers.

yaml
1--- 2name: my-skill 3---

Body: Degrees of Freedom

Match specificity to the task:

Task typeUse
Many valid approachesFree-form text instructions
Preferred pattern with some variationPseudocode or parameterized scripts
Fragile, must be exactSpecific scripts with few params

Core Principles

Concise is key — Context window is shared. Only include what Claude doesn't already know.

Progressive disclosure — Keep SKILL.md under 500 lines. Move detailed content to references/ files and link them explicitly from SKILL.md.

No extra docs — No README.md, CHANGELOG.md, INSTALLATION.md in the skill. Only files the AI agent needs.

Creation Process

1. Understand with Examples

Ask the user:

  • What tasks should this skill handle?
  • Give 2-3 concrete examples of how it would be used.
  • What should trigger it?

2. Plan Resources

For each example, think:

  • Is there code that gets rewritten repeatedly? → scripts/
  • Is there domain knowledge Claude needs? → references/
  • Are there templates/files used in output? → assets/

3. Create the Skill Directory

bash
1mkdir -p skills/my-skill/scripts skills/my-skill/references skills/my-skill/assets

Delete unused subdirectories.

4. Write SKILL.md

  • Frontmatter: name + comprehensive description
  • Body: Workflow steps, key commands, when to use references
  • If supporting multiple variants (AWS/GCP/Azure, React/Vue/etc.), keep SKILL.md lean and use references/<variant>.md

5. Add Bundled Resources

Scripts — Write, then test by actually running them:

bash
1python skills/my-skill/scripts/my_script.py

References — Documentation, schemas, API specs. For files >100 lines, add a table of contents at the top.

Assets — Templates or boilerplate to copy/modify (not loaded into context, used in output).

6. Validate Structure

✅ SKILL.md has name + description in frontmatter
✅ Description covers all trigger cases
✅ Body is under 500 lines
✅ References linked explicitly from SKILL.md
✅ Scripts tested and working
✅ No extraneous documentation files

7. Add to This Repo

Place the skill folder in skills/ and update README.md table.

Reference File Patterns

Pattern 1 — High-level + references:

markdown
1## Advanced features 2- Form filling: See [references/forms.md](references/forms.md) 3- API reference: See [references/api.md](references/api.md)

Pattern 2 — Multi-variant:

cloud-deploy/
├── SKILL.md (selection logic)
└── references/
    ├── aws.md
    ├── gcp.md
    └── azure.md

Pattern 3 — Conditional:

markdown
1For basic edits, modify directly. 2**For tracked changes**: See [references/redlining.md](references/redlining.md)

Keep references one level deep — all link directly from SKILL.md.

常见问题与安装步骤

与页面结构化数据保持一致,便于搜索引擎理解。

安装步骤

  1. 1

    打开终端

    在你的项目目录中打开终端或命令行。

  2. 2

    执行安装命令

    运行:npx killer-skills add Creativityliberty/nexusskill/skill-creator。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3

    开始使用技能

    Skill Creator 已启用,可立即在当前项目中调用。

? FAQ

Skill Creator 是什么?
安装 Skill Creator,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看功能、使用场景、限制条件与安装命令。
如何安装 Skill Creator?
运行命令:npx killer-skills add Creativityliberty/nexusskill/skill-creator。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。
Skill Creator 适用于哪些场景?
典型场景包括:适用任务: Anatomy of a Skill、适用任务: ├── SKILL.md ← required: frontmatter + instructions、适用任务: ├── scripts/ ← optional: executable code (Python/Bash)。
Skill Creator 支持哪些 IDE 或 Agent?
该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。
Skill Creator 有哪些限制?
限制说明: Fragile, must be exact Specific scripts with few params;限制说明: Concise is key — Context window is shared. Only include what Claude doesn't already know.;限制说明: No extra docs — No README.md, CHANGELOG.md, INSTALLATION.md in the skill. Only files the AI agent needs.。

相关技能

寻找 Skill Creator 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

本地化技能摘要: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. Claude Code, Cursor, and Windsurf workflows.

333.8k
0
AI

widget-generator

Logo of f
f

本地化技能摘要: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat. It covers ai, artificial-intelligence, awesome-list workflows. Claude Code, Cursor, and Windsurf

149.6k
0
AI

flags

Logo of vercel
vercel

本地化技能摘要: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. Claude Code, Cursor, and Windsurf workflows.

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

本地化技能摘要: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review. It covers autograd, deep-learning, gpu workflows. Claude Code, Cursor, and Windsurf workflows.

98.6k
0
开发者工具