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 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,6 +1,6 @@
1
1
  {
2
2
  "name": "waypoint-codex",
3
- "version": "0.9.5",
3
+ "version": "0.9.7",
4
4
  "description": "Codex-native repository operating system: scaffolding, docs routing, repo-local skills, doctor, and sync.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -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."