waypoint-codex 0.16.0 → 0.17.0

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/README.md CHANGED
@@ -31,10 +31,18 @@ Or try it without a global install:
31
31
  npx waypoint-codex@latest --help
32
32
  ```
33
33
 
34
+ Inside the repo you want to prepare for Codex:
35
+
36
+ ```bash
37
+ waypoint init
38
+ waypoint doctor
39
+ ```
40
+
34
41
  Keep an existing repo up to date:
35
42
 
36
43
  ```bash
37
44
  waypoint upgrade
45
+ waypoint doctor
38
46
  ```
39
47
 
40
48
  ## What gets better
package/dist/src/core.js CHANGED
@@ -347,6 +347,7 @@ export function initRepository(projectRoot, options) {
347
347
  "docs/README.md",
348
348
  "docs/code-guide.md",
349
349
  "docs/legacy-import",
350
+ ".codex/agents/coding-agent.toml",
350
351
  ".agents/skills/error-audit",
351
352
  ".agents/skills/observability-audit",
352
353
  ".agents/skills/ux-states-audit",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "waypoint-codex",
3
- "version": "0.16.0",
4
- "description": "Codex-native repository operating system: scaffolding, docs routing, repo-local skills, doctor, and sync.",
3
+ "version": "0.17.0",
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",
7
7
  "bin": {
@@ -88,7 +88,7 @@ A good tracker usually includes:
88
88
  - `Decisions`
89
89
  - `Notes`
90
90
 
91
- Use checklists when there are many concrete items. Use timestamped bullets for materially revised state.
91
+ Use `- [ ]` checkboxes when there are many concrete tasks to track. Use status-style entries when the work is better expressed as phase/state updates than as a task list. Use timestamped bullets for materially revised state.
92
92
 
93
93
  ## Step 4: Link It From The Workspace
94
94
 
@@ -100,7 +100,7 @@ The tracker should answer "what exactly is happening across the whole workstream
100
100
  ## Step 5: Maintain It During Execution
101
101
 
102
102
  - Update `last_updated` whenever you materially change the tracker.
103
- - Mark completed items done instead of deleting the record.
103
+ - Keep task lists or status entries current instead of deleting history. Mark completed checkbox items as `- [x]`, and update status-style entries when the phase or state changes.
104
104
  - Add blockers, new tasks, and verification status as the work evolves.
105
105
  - Update the tracker during the work, not only at the end. If a milestone, blocker, review round, or verification result changed reality, the tracker should already reflect it.
106
106
  - When the workstream finishes, set `status: done` or `status: archived`.
@@ -9,10 +9,6 @@ max_threads = 24
9
9
  description = "Read-only background reviewer for post-commit maintainability drift, dead code, duplication, and refactoring opportunities worth fixing."
10
10
  config_file = "agents/code-health-reviewer.toml"
11
11
 
12
- [agents."coding-agent"]
13
- description = "Optional workspace-writing implementation helper for bounded coding tasks that should follow the code guide, verify changes, and hand the slice back cleanly."
14
- config_file = "agents/coding-agent.toml"
15
-
16
12
  [agents."code-reviewer"]
17
13
  description = "Read-only background reviewer for post-commit bugs, regressions, and integration mistakes."
18
14
  config_file = "agents/code-reviewer.toml"
@@ -1,6 +1,5 @@
1
1
  # Waypoint state
2
2
  .codex/config.toml
3
- .codex/agents/coding-agent.toml
4
3
  .codex/agents/code-reviewer.toml
5
4
  .codex/agents/code-health-reviewer.toml
6
5
  .codex/agents/plan-reviewer.toml
@@ -65,11 +65,10 @@ If something important lives only in your head or in the chat transcript, the re
65
65
  - Update `.waypoint/docs/` when durable project knowledge changes, update `.waypoint/plans/` when durable plans change, and refresh each changed routable doc's `last_updated` field.
66
66
  - Rebuild `.waypoint/DOCS_INDEX.md` whenever routable docs change.
67
67
  - Rebuild `.waypoint/TRACKS_INDEX.md` whenever tracker files change.
68
- - Keep most work in the main agent. Use skills, trackers, `coding-agent`, or reviewer agents when they clearly add leverage, not as default ceremony.
68
+ - Keep most work in the main agent. Use skills, trackers, and reviewer agents when they clearly add leverage, not as default ceremony.
69
69
  - Let skills carry their own invocation guidance. The always-on contract should only keep the high-level rule: use repo-local skills deliberately when they help the current task.
70
- - When spawning `coding-agent`, default to `fork_context: false` and choose the model/reasoning pair that fits the slice. Use stronger models when the delegated slice is user-visible, architecturally important, or hard to unwind.
71
- - When spawning reviewer agents or other non-`coding-agent` subagents, explicitly set `fork_context: false` and choose the model/reasoning pair that matches the risk and importance of the second pass.
72
70
  - Use the repo-local skills and reviewer agents deliberately, but do not underuse them on work that is expensive to get wrong.
71
+ - When spawning reviewer agents or other subagents, explicitly set `fork_context: false` and choose the model/reasoning pair that matches the risk and importance of the second pass.
73
72
  - For non-trivial work, strongly prefer reviewer-agent passes between major implementation milestones, before opening or updating a PR, after fixing substantial findings, and before final closeout when the environment allows those agents to run.
74
73
  - If you created a PR earlier in the current session and need to push more work, first confirm that PR is still open. If it is closed, create a fresh branch from `origin/main` and open a fresh PR instead of pushing more commits to the old PR branch.
75
74
  - Treat reviewer agents as one-shot workers: once a reviewer returns findings, read the result and close it. If another review pass is needed later, spawn a fresh reviewer instead of reusing the same thread.
@@ -118,7 +117,6 @@ Do not document every trivial implementation detail. Document the non-obvious, d
118
117
 
119
118
  Waypoint scaffolds these focused specialists by default:
120
119
 
121
- - `coding-agent` for bounded implementation slices the main agent deliberately wants to hand off because parallelism or context preservation will clearly help
122
120
  - `code-reviewer` for correctness and regression review
123
121
  - `code-health-reviewer` for maintainability drift
124
122
  - `plan-reviewer` to challenge non-trivial implementation plans when an independent second pass would materially improve the result
@@ -101,7 +101,7 @@ Working rules:
101
101
  - Update user-scoped `AGENTS.md` when you learn a durable preference, standing rule, or default that should apply across projects and your environment allows you to edit that file
102
102
  - Update the project-scoped repo `AGENTS.md` when you learn durable repo truth, project constraints, or stable project-specific collaboration rules
103
103
  - Update `.waypoint/docs/` when durable project knowledge changes, update `.waypoint/plans/` when a durable plan changes, and refresh `last_updated` on touched routable docs
104
- - Keep most work in the main agent. Use repo-local skills, trackers, reviewer agents, or `coding-agent` when they create clear leverage, not as default ceremony.
104
+ - Keep most work in the main agent. Use repo-local skills, trackers, and reviewer agents when they create clear leverage, not as default ceremony.
105
105
  - Let repo-local skills describe their own triggers. The managed block should keep only the high-level rule: use those tools deliberately when they clearly help the task.
106
106
  - Use reviewer agents proactively at meaningful milestones when the work is non-trivial, risky, user-facing, merge-bound, or otherwise expensive to get wrong.
107
107
  - Strong default moments for reviewer-agent passes are: after a meaningful implementation milestone, before opening or updating a PR, after fixing substantial review findings, and before finally calling the work clear.
@@ -1,49 +0,0 @@
1
- model = "gpt-5.4-mini"
2
- model_reasoning_effort = "high"
3
- sandbox_mode = "workspace-write"
4
- developer_instructions = """
5
- Read these files in order before doing anything else:
6
- 1. .waypoint/SOUL.md
7
- 2. .waypoint/agent-operating-manual.md
8
- 3. .waypoint/WORKSPACE.md
9
- 4. .waypoint/context/MANIFEST.md
10
- 5. every file listed in that manifest
11
- 6. .waypoint/docs/code-guide.md
12
-
13
- After reading them, follow these operating instructions:
14
-
15
- You are the coding agent. You implement a bounded slice that the main agent deliberately handed to you because delegation is useful here.
16
-
17
- You are a single-slice execution worker:
18
- - Finish the specific implementation task you were handed, then stop.
19
- - Do not silently broaden scope.
20
- - If the handoff is missing something essential, inspect the repo first and make the narrowest reasonable assumption instead of bouncing the task back immediately.
21
-
22
- Working rules:
23
- - Read the files you plan to change before editing them.
24
- - Read the docs relevant to the area you touch.
25
- - Follow `.waypoint/docs/code-guide.md` as an active contract, not background reading.
26
- - Prefer direct, explicit code over speculative abstraction.
27
- - Keep changes reviewable and easy to explain.
28
- - When the handed-off slice involves a bug or broken behavior, investigate first and explain the likely cause plainly in your handoff.
29
- - Do not revert user work you did not create.
30
- - Do not make unrelated cleanup changes unless they are required to land the slice safely.
31
-
32
- Implementation expectations:
33
- - Resolve the exact files and entry points involved in the handed-off slice before editing.
34
- - Validate inputs, state changes, and integration points at the boundaries you touch.
35
- - Update tests when behavior changes.
36
- - Update docs or workspace state when the slice changes durable behavior or repo memory.
37
- - Run the most relevant verification you can for the owned slice before handing back.
38
- - If verification fails, keep iterating when you can fix it yourself.
39
-
40
- Output:
41
- Return a concise implementation handoff that includes:
42
- - what you changed
43
- - files changed
44
- - verification run and outcome
45
- - any assumptions, follow-ups, or risks the main agent should know about
46
-
47
- Do not pretend the slice is verified if you did not run verification.
48
- Do not use readiness-disclaimer language as the main point of the handoff. If important known issues remain, say what they are, why they matter, and what needs to happen next.
49
- """