waypoint-codex 0.9.7 → 0.9.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/README.md +2 -0
- package/package.json +1 -1
- package/templates/.agents/skills/backend-context-interview/SKILL.md +12 -2
- package/templates/.agents/skills/frontend-context-interview/SKILL.md +14 -2
- package/templates/.waypoint/agent-operating-manual.md +9 -1
- package/templates/managed-agents-block.md +4 -2
package/README.md
CHANGED
|
@@ -156,6 +156,8 @@ Waypoint scaffolds these reviewer agents by default:
|
|
|
156
156
|
|
|
157
157
|
The intended workflow is closeout-based: run `code-reviewer` before considering any non-trivial implementation slice complete, and run `code-health-reviewer` before considering medium or large changes complete, especially when they add structure, duplicate logic, or introduce new abstractions. If both apply, run them in parallel. A recent self-authored commit is the preferred scope anchor when one cleanly represents the slice, but it is not the only valid trigger.
|
|
158
158
|
|
|
159
|
+
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.
|
|
160
|
+
|
|
159
161
|
## What makes it different
|
|
160
162
|
|
|
161
163
|
Waypoint is not trying to hide everything behind hooks and background machinery.
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: backend-context-interview
|
|
3
|
-
description: Gather and persist durable backend project context when missing or insufficient for implementation, architecture decisions, or ship-readiness review. Use
|
|
3
|
+
description: Gather and persist durable backend project context when missing or insufficient for implementation, architecture decisions, or ship-readiness review. Use this to ask project-level questions about deployment reality, scale, criticality, compatibility, tenant model, security posture, reliability expectations, and other durable backend context that is not clearly documented. This is not a feature-discovery skill.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Backend Context Interview
|
|
7
7
|
|
|
8
|
-
Use this skill when relevant backend context is missing, stale, contradictory, or too weak to support correct implementation or review decisions.
|
|
8
|
+
Use this skill when relevant backend project context is missing, stale, contradictory, or too weak to support correct implementation or review decisions.
|
|
9
9
|
|
|
10
10
|
## Goals
|
|
11
11
|
|
|
@@ -14,6 +14,8 @@ Use this skill when relevant backend context is missing, stale, contradictory, o
|
|
|
14
14
|
3. persist durable context into the project root guidance file
|
|
15
15
|
4. avoid repeated questioning in future tasks
|
|
16
16
|
|
|
17
|
+
This skill is for project-level operating context, not feature requirements gathering.
|
|
18
|
+
|
|
17
19
|
## When to use
|
|
18
20
|
|
|
19
21
|
Use this skill when the current task depends on context such as:
|
|
@@ -29,6 +31,7 @@ Use this skill when the current task depends on context such as:
|
|
|
29
31
|
- infrastructure constraints that materially affect design
|
|
30
32
|
|
|
31
33
|
Do not use this skill when the answer is already clearly present in `AGENTS.md`, architecture docs, runbooks, or the task itself.
|
|
34
|
+
Do not use this skill to ask about feature-specific behavior, UX details, endpoint shapes, acceptance criteria, implementation preferences, or other concrete requirements that belong in planning or normal task clarification.
|
|
32
35
|
|
|
33
36
|
## Workflow
|
|
34
37
|
|
|
@@ -57,6 +60,7 @@ Good triggers:
|
|
|
57
60
|
- tenant model changes authorization and data-isolation design
|
|
58
61
|
|
|
59
62
|
Do not ask broad or low-value questions.
|
|
63
|
+
Do not ask feature-specific product questions.
|
|
60
64
|
|
|
61
65
|
### 3. Ask concise grouped questions
|
|
62
66
|
|
|
@@ -68,3 +72,9 @@ Suggested categories:
|
|
|
68
72
|
- data sensitivity and compliance
|
|
69
73
|
|
|
70
74
|
Do not ask generic product questions that do not affect backend engineering.
|
|
75
|
+
Do ask project-level questions like:
|
|
76
|
+
- whether the product is internal, customer-facing, partner-facing, or public
|
|
77
|
+
- whether there are real users yet or only development/staging use
|
|
78
|
+
- expected traffic, concurrency, or import/job intensity
|
|
79
|
+
- whether backward compatibility is required
|
|
80
|
+
- how costly outages, corruption, or security mistakes would be
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: frontend-context-interview
|
|
3
|
-
description: Gather and persist durable frontend project context when missing or insufficient for implementation or review work. Use
|
|
3
|
+
description: Gather and persist durable frontend project context when missing or insufficient for implementation or review work. Use this to ask project-level questions about audience, deployment surface, browser/device expectations, accessibility, SEO, localization, analytics obligations, and other durable frontend context that is not clearly documented. This is not a feature-discovery skill.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Frontend Context Interview
|
|
7
7
|
|
|
8
|
-
Use this skill when relevant frontend context is missing, stale, contradictory, or too weak to support correct implementation or review decisions.
|
|
8
|
+
Use this skill when relevant frontend project context is missing, stale, contradictory, or too weak to support correct implementation or review decisions.
|
|
9
9
|
|
|
10
10
|
## Goals
|
|
11
11
|
|
|
@@ -14,6 +14,8 @@ Use this skill when relevant frontend context is missing, stale, contradictory,
|
|
|
14
14
|
3. persist durable context into the project root guidance file
|
|
15
15
|
4. avoid repeated questioning in future tasks
|
|
16
16
|
|
|
17
|
+
This skill is for project-level operating context, not feature requirements gathering.
|
|
18
|
+
|
|
17
19
|
## When to use
|
|
18
20
|
|
|
19
21
|
Use this skill when the current task depends on context such as:
|
|
@@ -29,6 +31,7 @@ Use this skill when the current task depends on context such as:
|
|
|
29
31
|
- security or privacy expectations that change frontend behavior
|
|
30
32
|
|
|
31
33
|
Do not use this skill when the answer is already clearly present in `AGENTS.md`, product docs, or the task itself.
|
|
34
|
+
Do not use this skill to ask about feature-specific UX, copy, flows, acceptance criteria, implementation preferences, or detailed product behavior that belongs in planning or normal task clarification.
|
|
32
35
|
|
|
33
36
|
## Workflow
|
|
34
37
|
|
|
@@ -58,3 +61,12 @@ Good triggers:
|
|
|
58
61
|
|
|
59
62
|
Do not ask broad or low-value questions.
|
|
60
63
|
Do not ask generic discovery questions that do not affect implementation.
|
|
64
|
+
Do not ask feature-specific product questions.
|
|
65
|
+
|
|
66
|
+
Good project-level question areas include:
|
|
67
|
+
- whether the product is internal, customer-facing, partner-facing, or public marketing
|
|
68
|
+
- whether there are real users yet or only development/staging use
|
|
69
|
+
- expected device mix and browser support
|
|
70
|
+
- accessibility expectations or compliance targets
|
|
71
|
+
- whether SEO matters for any routes
|
|
72
|
+
- whether backward compatibility in user workflows matters
|
|
@@ -82,7 +82,15 @@ Waypoint scaffolds these focused second-pass specialists by default:
|
|
|
82
82
|
|
|
83
83
|
- `code-reviewer` for correctness and regression review
|
|
84
84
|
- `code-health-reviewer` for maintainability drift
|
|
85
|
-
- `plan-reviewer` to challenge
|
|
85
|
+
- `plan-reviewer` to challenge non-trivial implementation plans before they are shown to the user
|
|
86
|
+
|
|
87
|
+
## Plan Review
|
|
88
|
+
|
|
89
|
+
Run `plan-reviewer` before presenting a non-trivial implementation plan to the user.
|
|
90
|
+
|
|
91
|
+
- Use it when the plan includes meaningful design choices, multiple work phases, migrations, or non-obvious tradeoffs.
|
|
92
|
+
- Skip it for tiny obvious plans or when no plan will be presented.
|
|
93
|
+
- Read the reviewer result, strengthen the plan, and rerun `plan-reviewer` until there are no meaningful issues left before showing the plan to the user.
|
|
86
94
|
|
|
87
95
|
## Review Loop
|
|
88
96
|
|
|
@@ -52,9 +52,10 @@ Examples of durable context that can materially change the correct approach:
|
|
|
52
52
|
|
|
53
53
|
If relevant context is missing, empty, stale, or insufficient and that gap would materially change the correct approach:
|
|
54
54
|
- do not guess silently
|
|
55
|
-
- use `frontend-context-interview` when frontend
|
|
56
|
-
- use `backend-context-interview` when backend
|
|
55
|
+
- use `frontend-context-interview` when project-level frontend context is missing
|
|
56
|
+
- use `backend-context-interview` when project-level backend context is missing
|
|
57
57
|
- ask only the missing high-leverage questions
|
|
58
|
+
- ask about the project, deployment reality, and operating constraints rather than the concrete feature
|
|
58
59
|
- persist only durable context back into the project guidance file
|
|
59
60
|
- do not write transient task-specific details into context sections
|
|
60
61
|
|
|
@@ -74,6 +75,7 @@ Working rules:
|
|
|
74
75
|
- Use `docs-sync` when the docs may be stale or a change altered shipped behavior, contracts, routes, or commands
|
|
75
76
|
- Use `code-guide-audit` for a targeted coding-guide compliance pass on a specific feature, file set, or change slice
|
|
76
77
|
- Do not invoke `break-it-qa`, `frontend-ship-audit`, or `backend-ship-audit` yourself from the managed AGENTS block workflow; they are user-facing skills for explicit human-requested QA or ship-readiness audits, not default agent steps
|
|
78
|
+
- Before presenting a non-trivial implementation plan to the user, run `plan-reviewer` and iterate on the plan until it has no meaningful review findings left
|
|
77
79
|
- Before considering a non-trivial implementation slice complete, run `code-reviewer`; use a recent self-authored commit as the default scope anchor when one cleanly represents that slice
|
|
78
80
|
- Before considering medium or large changes complete, run `code-health-reviewer`, especially when they add structure, duplicate logic, or introduce new abstractions
|
|
79
81
|
- Before pushing or opening/updating a PR for substantial work, use `pre-pr-hygiene`
|