waypoint-codex 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -98,6 +98,7 @@ Do not optimize for brevity by dropping relevant material.
|
|
|
98
98
|
If a file is relevant, include it in full.
|
|
99
99
|
If multiple files are relevant, include all of them.
|
|
100
100
|
If prior plans, failed attempts, docs, architecture notes, or state files materially change the answer, include them too.
|
|
101
|
+
Do not trim the bundle down to only the files that seem to directly answer the question. Include files that define constraints, history, surrounding system behavior, rejected approaches, current state, or any other context that materially changes how GPT-5.4-Pro should reason.
|
|
101
102
|
|
|
102
103
|
The bottleneck here is not token thrift inside Codex. The bottleneck is giving GPT-5.4-Pro enough real context to reason well.
|
|
103
104
|
|
|
@@ -139,9 +140,13 @@ This is not a fixed checklist. Include whatever materially changes the quality o
|
|
|
139
140
|
|
|
140
141
|
Create `files/` and copy in the relevant source material.
|
|
141
142
|
|
|
143
|
+
The standard is completeness, not minimality.
|
|
144
|
+
If a file materially affects the question, the answer, the constraints, or the reasoning path, include it even when it is only indirectly relevant.
|
|
145
|
+
|
|
142
146
|
Examples of relevant files:
|
|
143
147
|
|
|
144
148
|
- core implementation files
|
|
149
|
+
- supporting files that materially change the reasoning, even if they do not directly answer the question
|
|
145
150
|
- architecture docs
|
|
146
151
|
- plans
|
|
147
152
|
- active plan or workspace files
|
|
@@ -27,11 +27,15 @@ Run the Waypoint bootstrap only at session start, after compaction, or when the
|
|
|
27
27
|
7. Read `.waypoint/context/SNAPSHOT.md`
|
|
28
28
|
8. Read `.waypoint/context/RECENT_THREAD.md`
|
|
29
29
|
|
|
30
|
+
Investigate the actual code, docs, and routed context before you answer detailed questions or start implementation.
|
|
31
|
+
Prefer visible repo state over hidden assumptions or chat-only memory.
|
|
32
|
+
|
|
30
33
|
Before major implementation or architecture changes, check the repo guidance and routed docs for durable context. Ask only the missing high-leverage questions.
|
|
31
34
|
|
|
32
35
|
Once the user approves a plan or tells you to proceed, that approved scope is the execution contract. Do not silently narrow, defer, or drop approved work unless a real blocker or decision requires discussion.
|
|
33
36
|
|
|
34
37
|
`WORKSPACE.md` is the live state file. `ACTIVE_PLANS.md` is the active execution checklist. Keep them current when state, blockers, or verification materially change.
|
|
38
|
+
When durable behavior changes, update the relevant docs during the work. When live execution state changes, update `WORKSPACE.md` or `ACTIVE_PLANS.md` during the work, not only at the end.
|
|
35
39
|
|
|
36
40
|
Refactor and migration default: use direct replacement, not compatibility scaffolding, unless the user or project docs explicitly require coexistence. Delete obsolete code aggressively and finish the phase back to green. Large destructive edits are allowed when they are the clearest path to the approved target state.
|
|
37
41
|
|
|
@@ -39,5 +43,6 @@ Use reviewer passes when the work is non-trivial or risky, before PR-ready hando
|
|
|
39
43
|
|
|
40
44
|
Keep communication concise. Lead with the answer, diagnosis, decision, or next step. Explain the diagnosis before implementation when the cause, tradeoffs, or solution shape are not already obvious.
|
|
41
45
|
|
|
46
|
+
Verification should match the real risk surface. Inspect real UI for UI work when practical, and run code or inspect real output for backend or script work when practical.
|
|
42
47
|
Before reporting completion, verify the result yourself when reasonably possible, reread `ACTIVE_PLANS.md` and `WORKSPACE.md`, and compare reality against the approved scope. If the work is not actually complete, keep going.
|
|
43
48
|
<!-- waypoint:end -->
|