karajan-code 1.21.0 → 1.21.1
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/package.json +1 -1
- package/src/commands/architect.js +39 -42
- package/src/commands/discover.js +45 -41
- package/src/config.js +1 -0
- package/src/mcp/server-handlers.js +69 -0
- package/src/session-store.js +18 -0
- package/src/utils/run-log.js +4 -2
package/package.json
CHANGED
|
@@ -3,56 +3,53 @@ import { assertAgentsAvailable } from "../agents/availability.js";
|
|
|
3
3
|
import { resolveRole } from "../config.js";
|
|
4
4
|
import { buildArchitectPrompt, parseArchitectOutput } from "../prompts/architect.js";
|
|
5
5
|
|
|
6
|
-
function
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
function formatLayers(layers, lines) {
|
|
7
|
+
lines.push("### Layers");
|
|
8
|
+
for (const l of layers) {
|
|
9
|
+
lines.push(typeof l === "string" ? `- ${l}` : `- **${l.name}**: ${l.responsibility || ""}`);
|
|
10
|
+
}
|
|
11
|
+
lines.push("");
|
|
12
|
+
}
|
|
10
13
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
+
function formatTradeoffs(tradeoffs, lines) {
|
|
15
|
+
lines.push("### Tradeoffs");
|
|
16
|
+
for (const t of tradeoffs) {
|
|
17
|
+
lines.push(`- **${t.decision}**: ${t.rationale || ""}`);
|
|
18
|
+
if (t.alternatives?.length) lines.push(` Alternatives: ${t.alternatives.join(", ")}`);
|
|
19
|
+
}
|
|
20
|
+
lines.push("");
|
|
21
|
+
}
|
|
14
22
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
lines.push("");
|
|
25
|
-
}
|
|
23
|
+
function formatApiContracts(contracts, lines) {
|
|
24
|
+
lines.push("### API Contracts");
|
|
25
|
+
for (const c of contracts) {
|
|
26
|
+
lines.push(`- \`${c.method || "GET"} ${c.endpoint}\``);
|
|
27
|
+
}
|
|
28
|
+
lines.push("");
|
|
29
|
+
}
|
|
26
30
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
31
|
+
function formatArchitecture(arch, lines) {
|
|
32
|
+
if (arch.type) lines.push(`**Type:** ${arch.type}`, "");
|
|
33
|
+
if (arch.layers?.length) formatLayers(arch.layers, lines);
|
|
34
|
+
if (arch.patterns?.length) {
|
|
35
|
+
lines.push("### Patterns");
|
|
36
|
+
for (const p of arch.patterns) lines.push(`- ${p}`);
|
|
37
|
+
lines.push("");
|
|
38
|
+
}
|
|
39
|
+
if (arch.tradeoffs?.length) formatTradeoffs(arch.tradeoffs, lines);
|
|
40
|
+
if (arch.apiContracts?.length) formatApiContracts(arch.apiContracts, lines);
|
|
41
|
+
}
|
|
32
42
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
if (t.alternatives?.length) lines.push(` Alternatives: ${t.alternatives.join(", ")}`);
|
|
38
|
-
}
|
|
39
|
-
lines.push("");
|
|
40
|
-
}
|
|
43
|
+
function formatArchitect(result) {
|
|
44
|
+
const lines = [];
|
|
45
|
+
lines.push(`## Architecture Design`);
|
|
46
|
+
lines.push(`**Verdict:** ${result.verdict || "unknown"}`, "");
|
|
41
47
|
|
|
42
|
-
|
|
43
|
-
lines.push("### API Contracts");
|
|
44
|
-
for (const c of arch.apiContracts) {
|
|
45
|
-
lines.push(`- \`${c.method || "GET"} ${c.endpoint}\``);
|
|
46
|
-
}
|
|
47
|
-
lines.push("");
|
|
48
|
-
}
|
|
49
|
-
}
|
|
48
|
+
if (result.architecture) formatArchitecture(result.architecture, lines);
|
|
50
49
|
|
|
51
50
|
if (result.questions?.length) {
|
|
52
51
|
lines.push("### Clarification Questions");
|
|
53
|
-
for (const q of result.questions) {
|
|
54
|
-
lines.push(`- ${q.question || q}`);
|
|
55
|
-
}
|
|
52
|
+
for (const q of result.questions) lines.push(`- ${q.question || q}`);
|
|
56
53
|
lines.push("");
|
|
57
54
|
}
|
|
58
55
|
|
package/src/commands/discover.js
CHANGED
|
@@ -2,57 +2,61 @@ import { createAgent } from "../agents/index.js";
|
|
|
2
2
|
import { assertAgentsAvailable } from "../agents/availability.js";
|
|
3
3
|
import { resolveRole } from "../config.js";
|
|
4
4
|
import { buildDiscoverPrompt, parseDiscoverOutput } from "../prompts/discover.js";
|
|
5
|
-
import { parseMaybeJsonString } from "../review/parser.js";
|
|
6
5
|
|
|
7
|
-
function
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
lines.push("## Gaps");
|
|
14
|
-
for (const g of result.gaps) {
|
|
15
|
-
const sev = g.severity ? ` [${g.severity}]` : "";
|
|
16
|
-
lines.push(`- ${g.description || g}${sev}`);
|
|
17
|
-
if (g.suggestedQuestion) lines.push(` → ${g.suggestedQuestion}`);
|
|
18
|
-
}
|
|
19
|
-
lines.push("");
|
|
6
|
+
function formatGaps(gaps, lines) {
|
|
7
|
+
lines.push("## Gaps");
|
|
8
|
+
for (const g of gaps) {
|
|
9
|
+
const sev = g.severity ? ` [${g.severity}]` : "";
|
|
10
|
+
lines.push(`- ${g.description || g}${sev}`);
|
|
11
|
+
if (g.suggestedQuestion) lines.push(` → ${g.suggestedQuestion}`);
|
|
20
12
|
}
|
|
13
|
+
lines.push("");
|
|
14
|
+
}
|
|
21
15
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
lines.push("");
|
|
16
|
+
function formatMomTest(questions, lines) {
|
|
17
|
+
lines.push("## Mom Test Questions");
|
|
18
|
+
for (const q of questions) {
|
|
19
|
+
lines.push(`- ${q.question || q}`);
|
|
20
|
+
if (q.rationale) lines.push(` _${q.rationale}_`);
|
|
29
21
|
}
|
|
22
|
+
lines.push("");
|
|
23
|
+
}
|
|
30
24
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
lines.push("");
|
|
25
|
+
function formatWendel(checklist, lines) {
|
|
26
|
+
lines.push("## Wendel Checklist");
|
|
27
|
+
for (const w of checklist) {
|
|
28
|
+
const icon = w.status === "pass" ? "✓" : w.status === "fail" ? "✗" : "?";
|
|
29
|
+
lines.push(`- [${icon}] ${w.condition}: ${w.justification || ""}`);
|
|
38
30
|
}
|
|
31
|
+
lines.push("");
|
|
32
|
+
}
|
|
39
33
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
34
|
+
function formatClassification(classification, lines) {
|
|
35
|
+
lines.push("## Classification");
|
|
36
|
+
lines.push(`- Type: ${classification.type}`);
|
|
37
|
+
if (classification.adoptionRisk) lines.push(`- Adoption risk: ${classification.adoptionRisk}`);
|
|
38
|
+
if (classification.frictionEstimate) lines.push(`- Friction: ${classification.frictionEstimate}`);
|
|
39
|
+
lines.push("");
|
|
40
|
+
}
|
|
47
41
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
}
|
|
53
|
-
lines.push("");
|
|
42
|
+
function formatJtbds(jtbds, lines) {
|
|
43
|
+
lines.push("## Jobs-to-be-Done");
|
|
44
|
+
for (const j of jtbds) {
|
|
45
|
+
lines.push(`- **${j.id || ""}**: ${j.functional || j}`);
|
|
54
46
|
}
|
|
47
|
+
lines.push("");
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function formatDiscover(result, mode) {
|
|
51
|
+
const lines = [];
|
|
52
|
+
lines.push(`## Discovery (${mode})`);
|
|
53
|
+
lines.push(`**Verdict:** ${result.verdict || "unknown"}`, "");
|
|
55
54
|
|
|
55
|
+
if (result.gaps?.length) formatGaps(result.gaps, lines);
|
|
56
|
+
if (result.momTestQuestions?.length) formatMomTest(result.momTestQuestions, lines);
|
|
57
|
+
if (result.wendelChecklist?.length) formatWendel(result.wendelChecklist, lines);
|
|
58
|
+
if (result.classification) formatClassification(result.classification, lines);
|
|
59
|
+
if (result.jtbds?.length) formatJtbds(result.jtbds, lines);
|
|
56
60
|
if (result.summary) lines.push(`---\n${result.summary}`);
|
|
57
61
|
return lines.join("\n");
|
|
58
62
|
}
|
package/src/config.js
CHANGED
|
@@ -171,6 +171,69 @@ export function buildAskQuestion(server) {
|
|
|
171
171
|
};
|
|
172
172
|
}
|
|
173
173
|
|
|
174
|
+
const MAX_AUTO_RESUMES = 2;
|
|
175
|
+
const NON_RECOVERABLE_CATEGORIES = new Set([
|
|
176
|
+
"config_error", "auth_error", "agent_missing", "branch_error", "git_error"
|
|
177
|
+
]);
|
|
178
|
+
|
|
179
|
+
async function attemptAutoResume({ err, config, logger, emitter, askQuestion, runLog }) {
|
|
180
|
+
const { category } = classifyError(err);
|
|
181
|
+
if (NON_RECOVERABLE_CATEGORIES.has(category)) return null;
|
|
182
|
+
|
|
183
|
+
// Find session ID from most recent session file
|
|
184
|
+
const { loadMostRecentSession } = await import("../session-store.js");
|
|
185
|
+
let session;
|
|
186
|
+
try {
|
|
187
|
+
session = await loadMostRecentSession();
|
|
188
|
+
} catch {
|
|
189
|
+
return null;
|
|
190
|
+
}
|
|
191
|
+
if (!session || !["failed", "stopped"].includes(session.status)) return null;
|
|
192
|
+
|
|
193
|
+
const maxRetries = config.session?.max_auto_resumes ?? MAX_AUTO_RESUMES;
|
|
194
|
+
const autoResumeCount = session.auto_resume_count || 0;
|
|
195
|
+
if (autoResumeCount >= maxRetries) {
|
|
196
|
+
runLog.logText(`[resilient] auto-resume limit reached (${maxRetries}), giving up`);
|
|
197
|
+
return null;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
runLog.logText(`[resilient] run failed (${category}), auto-resuming (${autoResumeCount + 1}/${maxRetries})...`);
|
|
201
|
+
emitter.emit("progress", {
|
|
202
|
+
type: "resilient:auto_resume",
|
|
203
|
+
attempt: autoResumeCount + 1,
|
|
204
|
+
maxRetries,
|
|
205
|
+
errorCategory: category,
|
|
206
|
+
sessionId: session.id
|
|
207
|
+
});
|
|
208
|
+
|
|
209
|
+
// Increment counter and save before resuming
|
|
210
|
+
const { saveSession } = await import("../session-store.js");
|
|
211
|
+
session.auto_resume_count = autoResumeCount + 1;
|
|
212
|
+
await saveSession(session);
|
|
213
|
+
|
|
214
|
+
try {
|
|
215
|
+
const result = await resumeFlow({
|
|
216
|
+
sessionId: session.id,
|
|
217
|
+
config,
|
|
218
|
+
logger,
|
|
219
|
+
flags: {},
|
|
220
|
+
emitter,
|
|
221
|
+
askQuestion
|
|
222
|
+
});
|
|
223
|
+
const ok = !result.paused && (result.approved !== false);
|
|
224
|
+
runLog.logText(`[resilient] auto-resume ${ok ? "succeeded" : "finished"} — ok=${ok}`);
|
|
225
|
+
return { ok, ...result, autoResumed: true, autoResumeAttempt: autoResumeCount + 1 };
|
|
226
|
+
} catch (error) {
|
|
227
|
+
// Recursive: try again if still within limits
|
|
228
|
+
const nestedResult = await attemptAutoResume({
|
|
229
|
+
err: error, config, logger, emitter, askQuestion, runLog
|
|
230
|
+
});
|
|
231
|
+
if (nestedResult) return nestedResult;
|
|
232
|
+
runLog.logText(`[resilient] auto-resume failed: ${error.message}`);
|
|
233
|
+
return null;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
174
237
|
export async function handleRunDirect(a, server, extra) {
|
|
175
238
|
const config = await buildConfig(a);
|
|
176
239
|
await assertNotOnBaseBranch(config);
|
|
@@ -209,6 +272,12 @@ export async function handleRunDirect(a, server, extra) {
|
|
|
209
272
|
const result = await runFlow({ task: a.task, config, logger, flags: a, emitter, askQuestion, pgTaskId, pgProject });
|
|
210
273
|
runLog.logText(`[kj_run] finished — ok=${!result.paused && (result.approved !== false)}`);
|
|
211
274
|
return { ok: !result.paused && (result.approved !== false), ...result };
|
|
275
|
+
} catch (err) {
|
|
276
|
+
const autoResumeResult = await attemptAutoResume({
|
|
277
|
+
err, config, logger, emitter, askQuestion, runLog, progressNotifier, extra
|
|
278
|
+
});
|
|
279
|
+
if (autoResumeResult) return autoResumeResult;
|
|
280
|
+
throw err;
|
|
212
281
|
} finally {
|
|
213
282
|
runLog.close();
|
|
214
283
|
}
|
package/src/session-store.js
CHANGED
|
@@ -63,6 +63,24 @@ export async function pauseSession(session, { question, context: pauseContext })
|
|
|
63
63
|
await saveSession(session);
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
+
export async function loadMostRecentSession() {
|
|
67
|
+
let entries;
|
|
68
|
+
try {
|
|
69
|
+
entries = await fs.readdir(SESSION_ROOT, { withFileTypes: true });
|
|
70
|
+
} catch {
|
|
71
|
+
return null;
|
|
72
|
+
}
|
|
73
|
+
const dirs = entries.filter(e => e.isDirectory()).map(e => e.name).sort();
|
|
74
|
+
for (let i = dirs.length - 1; i >= 0; i--) {
|
|
75
|
+
try {
|
|
76
|
+
return await loadSession(dirs[i]);
|
|
77
|
+
} catch {
|
|
78
|
+
continue;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
return null;
|
|
82
|
+
}
|
|
83
|
+
|
|
66
84
|
export async function resumeSessionWithAnswer(sessionId, answer) {
|
|
67
85
|
const session = await loadSession(sessionId);
|
|
68
86
|
if (session.status !== "paused") {
|
package/src/utils/run-log.js
CHANGED
|
@@ -183,13 +183,15 @@ export function readRunLog(projectDir, maxLines = 50) {
|
|
|
183
183
|
const total = lines.length;
|
|
184
184
|
const shown = lines.slice(-maxLines);
|
|
185
185
|
const status = parseRunStatus(lines);
|
|
186
|
+
const MAX_LINE_CHARS = 2000;
|
|
187
|
+
const truncated = shown.map(l => l.length > MAX_LINE_CHARS ? l.slice(0, MAX_LINE_CHARS) + "… [truncated]" : l);
|
|
186
188
|
return {
|
|
187
189
|
ok: true,
|
|
188
190
|
path: logPath,
|
|
189
191
|
totalLines: total,
|
|
190
192
|
status,
|
|
191
|
-
lines:
|
|
192
|
-
summary:
|
|
193
|
+
lines: truncated,
|
|
194
|
+
summary: truncated.join("\n")
|
|
193
195
|
};
|
|
194
196
|
} catch (err) {
|
|
195
197
|
return {
|