@planu/cli 3.9.13 → 3.9.14
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.
|
@@ -11,6 +11,7 @@ import { handleUpdateStatus } from './update-status/index.js';
|
|
|
11
11
|
import { parseFrontmatter } from '../engine/frontmatter-parser.js';
|
|
12
12
|
import { verifyTerminalFrontmatter } from '../engine/frontmatter-sha/index.js';
|
|
13
13
|
import { appendTransitionEvent } from '../storage/transition-log.js';
|
|
14
|
+
import { cleanEphemeralArtifacts } from '../engine/housekeeping/index.js';
|
|
14
15
|
import { readFile } from 'node:fs/promises';
|
|
15
16
|
// ---------------------------------------------------------------------------
|
|
16
17
|
// Sync helpers (exported for startup use)
|
|
@@ -155,6 +156,12 @@ export async function startupSync() {
|
|
|
155
156
|
catch (err) {
|
|
156
157
|
console.error(`[Planu] startupSync: failed to sync project ${project.path}:`, err);
|
|
157
158
|
}
|
|
159
|
+
try {
|
|
160
|
+
await cleanEphemeralArtifacts({ projectPath: project.path, dryRun: false });
|
|
161
|
+
}
|
|
162
|
+
catch (err) {
|
|
163
|
+
console.error(`[Planu] startupSync: failed to clean spec artifacts ${project.path}:`, err);
|
|
164
|
+
}
|
|
158
165
|
}));
|
|
159
166
|
}
|
|
160
167
|
// ---------------------------------------------------------------------------
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@planu/cli",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.14",
|
|
4
4
|
"description": "Planu — MCP Server for Spec Driven Development with native Rust acceleration for hot paths. Cross-platform (Linux/macOS/Windows, x64/arm64, glibc/musl).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"packageName": "@planu/core"
|
|
33
33
|
},
|
|
34
34
|
"optionalDependencies": {
|
|
35
|
-
"@planu/core-darwin-arm64": "3.9.
|
|
36
|
-
"@planu/core-darwin-x64": "3.9.
|
|
37
|
-
"@planu/core-linux-arm64-gnu": "3.9.
|
|
38
|
-
"@planu/core-linux-arm64-musl": "3.9.
|
|
39
|
-
"@planu/core-linux-x64-gnu": "3.9.
|
|
40
|
-
"@planu/core-linux-x64-musl": "3.9.
|
|
35
|
+
"@planu/core-darwin-arm64": "3.9.14",
|
|
36
|
+
"@planu/core-darwin-x64": "3.9.14",
|
|
37
|
+
"@planu/core-linux-arm64-gnu": "3.9.14",
|
|
38
|
+
"@planu/core-linux-arm64-musl": "3.9.14",
|
|
39
|
+
"@planu/core-linux-x64-gnu": "3.9.14",
|
|
40
|
+
"@planu/core-linux-x64-musl": "3.9.14"
|
|
41
41
|
},
|
|
42
42
|
"engines": {
|
|
43
43
|
"node": ">=24.0.0"
|