Skill Author
Use this skill to turn repeated workflows into portable Agent Skills for this repository.
Workflow
- Clarify the recurring workflow, target users, platform constraints, and concrete trigger examples.
- Choose a lowercase hyphen-case name under 64 characters.
- Create or update
skills/<skill-name>/SKILL.md. - Keep
SKILL.mdfocused on trigger behavior and core procedure. - Move detailed documentation into directly linked files under
references/. - Put deterministic helper code in
scripts/and reusable output resources inassets/. - Add
agents/openai.yamlwhen the skill should appear well in Codex/OpenAI skill lists. - Update
registry/skills.yaml. - Run
python3 scripts/validate-skills. - Run
python3 scripts/sync-plugin-skillswhen the skill should be packaged.
Authoring Prompts
Use the repository prompt files when they fit the task:
references/create-skill-prompt.mdfor new skillsreferences/review-skill-prompt.mdfor reviewsreferences/improve-skill-prompt.mdfor iteration after real usereferences/generate-openai-yaml-prompt.mdfor UI metadata
Rules
- Do not put unfinished skills in
skills/; usedrafts/. - Do not copy upstream specification repositories into the root.
- Do not add broad trigger descriptions that capture unrelated requests.
- Do not add scripts that require credentials without documenting safe usage and confirmation points.
Read references/authoring-workflow.md for repository-specific standards when making substantial changes.