waypoint-codex 0.19.0 → 0.19.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/README.md
CHANGED
|
@@ -133,14 +133,14 @@ This helps the agent keep moving until the work is actually ready, not just
|
|
|
133
133
|
Waypoint treats user corrections as product input, not just conversation noise.
|
|
134
134
|
|
|
135
135
|
When the user corrects behavior, rules, or workflow, the agent is pushed to
|
|
136
|
-
update the right durable
|
|
136
|
+
update the right durable layer so the same issue is less likely to happen
|
|
137
137
|
again.
|
|
138
138
|
|
|
139
139
|
That includes:
|
|
140
140
|
|
|
141
|
-
- user-scoped guidance
|
|
142
|
-
- project-scoped guidance
|
|
143
|
-
- repo-local skills
|
|
141
|
+
- user-scoped guidance for true cross-project standing rules
|
|
142
|
+
- project-scoped guidance for durable repo-wide context and always-on rules
|
|
143
|
+
- repo-local skills for workflow-specific or method-specific guidance
|
|
144
144
|
- retrospectives that turn friction from the current conversation into lasting
|
|
145
145
|
improvements
|
|
146
146
|
|
package/package.json
CHANGED
|
@@ -60,8 +60,10 @@ If something important lives only in your head or in the chat transcript, the re
|
|
|
60
60
|
- Keep communication concise by default. Lead with the answer, diagnosis, decision, or next step, and include only the most important supporting detail unless the user asks for more.
|
|
61
61
|
- Honesty means accurate diagnosis, explicit uncertainty, and clear verification limits. It does not mean substituting process language for investigation.
|
|
62
62
|
- Before making meaningful frontend or backend decisions, inspect the available user-scoped and project-scoped `AGENTS.md` guidance. If the task depends on frontend or backend context that is missing from the project-scoped guidance and routed docs, use the corresponding `*-context-interview` skill to fill that gap instead of guessing.
|
|
63
|
-
-
|
|
64
|
-
- Update the
|
|
63
|
+
- Persist corrections and newly learned context in the right durable layer instead of defaulting to `AGENTS.md`.
|
|
64
|
+
- Update the user-scoped `AGENTS.md` only for true cross-project standing preferences or global operating rules.
|
|
65
|
+
- Update the project-scoped repo `AGENTS.md` only for durable repo truth, project constraints, or stable project-wide rules that should always apply in this repo.
|
|
66
|
+
- If the correction is workflow-specific or method-specific, update the relevant skill instead. If no existing skill owns it well, propose creating one instead of stuffing that guidance into `AGENTS.md`.
|
|
65
67
|
- Treat `.waypoint/WORKSPACE.md` as mandatory live execution state, not end-of-task paperwork.
|
|
66
68
|
- Treat `.waypoint/ACTIVE_PLANS.md` as mandatory live plan state for approved work, not a forgotten side file.
|
|
67
69
|
- Update `.waypoint/WORKSPACE.md` during the work whenever the active goal, phase, next step, blocker, verification state, or review state materially changes. In multi-topic sections, prefix new or materially revised bullets with a local timestamp like `[2026-03-06 20:10 PST]`.
|
|
@@ -147,7 +149,7 @@ Deliberate closeout review is available when you want a second pass for ship-rea
|
|
|
147
149
|
- If you use it, follow the skill's loop fully: define the reviewable slice, run the needed reviewers, wait for the outputs, fix meaningful findings, and rerun fresh passes when warranted.
|
|
148
150
|
- Treat reviewer agents as one-shot workers. Once a reviewer returns its findings, read the result and close it.
|
|
149
151
|
- Do not widen the scope casually; keep the second pass anchored to the slice you are actually trying to validate.
|
|
150
|
-
- For non-trivial work, the healthy default is to use reviewer passes at
|
|
152
|
+
- For non-trivial work, the healthy default is to use reviewer passes at phase checkpoints instead of saving all second-pass scrutiny for the very end.
|
|
151
153
|
|
|
152
154
|
## Quality bar
|
|
153
155
|
|
|
@@ -105,8 +105,10 @@ Working rules:
|
|
|
105
105
|
- Update `.waypoint/ACTIVE_PLANS.md` whenever the active approved plan, current phase, phase checklist, checkpoint, or approved scope changes.
|
|
106
106
|
- For multi-step work, keep the workspace and active plan file moving as you move: do not wait until the end of the task to reconstruct what happened.
|
|
107
107
|
- If a tracker exists for the active workstream, update the tracker during the work as well and keep `WORKSPACE.md` pointing at the current tracker state.
|
|
108
|
-
-
|
|
109
|
-
- Update
|
|
108
|
+
- Persist corrections and newly learned context in the right durable layer instead of defaulting to `AGENTS.md`.
|
|
109
|
+
- Update user-scoped `AGENTS.md` only for true cross-project standing preferences or global operating rules.
|
|
110
|
+
- Update the project-scoped repo `AGENTS.md` only for durable repo context or project-wide rules that should always apply in this repo.
|
|
111
|
+
- If the correction is workflow-specific or method-specific, update the relevant repo skill instead. If no existing skill owns it well, propose creating one instead of stuffing that guidance into `AGENTS.md`.
|
|
110
112
|
- Update `.waypoint/docs/` when durable project knowledge changes, update `.waypoint/plans/` when a durable plan changes, update `.waypoint/ACTIVE_PLANS.md` when the active approved plan or current phase changes, and refresh `last_updated` on touched routable docs
|
|
111
113
|
- Keep most work in the main agent. Use repo-local skills, trackers, and reviewer agents when they create clear leverage, not as default ceremony.
|
|
112
114
|
- 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.
|