Reusable agent skills for local AI coding workflows.
This repository follows the common public skills catalog shape: repository-level
documentation at the root, and one self-contained skill directory per workflow.
Skills are stored under skills/ so they can be discovered by the npx skills
CLI.
| Skill | Purpose |
|---|---|
codex-project-chat-migration |
Recover local Codex project chats after switching between OpenAI, custom, or other model providers by keeping SQLite thread metadata and rollout JSONL metadata in sync. |
Each skill is a self-contained directory:
skills/
└── skill-name/
├── SKILL.md
├── agents/
│ └── openai.yaml
└── scripts/
Keep repository-level documentation at the root. Keep individual skill folders focused on the files Codex needs to discover, load, and run the skill.
List available skills with the open skills CLI:
npx skills add iancaoo/agent-skills --listInstall the Codex project chat migration skill globally for Codex:
npx skills add iancaoo/agent-skills --skill codex-project-chat-migration --agent codex --globalOr copy the skill directory manually:
cp -R skills/codex-project-chat-migration ~/.codex/skills/Then start a new agent task and reference the skill by name, for example:
Use $codex-project-chat-migration to migrate chats from cctq to openai.
If you have the Codex skill creator utilities locally, validate a skill with:
python3 ~/.codex/skills/.system/skill-creator/scripts/quick_validate.py skills/codex-project-chat-migration