waypoint-codex 0.10.2 → 0.10.4
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
|
@@ -161,7 +161,9 @@ The intended workflow is closeout-based: run `code-reviewer` before considering
|
|
|
161
161
|
|
|
162
162
|
For planning work, run `plan-reviewer` before presenting a non-trivial implementation plan to the user and iterate until it has no meaningful review findings left.
|
|
163
163
|
|
|
164
|
-
When the user approves a reviewed plan or explicitly says to proceed, the intended Waypoint behavior is autonomous execution: keep going through implementation, verification, review, and repo-memory updates unless a real blocker or materially risky unresolved decision requires a pause. If reviewers, subagents, CI, or other external work are still running, Waypoint should wait as long as necessary rather than interrupting them for speed.
|
|
164
|
+
When the user approves a reviewed plan or explicitly says to proceed, the intended Waypoint behavior is autonomous execution: keep going through implementation, verification, review, and repo-memory updates unless a real blocker or materially risky unresolved decision requires a pause. If reviewers, subagents, CI, or other external work are still running, Waypoint should wait as long as necessary rather than interrupting them for speed. For PR work, placeholder automated-review states like CodeRabbit's "review in progress" do not count as a completed review.
|
|
165
|
+
|
|
166
|
+
When browser-based reproduction or verification is part of the work, Waypoint should also send screenshots of the relevant UI states so the user can see the evidence directly.
|
|
165
167
|
|
|
166
168
|
## What makes it different
|
|
167
169
|
|
package/package.json
CHANGED
|
@@ -118,6 +118,7 @@ Anti-cheating rules:
|
|
|
118
118
|
- Use `playwright-interactive`.
|
|
119
119
|
- Exercise the actual UI instead of mocking the flow in code.
|
|
120
120
|
- Keep the scope focused on the feature the user asked you to verify.
|
|
121
|
+
- Capture screenshots of the important states you observe so the user can see the evidence directly.
|
|
121
122
|
|
|
122
123
|
## Step 7: Try To Break It On Purpose
|
|
123
124
|
|
|
@@ -151,6 +152,7 @@ As you test, keep expanding the break log with new "What if...?" cases that emer
|
|
|
151
152
|
- Update docs when the verification exposes stale assumptions about how the feature works.
|
|
152
153
|
- Update the break log entry for each attempted action with what happened and whether the feature survived.
|
|
153
154
|
- Require a short observed-result note for every executed item. "Worked" is too weak; capture what actually happened.
|
|
155
|
+
- Save screenshots for the key broken, risky, or fixed states as you go.
|
|
154
156
|
|
|
155
157
|
Do not stop at the first bug.
|
|
156
158
|
|
|
@@ -174,6 +176,7 @@ Summarize:
|
|
|
174
176
|
- the path to the break log markdown file
|
|
175
177
|
- how many attack items were recorded and exercised
|
|
176
178
|
- how coverage was distributed across steps and categories
|
|
179
|
+
- which screenshots you captured and what each one shows
|
|
177
180
|
- what break attempts you tried
|
|
178
181
|
- which issues you found
|
|
179
182
|
- what you fixed
|
|
@@ -12,6 +12,9 @@ Use this skill to drive the PR through review instead of treating review as a on
|
|
|
12
12
|
- Check the PR's current review and CI status.
|
|
13
13
|
- If CI is red or pending, inspect the failed check logs before triaging review comments so you do not chase comment fixes while a separate blocker is breaking the branch.
|
|
14
14
|
- If automated review is still running, wait for it to finish instead of racing it.
|
|
15
|
+
- Treat placeholder messages such as CodeRabbit's "review in progress" as unfinished state, not as a meaningful review result.
|
|
16
|
+
- If an automated reviewer like CodeRabbit is still pending, in progress, or has not reached a green/completed check state yet, keep waiting before you conclude there are no findings.
|
|
17
|
+
- Once the automated reviewer check turns green/completed, reread the review comments and threads because the real findings may only appear after the placeholder state clears.
|
|
15
18
|
- If comments are still arriving, do not prematurely declare the loop complete.
|
|
16
19
|
- For stacked or non-`main` PRs, explicitly compare the PR head against its base branch and make sure later fixes on the base branch have actually been merged or rebased forward. Do not assume a sibling/base PR fix is already present in the dependent PR.
|
|
17
20
|
- Keep waiting as long as required. Do not interrupt or abandon the review loop just because CI, reviewers, or automated checks are taking a long time.
|
|
@@ -42,10 +45,12 @@ Do not leave comments unanswered.
|
|
|
42
45
|
- push follow-up commit(s)
|
|
43
46
|
- after pushing, return to the PR and wait for the next round of CI, automated review, and human review comments before deciding whether the loop is complete
|
|
44
47
|
- if CI or review is still in flight, keep waiting instead of assuming your last push ended the process
|
|
48
|
+
- before declaring the PR clear or ready, make sure the required Waypoint reviewer agents for this slice have actually run and that their real findings, if any, were handled
|
|
45
49
|
|
|
46
50
|
Stay in the loop until no new meaningful issues remain.
|
|
47
51
|
Never cut the loop short by forcing a partial return from still-running review or verification systems.
|
|
48
52
|
The loop is not complete while any meaningful review thread still lacks an inline response.
|
|
53
|
+
The loop is also not complete if required Waypoint reviewer-agent passes for the current slice have not been run yet.
|
|
49
54
|
|
|
50
55
|
## Step 5: Close With A Crisp State Summary
|
|
51
56
|
|
|
@@ -54,6 +54,9 @@ If something important lives only in your head or in the chat transcript, the re
|
|
|
54
54
|
- When waiting on reviewers, subagents, CI, automated review, or external jobs, wait as long as required. There is no fixed timeout where waiting itself becomes the problem.
|
|
55
55
|
- Never interrupt in-flight work just to force a partial result, salvage something quickly, or avoid making the user wait longer.
|
|
56
56
|
- Only stop waiting when the work has actually finished, clearly failed, or the user explicitly redirects the work.
|
|
57
|
+
- When browser work is part of reproduction or verification, send screenshots of the relevant UI states to the user so they can visually confirm what you observed.
|
|
58
|
+
- Capture the states that matter, such as the broken state, the fixed state, or an important intermediate state that explains the issue.
|
|
59
|
+
- If the current environment cannot provide screenshots, state that explicitly instead of silently omitting visual evidence.
|
|
57
60
|
|
|
58
61
|
## Execution autonomy
|
|
59
62
|
|
|
@@ -129,6 +132,7 @@ Use reviewer agents before considering the work complete, not just as a reflex a
|
|
|
129
132
|
6. Do not call the work finished before you read the required reviewer results.
|
|
130
133
|
7. Wait for reviewer outputs even if that requires repeated or long waits. Do not interrupt them just because they are still running.
|
|
131
134
|
8. Fix real findings, rerun the relevant verification, update workspace/docs if needed, and make a follow-up commit when fixes change the repo.
|
|
135
|
+
9. Do not call a PR clear, ready, or done until the required reviewer-agent passes for the current slice have actually run.
|
|
132
136
|
|
|
133
137
|
## Quality bar
|
|
134
138
|
|
|
@@ -68,6 +68,7 @@ Prefer existing persisted context over re-interviewing the user.
|
|
|
68
68
|
|
|
69
69
|
If the user approves a plan or explicitly tells you to proceed, treat that as authorization to execute the work end to end. Do not stop mid-implementation for incremental permission unless a real blocker, hidden-risk decision, or explicit user redirect requires a pause.
|
|
70
70
|
When work is in flight elsewhere — reviewer agents, subagents, CI, automated review, external jobs, or other waiting periods — wait as long as required. There is no fixed waiting limit, and slowness alone is not a reason to interrupt or abandon the work.
|
|
71
|
+
When using a browser to reproduce a bug, verify behavior, or confirm that a fix works, send the user screenshots of the relevant UI states so they can see the evidence directly. If screenshots are not possible in the current environment, say so explicitly.
|
|
71
72
|
|
|
72
73
|
Working rules:
|
|
73
74
|
- Keep `.waypoint/WORKSPACE.md` current as the live execution state, with timestamped new or materially revised entries in multi-topic sections
|