waypoint-codex 0.1.8 → 0.1.9
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
|
@@ -15,6 +15,10 @@ At the start of every session:
|
|
|
15
15
|
|
|
16
16
|
Do not skip this sequence.
|
|
17
17
|
|
|
18
|
+
- Do not read code, search the repo, inspect runtime behavior, or start planning before the sequence is complete.
|
|
19
|
+
- Earlier chat context or partial memory from the current session does not count as a substitute.
|
|
20
|
+
- If you are unsure whether the bootstrap already ran, rerun it instead of guessing.
|
|
21
|
+
|
|
18
22
|
## Repository memory model
|
|
19
23
|
|
|
20
24
|
The repository should contain the context the next agent needs.
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
|
|
4
4
|
This repository uses Waypoint as its Codex operating system.
|
|
5
5
|
|
|
6
|
+
Stop here if the bootstrap has not been run yet.
|
|
7
|
+
|
|
6
8
|
Before doing substantial work:
|
|
7
9
|
1. Run `node .waypoint/scripts/prepare-context.mjs`
|
|
8
10
|
2. Read `.waypoint/SOUL.md`
|
|
@@ -11,7 +13,12 @@ Before doing substantial work:
|
|
|
11
13
|
5. Read `.waypoint/context/MANIFEST.md`
|
|
12
14
|
6. Read every file listed in the manifest
|
|
13
15
|
|
|
14
|
-
This is mandatory, not optional.
|
|
16
|
+
This is mandatory, not optional.
|
|
17
|
+
|
|
18
|
+
- Do not inspect code, run searches, read docs, draft plans, or analyze behavior before this bootstrap is complete.
|
|
19
|
+
- Earlier chat context or earlier work in the session does not replace the bootstrap.
|
|
20
|
+
- If you are not sure whether the bootstrap already ran, run it again. It is cheap and safe.
|
|
21
|
+
- Do not skip the context refresh or skip files in the manifest.
|
|
15
22
|
|
|
16
23
|
Working rules:
|
|
17
24
|
- Keep `.waypoint/WORKSPACE.md` current as the live execution state
|