Three distilled Codex skillpacks in one repository.
This repo is the lightweight companion to the full Codex Command Center. It keeps the same core philosophy, but packages it into three clean tiers so users can choose the amount of process that fits the work.
| Pack | Complexity | Best For | Main File |
|---|---|---|---|
| Minimal | Low | quick local work, concise answers, safe shell commands | packs/minimal/SKILL.md |
| Developer | Medium | everyday coding, debugging, tests, docs, frontend work | packs/developer/SKILL.md |
| Governed | High | releases, policy, CI, audits, risky changes | packs/governed/SKILL.md |
Start with Developer unless you already know you need something else.
Use Minimal when the task is small and extra process would slow you down.
Use Governed when the task needs evidence, risk control, release discipline, or a clear audit trail.
For a deeper comparison, read Choosing a Pack.
Each pack is self-contained. Copy the pack folder you want into your Codex skills directory, or copy only its SKILL.md into a skill folder with the same name.
Example:
mkdir -p ~/.codex/skills/codex-skill-foundry-developer
cp packs/developer/SKILL.md ~/.codex/skills/codex-skill-foundry-developer/SKILL.mdSee Install Guide for more options.
.
├── AGENTS.md
├── README.md
├── LICENSE
├── VERSION
├── CHANGELOG.md
├── docs/
│ ├── CHOOSING_A_PACK.md
│ ├── INSTALL.md
│ └── PUBLISHING.md
└── packs/
├── minimal/
├── developer/
└── governed/
- One repo, three entry points. Users can compare tiers without hunting through separate projects.
- Each pack stands alone. A pack folder should still make sense if copied by itself.
- Process scales with risk. Minimal stays light, Developer is practical, Governed is strict.
- No hidden runtime dependency. The packs are Markdown skills, not a framework.
- Concise by default. Even the Governed pack should avoid ceremony that does not improve safety or evidence.
Before publishing:
find packs -mindepth 1 -maxdepth 1 -type d -print
find packs -mindepth 2 -maxdepth 2 -name SKILL.md -printFor release prep, use Publishing Checklist.
This project uses the Codex Command Center Attribution-Required Non-Commercial License. See LICENSE.