waypoint-codex 1.0.0 → 1.0.2
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
|
@@ -6,9 +6,10 @@ Read these files in order before doing anything else:
|
|
|
6
6
|
1. AGENTS.md
|
|
7
7
|
2. .waypoint/WORKSPACE.md
|
|
8
8
|
3. .waypoint/ACTIVE_PLANS.md
|
|
9
|
-
4. .waypoint/
|
|
10
|
-
5. .waypoint/
|
|
11
|
-
6. .waypoint/context/
|
|
9
|
+
4. .waypoint/docs/code-guide.md
|
|
10
|
+
5. .waypoint/DOCS_INDEX.md
|
|
11
|
+
6. .waypoint/context/SNAPSHOT.md
|
|
12
|
+
7. .waypoint/context/RECENT_THREAD.md
|
|
12
13
|
|
|
13
14
|
After reading them, follow these operating instructions:
|
|
14
15
|
|
|
@@ -6,9 +6,10 @@ Read these files in order before doing anything else:
|
|
|
6
6
|
1. AGENTS.md
|
|
7
7
|
2. .waypoint/WORKSPACE.md
|
|
8
8
|
3. .waypoint/ACTIVE_PLANS.md
|
|
9
|
-
4. .waypoint/
|
|
10
|
-
5. .waypoint/
|
|
11
|
-
6. .waypoint/context/
|
|
9
|
+
4. .waypoint/docs/code-guide.md
|
|
10
|
+
5. .waypoint/DOCS_INDEX.md
|
|
11
|
+
6. .waypoint/context/SNAPSHOT.md
|
|
12
|
+
7. .waypoint/context/RECENT_THREAD.md
|
|
12
13
|
|
|
13
14
|
After reading them, follow these operating instructions:
|
|
14
15
|
|
|
@@ -6,9 +6,10 @@ Read these files in order before doing anything else:
|
|
|
6
6
|
1. AGENTS.md
|
|
7
7
|
2. .waypoint/WORKSPACE.md
|
|
8
8
|
3. .waypoint/ACTIVE_PLANS.md
|
|
9
|
-
4. .waypoint/
|
|
10
|
-
5. .waypoint/
|
|
11
|
-
6. .waypoint/context/
|
|
9
|
+
4. .waypoint/docs/code-guide.md
|
|
10
|
+
5. .waypoint/DOCS_INDEX.md
|
|
11
|
+
6. .waypoint/context/SNAPSHOT.md
|
|
12
|
+
7. .waypoint/context/RECENT_THREAD.md
|
|
12
13
|
|
|
13
14
|
After reading them, follow these operating instructions:
|
|
14
15
|
|
|
@@ -13,23 +13,29 @@ This repo's default artifact flow is:
|
|
|
13
13
|
1. `AGENTS.md` for the always-on contract
|
|
14
14
|
2. `.waypoint/WORKSPACE.md` for current repo state
|
|
15
15
|
3. `.waypoint/ACTIVE_PLANS.md` for the active plan pointer, execution checklist, blockers, and verification state
|
|
16
|
-
4. `.waypoint/
|
|
17
|
-
5. `.waypoint/
|
|
16
|
+
4. `.waypoint/docs/code-guide.md` for coding standards and engineering defaults
|
|
17
|
+
5. `.waypoint/DOCS_INDEX.md` for durable docs routing
|
|
18
|
+
6. `.waypoint/context/SNAPSHOT.md` and `.waypoint/context/RECENT_THREAD.md` for generated volatile context
|
|
18
19
|
|
|
19
20
|
Run the Waypoint bootstrap only at session start, after compaction, or when the user explicitly asks for it:
|
|
20
21
|
1. Run `node .waypoint/scripts/prepare-context.mjs`
|
|
21
22
|
2. Read `AGENTS.md`
|
|
22
23
|
3. Read `.waypoint/WORKSPACE.md`
|
|
23
24
|
4. Read `.waypoint/ACTIVE_PLANS.md`
|
|
24
|
-
5. Read `.waypoint/
|
|
25
|
-
6. Read `.waypoint/
|
|
26
|
-
7. Read `.waypoint/context/
|
|
25
|
+
5. Read `.waypoint/docs/code-guide.md`
|
|
26
|
+
6. Read `.waypoint/DOCS_INDEX.md`
|
|
27
|
+
7. Read `.waypoint/context/SNAPSHOT.md`
|
|
28
|
+
8. Read `.waypoint/context/RECENT_THREAD.md`
|
|
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.
|
|
27
32
|
|
|
28
33
|
Before major implementation or architecture changes, check the repo guidance and routed docs for durable context. Ask only the missing high-leverage questions.
|
|
29
34
|
|
|
30
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.
|
|
31
36
|
|
|
32
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.
|
|
33
39
|
|
|
34
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.
|
|
35
41
|
|
|
@@ -37,5 +43,6 @@ Use reviewer passes when the work is non-trivial or risky, before PR-ready hando
|
|
|
37
43
|
|
|
38
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.
|
|
39
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.
|
|
40
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.
|
|
41
48
|
<!-- waypoint:end -->
|