一键导入
skill-creator
Trigger: new skills, agent instructions, documenting AI usage patterns. Create LLM-first skills with valid frontmatter.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Trigger: new skills, agent instructions, documenting AI usage patterns. Create LLM-first skills with valid frontmatter.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Shared SDD references for installed skills. Not invokable.
Trigger: improve skills, audit skills, refactor skills, skill quality. Audit and upgrade existing LLM-first skills.
Trigger: broad exploration, multi-file reads, tests/builds, fresh review, or multi-step debug. Orchestrate complex work via delegate_task to protect context.
Archive a completed SDD change by syncing delta specs. Trigger: orchestrator launches archive after implementation and verification.
Write SDD delta specs with requirements and scenarios. Trigger: orchestrator launches spec work for a change.
Create an SDD change proposal with intent, scope, and approach. Trigger: orchestrator launches proposal work for a change.
| name | skill-creator |
| description | Trigger: new skills, agent instructions, documenting AI usage patterns. Create LLM-first skills with valid frontmatter. |
| license | Apache-2.0 |
| metadata | {"author":"gentleman-programming","version":"1.0"} |
Create a skill when:
Do not create a skill when the pattern is trivial, one-off, or better served by normal documentation.
docs/skill-style-guide.md as the normative source before creating or updating skills.references/skill-style-guide.md as the bundled local copy of that guide when docs/skill-style-guide.md is unavailable.Keywords section; preserve essential trigger words in description.| Need | Action |
|---|---|
| Code templates, schemas, fixtures, generated examples | Put them in assets/ |
| Conceptual detail, edge cases, existing docs | Put local links in references/ |
Long explanation in SKILL.md | Move it to a supporting file |
| Multiple meaningful paths | Add a compact decision table |
docs/skill-style-guide.md exists; if it does, apply it before the bundled local copy or inline fallback rules.references/skill-style-guide.md and apply it before the inline fallback rules.skills/{skill-name}/SKILL.md using this required structure:skills/{skill-name}/
├── SKILL.md # Required - main skill file
├── assets/ # Optional - templates, schemas, examples
│ ├── template.py
│ └── schema.json
└── references/ # Optional - links to local docs
└── docs.md # Points to docs/developer-guide/*.mdx
---
name: {skill-name}
description: "Trigger: {essential trigger words users or agents will say}. {What this skill does}."
license: Apache-2.0
metadata:
author: "{your-github-username}"
version: "1.0"
---
AGENTS.md when it is a project skill.description MUST be one physical line, quoted, YAML-safe, and include essential trigger words first.description SHOULD be <=160 chars and MUST be <=250 chars.name, description, license, metadata.author, and metadata.version.assets/ or references/, not the main skill body.Good:
description: "Trigger: Jira task, ticket, issue, task creation. Create Jira tasks in the team format."
Bad:
description: >
Create Jira tasks in the team format.
Trigger: Jira task, ticket, issue, or task creation.
Keywords: jira, task
Return:
assets/ or references/.docs/skill-style-guide.md — normative LLM-first skill style guide for this repo.references/skill-style-guide.md — bundled local copy for installed global skills when the repo doc is unavailable.