Skip to content

BelongToMachine/ai-skills

Repository files navigation

AI Skills

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

Structure

Each skill lives in its own directory and contains at least a SKILL.md file.

ai-skills/
├── README.md
├── .gitignore
├── adapt/
├── animate/
├── arrange/
├── ...
└── typeset/

Included Skills

  • adapt: responsive design and cross-device adaptation
  • animate: motion, transitions, and micro-interactions
  • arrange: layout, spacing, and composition improvements
  • audit: UI quality audits across accessibility, performance, and consistency
  • bolder: increase visual impact and personality
  • clarify: improve UX copy, labels, and interface text
  • colorize: introduce stronger, more expressive color systems
  • commit-when-done: finish work and create one local git commit without pushing
  • critique: UX and design evaluation with actionable feedback
  • delight: add personality and memorable details
  • distill: simplify and declutter interfaces
  • extract: extract reusable UI patterns and design tokens
  • frontend-design: core frontend design workflow and context gathering
  • harden: improve resilience, edge-case handling, and production readiness
  • iina-snapshot-aliases: install a fixed IINA save/load snapshot workflow on a new machine
  • normalize: realign UI with design-system standards
  • onboard: improve onboarding, empty states, and activation flows
  • optimize: improve frontend performance and smoothness
  • overdrive: push interfaces toward high-ambition execution
  • polish: final quality pass before shipping
  • quieter: reduce visual aggression while preserving quality
  • shandianshuo-memory: update Shandianshuo dictionary and memory files with project terms and preferences
  • sync-global-skills: detect installed agents and synchronize the newest J-versioned skills across repo and global skill directories
  • teach-impeccable: gather and persist project design context
  • typeset: improve typography and readability

Sync To Global Codex Skills

Copy a skill into the global custom skills directory:

cp -R ./adapt ~/.codex/skills/adapt

Sync 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

Notes

  • System skills under ~/.codex/skills/.system are not stored here.
  • This repo is intended for custom reusable skills only.

About

Centralized custom Codex skills repository

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors