fraim 2.0.143 → 2.0.144
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.
|
@@ -278,7 +278,23 @@ function findJobStubPath(projectPath, jobId) {
|
|
|
278
278
|
resolved = candidate; // do not break — later layers override
|
|
279
279
|
}
|
|
280
280
|
}
|
|
281
|
-
|
|
281
|
+
if (resolved)
|
|
282
|
+
return resolved;
|
|
283
|
+
// Fallback: look in the hub's own built-in stubs. This covers first-run
|
|
284
|
+
// jobs (e.g. project-onboarding) that run against a project that hasn't
|
|
285
|
+
// been synced yet, so no local stubs exist under the project directory.
|
|
286
|
+
// In the compiled dist, __dirname is dist/ai-hub/ so this resolves to
|
|
287
|
+
// dist/registry/stubs/jobs/.
|
|
288
|
+
const hubStubsDir = path_1.default.resolve(__dirname, '..', 'registry', 'stubs', 'jobs');
|
|
289
|
+
for (const hostType of ['ai-employee', 'ai-manager']) {
|
|
290
|
+
const hostDir = path_1.default.join(hubStubsDir, hostType);
|
|
291
|
+
for (const category of readSubdirectoryNames(hostDir)) {
|
|
292
|
+
const candidate = path_1.default.join(hostDir, category, `${jobId}.md`);
|
|
293
|
+
if (fs_1.default.existsSync(candidate))
|
|
294
|
+
return candidate;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
return null;
|
|
282
298
|
}
|
|
283
299
|
// Resolve a phase's `onSuccess` edge to the next phase id given the run's
|
|
284
300
|
// discriminant. Returns null when the edge is absent or terminal.
|
|
@@ -508,6 +508,10 @@ class AiHubServer {
|
|
|
508
508
|
phaseHistory: [],
|
|
509
509
|
totals: emptyTotals(),
|
|
510
510
|
lastStatusChangeAt: startTimestamp,
|
|
511
|
+
// Gemini CLI does not emit a session ID in its output stream;
|
|
512
|
+
// pre-seed one so the Send button is enabled and the continue
|
|
513
|
+
// endpoint can proceed. continueRun for Gemini ignores it.
|
|
514
|
+
...(hostId === 'gemini' ? { sessionId: (0, crypto_1.randomUUID)() } : {}),
|
|
511
515
|
};
|
|
512
516
|
this.runRegistry.create(run, {});
|
|
513
517
|
const child = this.hostRuntime.startRun(hostId, projectPath, message, {
|