Skill
4
Agent
All Skills
Search
Tools
中文
|
EN
Explore
Loading...
Home
/
All Skills
/
AI & Machine Learning
/
code-review-context
code-review-context
Original:🇺🇸 English
Translated
Model visible context
11
installs
Source
openai/codex
Added on
2026-05-27
NPX Install
npx skill4agent add openai/codex code-review-context
Tags
Translated version includes tags in frontmatter
model-context
codex-usage
token-management
inference-optimization
context-structs
SKILL.md Content
View Translation Comparison →
Codex maintains a context (history of messages) that is sent to the model in inference requests.
No history rewrite - the context must be built up incrementally.
Avoid frequent changes to context that cause cache misses.
No unbounded items - everything injected in the model context must have a bounded size and a hard cap.
No items larger than 10K tokens.
Highlight new individual items that can cross >1k tokens as P0. These need an additional manual review.
All injected fragments must be defined as structs in
core/context
and implement ContextualUserFragment trait