
Code Review Context
- 1 installs
- Updated May 4, 2026
- manaflow-ai/codex
Reviews changes to the Codex model context, enforcing no history rewrites, bounded item sizes, a 10K-token cap, and struct/trait requirements in core/context.
About
A code-review checker for changes to the model-visible context history in Codex. A developer uses it to catch cache-busting edits, unbounded injections, and oversized context fragments.
- Hard 10K-token cap; flags >1K-token items as P0
- All fragments must be structs implementing ContextualUserFragment
Code Review Context by the numbers
- 1 all-time installs (skills.sh)
- Ranked #981 of 1,354 Code Review & Quality skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/manaflow-ai/codex --skill code-review-contextAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | May 4, 2026 |
| Repository | manaflow-ai/codex ↗ |
What it does
Reviews changes to the Codex model context, enforcing no history rewrites, bounded item sizes, a 10K-token cap, and struct/trait requirements in core/context.
Files
Codex maintains a context (history of messages) that is sent to the model in inference requests.
1. No history rewrite - the context must be built up incrementally. 2. Avoid frequent changes to context that cause cache misses. 3. No unbounded items - everything injected in the model context must have a bounded size and a hard cap. 4. No items larger than 10K tokens. 5. Highlight new individual items that can cross >1k tokens as P0. These need an additional manual review. 6. All injected fragments must be defined as structs in core/context and implement ContextualUserFragment trait