This repository contains a small working set of agent skills and support assets that follow the agentskills.io style: lean SKILL.md files, progressive disclosure through references/ and assets/, and deterministic helper scripts where guessing would be brittle.
Repository layout:
skills/*primary repository content: each subfolder is a standalone skill with its ownSKILL.md,scripts/,references/, andassets/..github/skills/is the local supporting skills used to create, update, validate, and review skills in this repository.assets/is for internal supporting materials only. Do not treat it as user-facing repository content and do not consider it for README updates.artifacts/*might contain disposable demos for testing skills. Never use this folder for any persistent asset, because it is ignored by Git and may be deleted without warning..github/prompts/contains maintenance prompts for validating skills, remediating skill issues, updating the Prompt API skill, and recreating the demo artifact.
When working in this repo:
- Treat skills as agent-facing control files, not human documentation bundles.
- In README sections named
Included Skills, list only skills that exist under/skills/. - Keep each skill directory flat under
scripts/,references/, andassets/. - Match the skill folder name and the YAML
namefield exactly. - Keep
SKILL.mdlean and procedural; move bulky rules, examples, and templates intoreferences/orassets/. - Use relative paths with forward slashes in skill files.
- Do not add per-skill human-oriented files such as
README.mdorCHANGELOG.md. - When creating or revising a skill, use
.agents/skills/skill-creator/scripts/validate-metadata.pyand.agents/skills/skill-creator/references/checklist.mdas the repository's validation path. - For saved maintenance prompts that gather external information, request sources in this priority order unless the prompt explicitly says otherwise: supplied prompt text, supplied attached documents, then the built-in URLs already defined in the prompt. Higher-priority sources override lower-priority sources.
- Never consider contents of
artifacts/as persistent or canonical. Never add description of it to the README or reference it from any skill. Always treat it as a scratch space that can be deleted without warning.