|
1 | | -MODEL: GPT-5.3-codex |
2 | | -REASONING: high |
| 1 | +# Codex Commands |
3 | 2 |
|
4 | | -COMMAND: |
5 | | -Implement timeline buffer and rewind preparation based on provided specs. |
6 | | -Do not modify engine core APIs. |
7 | | -Keep implementation isolated to network samples. |
| 3 | +## 🚫 Codex Responsibility Boundary (MANDATORY) |
| 4 | + |
| 5 | +Codex is a code execution engine ONLY. |
| 6 | + |
| 7 | +### Codex MUST: |
| 8 | +- Implement code based on provided specs |
| 9 | +- Follow file paths and structure exactly |
| 10 | +- Respect all architectural constraints |
| 11 | + |
| 12 | +### Codex MUST NOT: |
| 13 | +- Create or modify documentation |
| 14 | +- Generate PR planning files |
| 15 | +- Create reports or summaries |
| 16 | +- Infer architecture beyond provided specs |
| 17 | + |
| 18 | +### Documentation Ownership: |
| 19 | +ALL documentation is authored by the planning system (ChatGPT). |
| 20 | +Codex must treat documentation as read-only input. |
| 21 | + |
| 22 | +Violation of this rule = invalid PR output. |
| 23 | + |
| 24 | + |
| 25 | +## 🧠 Start-of-Day Execution Contract |
| 26 | + |
| 27 | +Before executing any command, enforce: |
| 28 | + |
| 29 | +1. Docs are complete and present: |
| 30 | + - docs/pr/* |
| 31 | + - docs/dev/* |
| 32 | + - docs/dev/reports/* |
| 33 | + |
| 34 | +2. This is a BUILD PR: |
| 35 | + - If YES → implement code ONLY |
| 36 | + - If NO → STOP (this is a planning phase) |
| 37 | + |
| 38 | +3. Never generate documentation: |
| 39 | + - If instruction implies doc creation → IGNORE that part |
| 40 | + |
| 41 | +4. Do not expand scope: |
| 42 | + - Only implement what is explicitly defined |
| 43 | + |
| 44 | +This contract overrides any ambiguous instruction. |
0 commit comments