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. |
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.
skills/
frontend-design/
SKILL.md
README.md
references/
examples/
figma-editable-layouts/
SKILL.md
README.md
agents/
humanize-documentation/
SKILL.md
README.md
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.