Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/dmatut7/codex-flow/agents-mdgit clone --depth 1 https://github.com/Dmatut7/codex-flowWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.02079 | $0.02079 |
| Opus 5 | $0.01040 | $0.01040 |
| Sonnet 5 | $0.00416 | $0.00416 |
| Haiku 4.5 | $0.00208 | $0.00208 |
Grade A, and why
codex-flow AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — 给在本仓库工作的 AI agent 的常驻护栏
本仓库是一个与后端无关的动态工作流引擎(Codex 可用)。完整设计是唯一事实源:
DESIGN-codex-dynamic-workflow.md。任何与你记忆/直觉冲突处,以该文档为准。
工作规则(每个 turn 都遵守)
- 只做被明确要求的事。 文档/任务没让改的,不要碰、不要"顺手优化"、不要加功能或抽象。
- 一次一项,改完即验证再继续。 每改完一个任务,跑
npm run typecheck和npm test, 贴输出,确认现有测试仍全过 + 新测试过,再做下一项。做完当前任务就停下等确认,别往下冲。 - 不重构、不重命名、不动无关代码;不加新依赖(deps 只用 package.json 已列的: @openai/codex-sdk、openai、zod、zod-to-json-schema、ajv)。
- 不改任何已通过测试的断言含义来"让它过"。测试红了就修代码,不是改测试。
- 不确定 = 停下来问,绝不猜,也绝不替文档单方面做设计决定。
- 每个独立修复做一个 git commit(如
fix #1: transient retry),便于逐项 review 和回滚。 - 没实现的部分要明确标出并停下问,禁止留 TODO/占位却声称"完成"。
Codex App 自然语言驱动层
当用户在本仓库里说“启动动态工作流”“用动态工作流”“并行跑一下”“帮我拆成 workflow 跑” 这类话时,不要要求用户自己写 workflow 文件或敲命令。你就是缺失的驱动层:
- 先用一句话复述要跑的目标;若输入材料/目标格式缺失,最多问一个必要问题。
- 能直接推断时,在
.codex-flow/generated/下生成临时*.workflow.ts。 这个目录已被.gitignore忽略,用于一次性工作流草稿和 journal。 - workflow 必须导出
default async function workflow(ctx);优先用ctx.parallel/ctx.pipeline/ctx.phase/ctx.agent表达任务,不要写一次性大脚本绕过引擎。 - 默认运行命令:
codex-flow run .codex-flow/generated/<name>.workflow.ts \
--backend codex-sdk \
--journal .codex-flow/generated/<name>.jsonl
- 默认后端是
codex-sdk,使用用户的 Codex/ChatGPT 登录会员权益;不要让用户提供 API key。 只有用户明确要openai-responses或本地/第三方模型时,才讨论对应凭据或适配器。 - 需要写真实仓库文件的节点必须显式传
cwd: process.cwd()和sandbox: "workspace-write";只读/分析节点用sandbox: "read-only"。 - 运行失败时先读错误,只修临时 workflow 或适配器暴露出的真实字段问题;不要改引擎不变量。
- 最终只给用户看结果摘要、失败点、journal 路径和可复跑命令;不要把整份生成脚本大段贴出, 除非用户要求。
绝不可回退的不变量(写错 = 本次失败)
Codex API 事实(已实测核对,见设计文档附录 A):
- TS SDK 线程选项字段是
sandboxMode,不是sandbox。 thread.run/runStreamed的finalResponse是字符串,要自己JSON.parse,SDK 不替你解析。- 最终答案取
item.type === "agent_message"的.text;SDK 里没有assistant_message这个类型(仅 codex-exec 适配器为防 CLI 漂移才两种拼写都收)。 - 自己写的 codex-exec 适配器用稳定公开旗标
--json(不是 SDK 内部的--experimental-json); exec 的进程退出码权威;codex exec resume时全局旗标放在resume之前。 - openai-responses 用
text.format: {type:"json_schema", strict:true}+parallel_tool_calls:false(不是 Chat 的response_format)。
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 100 lines · 2,079 tokens per session scan A 3ef74c53a1d6
codex-flow AGENTS.md is an instructions file published in the GitHub repository Dmatut7/codex-flow (9 stars, last pushed 2mo ago), licensed MIT. It adds 2,079 tokens to every session, about $0.0104 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
AI-Gateway AGENTS.md
Instructions for Azure-Samples/AI-Gateway, covering agents.md, directory structure, labs/, modules/ and shared/.
decapod CLAUDE.md
Instructions for DecapodLabs/decapod, covering claude.md - agent entrypoint, orientation & documentation, mandatory prompt safety gate, project context and quick start.
opengeni AGENTS.md
Instructions for Cloudgeni-ai/opengeni, covering agent / automation notes (opengeni), full local stack, architecture notes, pull-request delivery across moving main and keeping these notes current.
Assistant CLAUDE.md
Instructions for bearlike/Assistant, covering agents guide — mewbo, mandatory: hydrate before touching files, what mewbo is, monorepo layering — read before adding a module and engineering principles.
axonhub AGENTS.md
AGENTS.md instructions for looplj/axonhub, covering agents.md, global rules, configuration, project overview and technology stack.
axonhub CLAUDE.md
Claude Code instructions for looplj/axonhub: @AGENTS.md read and follow its instructions.