Reusable agent skills for Codex.
Each skill lives in its own folder under skills/, with a required SKILL.md and a small README.md. Skills are meant to be copied, installed, or packaged independently.
| Skill | Description |
|---|---|
frontend-design |
Frontend UI design and implementation guidance for polished, production-ready interfaces. |
figma-editable-layouts |
Guidance for creating editable, designer-friendly Figma layouts with auto layout and clean layer structure. |
humanize-documentation |
Guidance for rewriting technical documentation so it feels natural, precise, maintainer-written, and useful. |
svg-design |
Guidance and lightweight tooling for creating, converting, and debugging SVG mockups without overlap, clipping, or scaling issues. |
write-animation-prompts |
Guidance for writing precise animation prompts with motion vocabulary, timing, sequencing, and constraints. |
write-codex-goal |
Guidance for preparing durable Codex /goal instruction files and slash prompts. |
The same list is tracked in registry.json so scripts and humans can discover the available skills from one place.
Use this skill when a rough motion idea needs to become a precise animation prompt for AI video tools, UI microinteractions, product demos, animated storyboards, or kinetic typography.
It includes:
- A prompt-writing workflow for translating vague direction into subject, motion job, timing, easing, camera or viewport, and constraints.
- Example rewrites that show how to move from broad requests like "make it premium" to specific animation direction.
- A
references/motion-vocabulary.mdglossary for entrances, exits, sequencing, transforms, state transitions, interaction feedback, easing, physics, ambient loops, camera language, performance, and reduced motion.
skills/
frontend-design/
SKILL.md
README.md
references/
examples/
figma-editable-layouts/
SKILL.md
README.md
agents/
humanize-documentation/
SKILL.md
README.md
svg-design/
SKILL.md
README.md
agents/
references/
scripts/
write-animation-prompts/
SKILL.md
README.md
agents/
references/
write-codex-goal/
SKILL.md
README.md
references/Optional folders such as references/, examples/, assets/, scripts/, and agents/ belong inside the skill folder that uses them.
Clone the repository:
git clone https://github.com/atkntepe/skillbox.git
cd skillboxCopy the skill you want into your user-level Codex skills directory:
mkdir -p ~/.codex/skills
cp -R skills/frontend-design ~/.codex/skills/frontend-designReplace frontend-design with any skill folder name from the table above. Restart Codex after installing a new skill so it can load the updated skill list.
npm run validateValidation checks that every folder in skills/ has SKILL.md, has README.md, has required frontmatter, uses a frontmatter name that matches the folder name, and is listed in registry.json.
npm run packagePackaging writes one zip file per skill to dist/ and uses the system zip command.
To run both validation and packaging:
npm run build- Create
skills/<skill-name>/. - Add
SKILL.mdwithnameanddescriptionfrontmatter. - Add a short
README.mdwith use cases and install instructions. - Add the skill to
registry.json. - Run
npm run validate.