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/daemon.js CHANGED
@@ -5,7 +5,7 @@ import {
5
5
  execEnv,
6
6
  execSafe,
7
7
  loadConfig
8
- } from "./chunk-Z32YVDMY.js";
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-REUQ4B45.js";
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-IJXOAN4E.js");
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
  }