waypoint-codex 0.9.6 → 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/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