waypoint-codex 1.0.0 → 1.0.1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waypoint-codex",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Make Codex better by default with stronger planning, code quality, reviews, tracking, and repo guidance.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -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/DOCS_INDEX.md
10
- 5. .waypoint/context/SNAPSHOT.md
11
- 6. .waypoint/context/RECENT_THREAD.md
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/DOCS_INDEX.md
10
- 5. .waypoint/context/SNAPSHOT.md
11
- 6. .waypoint/context/RECENT_THREAD.md
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/DOCS_INDEX.md
10
- 5. .waypoint/context/SNAPSHOT.md
11
- 6. .waypoint/context/RECENT_THREAD.md
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,17 +13,19 @@ 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/DOCS_INDEX.md` for durable docs routing
17
- 5. `.waypoint/context/SNAPSHOT.md` and `.waypoint/context/RECENT_THREAD.md` for generated volatile context
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/DOCS_INDEX.md`
25
- 6. Read `.waypoint/context/SNAPSHOT.md`
26
- 7. Read `.waypoint/context/RECENT_THREAD.md`
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`
27
29
 
28
30
  Before major implementation or architecture changes, check the repo guidance and routed docs for durable context. Ask only the missing high-leverage questions.
29
31