waypoint-codex 0.9.5 → 0.9.7
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 +3 -0
- package/package.json +1 -1
- package/templates/.agents/skills/backend-context-interview/agents/openai.yaml +4 -0
- package/templates/.agents/skills/frontend-context-interview/agents/openai.yaml +4 -0
- package/templates/.agents/skills/planning/agents/openai.yaml +4 -0
- package/templates/.agents/skills/work-tracker/agents/openai.yaml +4 -0
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
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Backend Context Interview"
|
|
3
|
+
short_description: "Ask only the backend context questions that materially change implementation or review decisions"
|
|
4
|
+
default_prompt: "Use this skill to inspect persisted project context, identify only the missing backend deployment or reliability facts that materially affect the work, ask a concise high-leverage interview if needed, and persist durable Backend Context into AGENTS.md."
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Frontend Context Interview"
|
|
3
|
+
short_description: "Ask only the frontend context questions that materially change implementation or review decisions"
|
|
4
|
+
default_prompt: "Use this skill to inspect persisted project context, identify only the missing frontend product or deployment facts that materially affect the work, ask a concise high-leverage interview if needed, and persist durable Frontend Context into AGENTS.md."
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Planning"
|
|
3
|
+
short_description: "Interview, explore, and write an implementation-ready plan into the repo"
|
|
4
|
+
default_prompt: "Use this skill to deeply explore the repository, interview for the product and architectural details that materially affect the work, and write an implementation-ready plan into .waypoint/docs/."
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Work Tracker"
|
|
3
|
+
short_description: "Create or maintain a durable tracker for a large workstream"
|
|
4
|
+
default_prompt: "Use this skill to create or update a tracker under .waypoint/track/, keep WORKSPACE.md pointing to it, and move detailed execution state out of chat and into the repo."
|