skill-creator
Create or upgrade a reusable skill in the current skills catalog. Use when adding a skill, improving metadata/examples/evals, tightening trigger boundaries, or deciding if guidance belongs in a skill.
Version
1.2.0
Maturity
stable
Repository
agent-skills
License
Proprietary
Skill metadata
SKILL.md
Skill Creator
Use this skill when
- Creating a new skill in the current catalog
skills/directory - Upgrading an existing skill so its trigger boundaries, workflow, and support files are easier to use correctly
- Refreshing an existing skill so its frontmatter metadata, examples, anti-triggers, or eval coverage better match real user requests
- Tightening a skill's trigger language, validation steps, or support-file layout so it routes more reliably
- Deciding whether reusable guidance belongs in a skill instead of instructions, an agent, an extension, or MCP configuration
- Standardising a skill's structure, metadata, validation steps, or support-file layout for this personal catalog
Do not use this skill when
- The task is a one-off answer or prompt and does not need a reusable catalog asset
- The guidance should always apply and belongs in repository instruction files,
instructions/, orAGENTS.md - The main need is a named specialist role, which belongs in
agents/ - The main need is deterministic runtime behavior, which belongs in
extensions/ - The change is primarily an external integration or live-data connection, which belongs in MCP config
Inputs to gather
Required before editing
- The user problem the skill is meant to solve
- 2-3 representative user requests the skill should trigger on
- The nearest overlapping skills in this catalog and how this skill will stay distinct
- Whether the reusable asset is really a skill rather than instructions, an agent, an extension, or MCP
Helpful if present
- Common failure modes, anti-triggers, or false positives
- Repo or environment assumptions the skill can rely on
- Existing validation commands, checklists, or deterministic procedures worth capturing
- Any current support files that already contain useful examples, edge cases, or reference material
Only investigate if encountered
- Whether
scripts/would remove repeated fragile reconstruction rather than just add maintenance - Whether
evals/would catch meaningful trigger/workflow regressions instead of becoming noise - Whether the skill's maturity should stay
draftor move tostable/experimental
First move
- If the user only wants a generic new-skill starter package, load
references/new-skill-package.mdand useassets/new-skill-starter/as the default response shape instead of blocking on domain-specific discovery. - Otherwise, check whether the guidance belongs in a skill at all.
- Compare the proposed skill against
skills/README.mdand nearby skills so the boundary is explicit before you draft content. - Write the trigger language first: the frontmatter description plus
Use this skill whenandDo not use this skill when. - Only then draft the workflow, support files, and validation steps.
Workflow
- Confirm the guidance really belongs in a skill; check
skills/README.mdand nearby skills to establish the boundary before drafting. - Gather 2-3 concrete user tasks, key constraints, and known failure modes before writing body content; include upgrade prompts when the work is about metadata, examples, or trigger gaps.
- Update the trigger contract first: frontmatter description,
Use this skill when, andDo not use this skill when. - If the request is a generic starter-package ask with no specific skill domain yet, stop discovery there and hand back the minimal copy-ready bundle from
assets/new-skill-starter/: frontmatter, the smallest usefulreferences/set, eval stubs, and target-skill validation commands. - In that starter-package response, say explicitly that
SKILL.mdholds the main workflow whilereferences/andevals/are the progressive-disclosure layer, and say thatscripts/are omitted by default unless they remove repeated fragile reconstruction. - Otherwise, choose the minimal useful package — decide which of
references/,evals/,scripts/, andassets/are actually needed before creating them. - Draft or refine body sections that change execution: workflow, guardrails, validation, and support-file load conditions.
- Add support files only when they materially improve execution; name them for what the agent learns there, not generic labels.
- Validate with the shared tooling; iterate against real prompts, false triggers, and weak outputs before broadening.
Read
assets/skill-template.mdfor the canonicalSKILL.mdoutline and eval file schemas. Readreferences/catalog-standard.mdfor authoring principles, frontmatter spec, and directory conventions.
Guardrails
- Must define the skill boundary against nearby skills before finalizing wording.
- Must put trigger guidance in both the frontmatter description and the body.
- Must adapt the standard to this personal catalog rather than copying another repository wholesale.
- Must hand back the existing starter scaffold directly when the user asks for a generic new-skill package and has not named a domain-specific skill yet.
- Must state the progressive-disclosure split (
SKILL.mdfor the workflow,references/andevals/for deeper support) when handing back the generic starter package. - Must not import Anthropic-specific
.claude,claude,.skill, packaging, or benchmark machinery into this catalog unless the local catalog explicitly adopts that workflow. - Must not add empty headings, dead reference sections, or generic support-file instructions that do not help the agent choose what to read.
- Must not stall on extra discovery or force domain-specific clarification when the user only asked for the reusable starter package.
- Must not imply that
scripts/are part of the default starter bundle; call them out only as an opt-in extension when prose and evals are not enough. - Should give the agent one clear first move before the longer workflow.
- Should prefer precise boundaries and anti-triggers over broad or "pushy" trigger wording when adjacent local skills could plausibly overlap.
- Should keep support-file names purpose-specific when a generic
examples.mdoredge-cases.mdname would hide the real reason to load the file. - May add
evals/,scripts/, orassets/when they clearly improve determinism, trigger precision, or reuse.
Support files
- Read support files only when the current task matches their purpose; state that purpose explicitly in
SKILL.md. - Prefer specific load conditions like
Read the repo-contract reference when the repository may be spec-first or code-firstover generic phrases likeRead examples when you need examples. - If a support file would only repeat one short checklist or one obvious warning, keep that guidance in
SKILL.mdinstead.
Validation
- Run
python _shared/validate-skills.py skillsfrom the catalog root after editingskills/; this also checks release metadata alignment, OpenAI metadata sync, support-file links, stable-skill trigger coverage, and shell-script syntax. - If you changed trigger wording, anti-triggers, or frontmatter description in
skill-creatoritself, runpython _shared/run-trigger-evals.py skills/skill-creator/evals/trigger-queries.json. - If you changed workflow guidance, guardrails, or support-file load conditions in
skill-creatoritself, runpython _shared/run-functional-evals.py skills/skill-creator/evals/evals.json. - When delivering or documenting a new skill scaffold, give the target-skill commands explicitly, for example:
python _shared/validate-skills.py skillspython _shared/run-trigger-evals.py skills/<new-skill-name>/evals/trigger-queries.jsonpython _shared/run-functional-evals.py skills/<new-skill-name>/evals/evals.json- add
--staticto either eval command when you only need fixture validation and the Copilot CLI is unavailable
- Re-read
skills/README.mdalongside the changed skill to confirm the boundary does not overlap ambiguously with nearby skills.
Examples
Update an existing skill so it has better metadata, examples, and trigger coverage.Tighten this skill's description, anti-triggers, and eval prompts so it routes more reliably.Help me decide whether this reusable workflow belongs in a skill, instructions, an agent, or an extension.
Reference files
- Read
references/examples.mdwhen drafting trigger language or checking whether a revised description still matches representative create-or-upgrade requests. - Read
references/edge-cases.mdwhen the request is ambiguous, overlaps another customization surface, or risks adding scripts or assets without clear justification. - Read
references/new-skill-package.mdwhen the task is to hand back a copy-ready starter bundle with frontmatter, support files, evals, and validation commands for the new skill. - Read
references/catalog-standard.mdwhen you need authoring principles, frontmatter spec, or directory structure guidance. - Read
assets/skill-template.mdwhen you need the canonicalSKILL.mdoutline, section headings, or eval file schemas. - Copy
assets/new-skill-starter/into the new skill directory when creating a skill from scratch; replace all placeholders before treating it as ready.