Centralized custom Codex skills.
This repository collects reusable project-level skills in one place so they can be:
- versioned as a standalone repo
- reviewed and updated independently
- synced into the global Codex skills directory at
~/.codex/skills
Each skill lives in its own directory and contains at least a SKILL.md file.
ai-skills/
├── README.md
├── .gitignore
├── adapt/
├── animate/
├── arrange/
├── ...
└── typeset/
adapt: responsive design and cross-device adaptationanimate: motion, transitions, and micro-interactionsarrange: layout, spacing, and composition improvementsaudit: UI quality audits across accessibility, performance, and consistencybolder: increase visual impact and personalityclarify: improve UX copy, labels, and interface textcolorize: introduce stronger, more expressive color systemscommit-when-done: finish work and create one local git commit without pushingcritique: UX and design evaluation with actionable feedbackdelight: add personality and memorable detailsdistill: simplify and declutter interfacesextract: extract reusable UI patterns and design tokensfrontend-design: core frontend design workflow and context gatheringharden: improve resilience, edge-case handling, and production readinessiina-snapshot-aliases: install a fixed IINA save/load snapshot workflow on a new machinenormalize: realign UI with design-system standardsonboard: improve onboarding, empty states, and activation flowsoptimize: improve frontend performance and smoothnessoverdrive: push interfaces toward high-ambition executionpolish: final quality pass before shippingquieter: reduce visual aggression while preserving qualityshandianshuo-memory: update Shandianshuo dictionary and memory files with project terms and preferencessync-global-skills: detect installed agents and synchronize the newest J-versioned skills across repo and global skill directoriesteach-impeccable: gather and persist project design contexttypeset: improve typography and readability
Copy a skill into the global custom skills directory:
cp -R ./adapt ~/.codex/skills/adaptSync the whole repo into the global custom skills directory:
for d in ./*; do
[ -d "$d" ] || continue
name="$(basename "$d")"
rm -rf "$HOME/.codex/skills/$name"
cp -R "$d" "$HOME/.codex/skills/$name"
done- System skills under
~/.codex/skills/.systemare not stored here. - This repo is intended for custom reusable skills only.