From 036acbd358f4f27aef150ec82089b5b9d2278f04 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 31 May 2026 09:54:48 -0400 Subject: [PATCH] docs: require codex source citations --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index e32fec085925..333718cb5686 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -10,7 +10,7 @@ Skills own workflows; root owns hard policy and routing. - Docs/user-visible work: `pnpm docs:list`, then read relevant docs only. - Fix/triage answers need source, tests, current/shipped behavior, and dependency contract proof. - Reviews/answers: high confidence required. Default to exhaustive relevant codebase search/read, including owners, callers, siblings, tests, docs, and upstream/dependency contracts before verdict. Diff-only review is insufficient. -- Dependency-touching work: direct dependency inspection is mandatory when feasible; do not rely on assumptions, wrappers, or memory. Most dependencies are OSS, so read their source/docs/types. For any Codex-related code or protocol behavior, read sibling `../codex`; clone `https://github.com/openai/codex.git` there if missing, then verify against its source before verdict. +- Dependency-touching work: direct dependency inspection is mandatory when feasible; do not rely on assumptions, wrappers, or memory. Most dependencies are OSS, so read their source/docs/types. Codex-related work: before any verdict, comment, approval, merge recommendation, or `proof sufficient` claim, inspect sibling `../codex` source for the exact protocol/runtime behavior involved; if missing, clone `https://github.com/openai/codex.git` there first. Do not rely on PR text, OpenClaw wrappers, generated schemas, memory, or prior bot reviews as a substitute. Cite Codex files/lines checked in final/review/comment. - Dependency-backed behavior: read upstream docs/source/types first. No API/default/error/timing guesses. - Live-verify when feasible. Never print secrets. - Missing deps: `pnpm install`, retry once, then report first actionable error.