waypoint-codex 0.9.6 → 0.9.8
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/dist/src/core.js
CHANGED
|
@@ -106,6 +106,8 @@ function scaffoldOptionalCodex(projectRoot) {
|
|
|
106
106
|
export function initRepository(projectRoot, options) {
|
|
107
107
|
ensureDir(projectRoot);
|
|
108
108
|
migrateLegacyRootFiles(projectRoot);
|
|
109
|
+
// Any Waypoint-owned path removed from the scaffold should be added here
|
|
110
|
+
// so `waypoint init` / `waypoint upgrade` can actively prune stale copies.
|
|
109
111
|
for (const deprecatedPath of [
|
|
110
112
|
"docs/README.md",
|
|
111
113
|
"docs/code-guide.md",
|
|
@@ -128,6 +130,7 @@ export function initRepository(projectRoot, options) {
|
|
|
128
130
|
".codex/agents/reviewer.toml",
|
|
129
131
|
".codex/agents/architect.toml",
|
|
130
132
|
".codex/agents/implementer.toml",
|
|
133
|
+
".waypoint/agents",
|
|
131
134
|
".waypoint/automations",
|
|
132
135
|
".waypoint/rules",
|
|
133
136
|
".waypoint/state",
|
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
|
|
@@ -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
|
|