Create skill
Skill tamdogood/builder-essential-skills/skills/create-skill
A repository for skills that are essential to my daily work
npx -y skills add tamdogood/builder-essential-skills --skill create-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 25 days oldThe repository was created 25 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
What its author says it does
Copied from the file, not written here
Create or update a complete repository skill from a user's idea, including the workflow instructions, references, scripts or assets, agent metadata, skill-card artwork, cinematic banner artwork, README links, discovery metadata, and validation. Use when the user asks to create a new skill, add a skill to this collection, turn a workflow into a reusable skill, or make a skill's documentation and artwork consistent with the repository.
SKILL.md
5.3 KB, as published. Nobody here has run it
Create Skill
Turn a skill idea into a complete, discoverable, and shippable skill folder. Treat the skill instructions, metadata, artwork, README wiring, and validation as one deliverable.
Workflow
-
Orient the repository. Read
AGENTS.md, the rootREADME.md, the nearest existing skill with a similar purpose, and any local lessons file. Inspectpackage.json,skills.sh.json, the installer, and the existingassets/skill-cards/andassets/skill-banners/conventions before editing. -
Define the contract. Extract the skill slug, purpose, audience, trigger phrases, inputs, outputs, and acceptance checks from the request. Normalize the slug to lowercase hyphen-case. Preserve the user's terminology, but make the frontmatter description explicit about both the capability and the situations that should trigger it.
-
Choose the smallest useful structure. Create only the resources the skill needs:
skills/<slug>/SKILL.mdfor the core workflow and routing rules.skills/<slug>/agents/openai.yamlfor display metadata and an explicit$<slug>default prompt.skills/<slug>/references/for detailed domain guidance that should load progressively.skills/<slug>/scripts/only for deterministic, repeatable automation.skills/<slug>/assets/only for files the skill will reuse in its outputs.skills/<slug>/README.mdbecause this repository documents every published skill.
Keep
SKILL.mdunder 500 lines. Put deep specifications and long examples in one-level-deep references and link them directly from the skill. -
Write the skill. Use imperative instructions. State the decision points, required tools, file paths, invariants, failure handling, and verification commands another agent cannot safely infer. Prefer a short workflow in
SKILL.mdand conditional links such asreferences/artwork.mdfor specialized work. -
Create the required artwork. In this repository, every new skill needs
assets/skill-cards/<slug>.svgand a linked row in the root README's Pick a skill table. When the collection uses cinematic banners, also createassets/skill-banners/<slug>.webpand use the banner in the root and skill READMEs. Read references/artwork.md before creating either asset. -
Wire every discovery surface. Update all surfaces that explicitly enumerate skills: the root README card table, the skill README,
skills.sh.jsongroupings, and any registry or installer allowlist discovered during orientation. Do not invent a new registry file. Confirm thatpackage.jsonalready includes theskills/andassets/trees; change it only if the package would otherwise omit the new files. -
Validate before handoff. Run the skill validator, parse the SVG, inspect the rendered card and banner, check every new README link, run the repository test suite, and run
git diff --check. Review the diff for stale names, placeholder text, missing metadata, broken relative paths, untracked required assets, and accidental unrelated edits.
Skill content requirements
Include these sections when relevant:
- Scope and trigger behavior: what the skill handles and what it should not handle.
- Inputs and outputs: expected files, links, user decisions, and final artifacts.
- Workflow: the smallest reliable sequence, with explicit branch points.
- Resources: when to read each reference or run each script.
- Validation: concrete commands and visual or semantic acceptance checks.
- Failure handling: what to do when a tool, dependency, reference, or user choice is missing.
Never leave TODO markers, template prose, guessed tool names, or unsupported claims in a published skill. Avoid duplicating long reference material in SKILL.md.
Artwork routing
Use the built-in image-generation tool for a new raster banner. First inspect two or more existing banners and any user-provided reference images. Treat references as style and composition guidance, not as content to copy. Generate a wide cinematic scene with exact title text only when the tool can render it reliably; inspect the result and iterate on one targeted issue at a time. Save the final project asset as WebP and keep the SVG card deterministic and accessible.
For the detailed visual system, prompt template, composition rules, conversion commands, and review checklist, read references/artwork.md.
Validation commands
From the repository root, adapt these commands to the local toolchain:
python3 "${CODEX_HOME:-$HOME/.codex}/skills/.system/skill-creator/scripts/quick_validate.py" skills/<slug>
xmllint --noout assets/skill-cards/<slug>.svg
npm test
git diff --check
If a command is unavailable, use the repository's documented equivalent and report the substitution. Do not call the work complete while required files are untracked or a validation check is red.