code-review-context
Model visible context
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
--- name: "code-review-context" description: "Model visible context" license: "Apache-2.0" --- 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
More General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

