sisyphi 1.1.9 → 1.1.11
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/{chunk-REUQ4B45.js → chunk-GSXF3TCZ.js} +6 -2
- package/dist/{chunk-REUQ4B45.js.map → chunk-GSXF3TCZ.js.map} +1 -1
- package/dist/{chunk-M7LZ2ZHD.js → chunk-HQZOAX6D.js} +2 -2
- package/dist/{chunk-Z32YVDMY.js → chunk-ZSIYQB45.js} +2 -2
- package/dist/cli.js +7 -26
- package/dist/cli.js.map +1 -1
- package/dist/daemon.js +6 -3
- package/dist/daemon.js.map +1 -1
- package/dist/{paths-IJXOAN4E.js → paths-3EL2SCHI.js} +6 -4
- package/dist/templates/CLAUDE.md +2 -0
- package/dist/templates/orchestrator-base.md +15 -5
- package/dist/templates/orchestrator-completion.md +86 -0
- package/dist/templates/orchestrator-validation.md +8 -2
- package/dist/tui.js +1285 -265
- package/dist/tui.js.map +1 -1
- package/package.json +4 -1
- package/templates/CLAUDE.md +2 -0
- package/templates/orchestrator-base.md +15 -5
- package/templates/orchestrator-completion.md +86 -0
- package/templates/orchestrator-validation.md +8 -2
- /package/dist/{chunk-M7LZ2ZHD.js.map → chunk-HQZOAX6D.js.map} +0 -0
- /package/dist/{chunk-Z32YVDMY.js.map → chunk-ZSIYQB45.js.map} +0 -0
- /package/dist/{paths-IJXOAN4E.js.map → paths-3EL2SCHI.js.map} +0 -0
package/dist/daemon.js
CHANGED
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
execEnv,
|
|
6
6
|
execSafe,
|
|
7
7
|
loadConfig
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-ZSIYQB45.js";
|
|
9
9
|
import {
|
|
10
10
|
shellQuote
|
|
11
11
|
} from "./chunk-6G226ZK7.js";
|
|
@@ -31,7 +31,7 @@ import {
|
|
|
31
31
|
socketPath,
|
|
32
32
|
statePath,
|
|
33
33
|
strategyPath
|
|
34
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-GSXF3TCZ.js";
|
|
35
35
|
|
|
36
36
|
// src/daemon/index.ts
|
|
37
37
|
import { mkdirSync as mkdirSync4, readFileSync as readFileSync7, writeFileSync as writeFileSync7, unlinkSync as unlinkSync3, existsSync as existsSync8 } from "fs";
|
|
@@ -1345,6 +1345,9 @@ function loadOrchestratorPrompt(cwd, sessionId, mode) {
|
|
|
1345
1345
|
} else if (mode === "validation") {
|
|
1346
1346
|
const validationPath = resolve3(import.meta.dirname, "../templates/orchestrator-validation.md");
|
|
1347
1347
|
modePrompt = readFileSync4(validationPath, "utf-8");
|
|
1348
|
+
} else if (mode === "completion") {
|
|
1349
|
+
const completionPath = resolve3(import.meta.dirname, "../templates/orchestrator-completion.md");
|
|
1350
|
+
modePrompt = readFileSync4(completionPath, "utf-8");
|
|
1348
1351
|
} else {
|
|
1349
1352
|
const planningPath = resolve3(import.meta.dirname, "../templates/orchestrator-planning.md");
|
|
1350
1353
|
modePrompt = readFileSync4(planningPath, "utf-8");
|
|
@@ -2252,7 +2255,7 @@ async function handleRequest(req) {
|
|
|
2252
2255
|
sessionTrackingMap.delete(req.sessionId);
|
|
2253
2256
|
persistSessionRegistry();
|
|
2254
2257
|
}
|
|
2255
|
-
const { sessionDir: sessionDir2 } = await import("./paths-
|
|
2258
|
+
const { sessionDir: sessionDir2 } = await import("./paths-3EL2SCHI.js");
|
|
2256
2259
|
rmSync3(sessionDir2(req.cwd, req.sessionId), { recursive: true, force: true });
|
|
2257
2260
|
return { ok: true };
|
|
2258
2261
|
}
|