bitfab-cli 0.2.178 → 0.2.179
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/index.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -30804,6 +30804,7 @@ var tracePlanTreeShape = external_exports.object({
|
|
|
30804
30804
|
|
|
30805
30805
|
// src/claude.ts
|
|
30806
30806
|
import { spawn as spawn5 } from "child_process";
|
|
30807
|
+
import crypto10 from "crypto";
|
|
30807
30808
|
import fs20 from "fs";
|
|
30808
30809
|
import os15 from "os";
|
|
30809
30810
|
import path17 from "path";
|
|
@@ -31026,7 +31027,9 @@ async function runClaudeAnalyzeRepo(captureOverride, limit) {
|
|
|
31026
31027
|
throw new Error(auth.message);
|
|
31027
31028
|
}
|
|
31028
31029
|
const logPath = analyzeRepoLogPath();
|
|
31030
|
+
const agentRunId = crypto10.randomUUID();
|
|
31029
31031
|
const env = { ...process.env };
|
|
31032
|
+
env.BITFAB_AGENT_RUN_ID = agentRunId;
|
|
31030
31033
|
if (captureOverride !== void 0) {
|
|
31031
31034
|
env.BITFAB_CAPTURE_SESSIONS = captureOverride ? "1" : "0";
|
|
31032
31035
|
}
|