@integrity-labs/agt-cli 0.28.337 → 0.28.338
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/bin/agt.js +4 -4
- package/dist/{chunk-J2WYEOBH.js → chunk-O4V3TMUI.js} +2 -1
- package/dist/{chunk-N7XPDFCW.js → chunk-S2JJ532Q.js} +16 -5
- package/dist/{chunk-N7XPDFCW.js.map → chunk-S2JJ532Q.js.map} +1 -1
- package/dist/{claude-pair-runtime-T7EFAWS5.js → claude-pair-runtime-XPWI2M2Z.js} +2 -2
- package/dist/lib/manager-worker.js +10 -10
- package/dist/{persistent-session-ENQXJNBJ.js → persistent-session-G7WNWWJZ.js} +2 -2
- package/dist/{responsiveness-probe-46XFHCPY.js → responsiveness-probe-X735BG2Q.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-J2WYEOBH.js.map → chunk-O4V3TMUI.js.map} +0 -0
- /package/dist/{claude-pair-runtime-T7EFAWS5.js.map → claude-pair-runtime-XPWI2M2Z.js.map} +0 -0
- /package/dist/{persistent-session-ENQXJNBJ.js.map → persistent-session-G7WNWWJZ.js.map} +0 -0
- /package/dist/{responsiveness-probe-46XFHCPY.js.map → responsiveness-probe-X735BG2Q.js.map} +0 -0
|
@@ -100,7 +100,7 @@ async function spawnPairSession(session) {
|
|
|
100
100
|
return { ok: true };
|
|
101
101
|
} catch {
|
|
102
102
|
}
|
|
103
|
-
const { resolveClaudeBinary } = await import("./persistent-session-
|
|
103
|
+
const { resolveClaudeBinary } = await import("./persistent-session-G7WNWWJZ.js");
|
|
104
104
|
const claudeBin = resolveClaudeBinary();
|
|
105
105
|
const pairEnv = {
|
|
106
106
|
...process.env,
|
|
@@ -373,4 +373,4 @@ export {
|
|
|
373
373
|
startClaudePair,
|
|
374
374
|
submitClaudePairCode
|
|
375
375
|
};
|
|
376
|
-
//# sourceMappingURL=claude-pair-runtime-
|
|
376
|
+
//# sourceMappingURL=claude-pair-runtime-XPWI2M2Z.js.map
|
|
@@ -45,7 +45,7 @@ import {
|
|
|
45
45
|
requireHost,
|
|
46
46
|
safeWriteJsonAtomic,
|
|
47
47
|
setConfigHash
|
|
48
|
-
} from "../chunk-
|
|
48
|
+
} from "../chunk-S2JJ532Q.js";
|
|
49
49
|
import {
|
|
50
50
|
getProjectDir as getProjectDir2,
|
|
51
51
|
getReadyTasks,
|
|
@@ -134,7 +134,7 @@ import {
|
|
|
134
134
|
takeZombieDetection,
|
|
135
135
|
transcriptActivityAgeSeconds,
|
|
136
136
|
writeEgressAllowlist
|
|
137
|
-
} from "../chunk-
|
|
137
|
+
} from "../chunk-O4V3TMUI.js";
|
|
138
138
|
import {
|
|
139
139
|
reapOrphanChannelMcps
|
|
140
140
|
} from "../chunk-XWVM4KPK.js";
|
|
@@ -8388,7 +8388,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
|
|
|
8388
8388
|
var lastVersionCheckAt = 0;
|
|
8389
8389
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
8390
8390
|
var lastResponsivenessProbeAt = 0;
|
|
8391
|
-
var agtCliVersion = true ? "0.28.
|
|
8391
|
+
var agtCliVersion = true ? "0.28.338" : "dev";
|
|
8392
8392
|
function resolveBrewPath(execFileSync2) {
|
|
8393
8393
|
try {
|
|
8394
8394
|
const out = execFileSync2("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -9343,7 +9343,7 @@ function flushRestartedAgentDiagnostics(hostId, codeNames) {
|
|
|
9343
9343
|
if (codeNames.length === 0) return;
|
|
9344
9344
|
void (async () => {
|
|
9345
9345
|
try {
|
|
9346
|
-
const { collectDiagnostics } = await import("../persistent-session-
|
|
9346
|
+
const { collectDiagnostics } = await import("../persistent-session-G7WNWWJZ.js");
|
|
9347
9347
|
await api.post("/host/heartbeat", {
|
|
9348
9348
|
host_id: hostId,
|
|
9349
9349
|
agent_diagnostics: collectDiagnostics(codeNames)
|
|
@@ -9442,7 +9442,7 @@ async function pollCycle() {
|
|
|
9442
9442
|
}
|
|
9443
9443
|
try {
|
|
9444
9444
|
const { detectHostSecurity } = await import("../host-security-6PDFG7F5.js");
|
|
9445
|
-
const { collectDiagnostics } = await import("../persistent-session-
|
|
9445
|
+
const { collectDiagnostics } = await import("../persistent-session-G7WNWWJZ.js");
|
|
9446
9446
|
const diagCodeNames = [...agentState.persistentSessionAgents];
|
|
9447
9447
|
const agentDiagnostics = diagCodeNames.length > 0 ? collectDiagnostics(diagCodeNames) : void 0;
|
|
9448
9448
|
let tailscaleHostname;
|
|
@@ -9591,7 +9591,7 @@ async function pollCycle() {
|
|
|
9591
9591
|
const {
|
|
9592
9592
|
collectResponsivenessProbes,
|
|
9593
9593
|
getResponsivenessIntervalMs
|
|
9594
|
-
} = await import("../responsiveness-probe-
|
|
9594
|
+
} = await import("../responsiveness-probe-X735BG2Q.js");
|
|
9595
9595
|
const probeIntervalMs = getResponsivenessIntervalMs();
|
|
9596
9596
|
if (now - lastResponsivenessProbeAt > probeIntervalMs) {
|
|
9597
9597
|
const probeCodeNames = [...agentState.persistentSessionAgents];
|
|
@@ -9623,7 +9623,7 @@ async function pollCycle() {
|
|
|
9623
9623
|
collectResponsivenessProbes,
|
|
9624
9624
|
livePendingInboundOldestAgeSeconds,
|
|
9625
9625
|
parkPendingInbound
|
|
9626
|
-
} = await import("../responsiveness-probe-
|
|
9626
|
+
} = await import("../responsiveness-probe-X735BG2Q.js");
|
|
9627
9627
|
const { getProjectDir: wedgeProjectDir } = await import("../claude-scheduler-FATCLHDM.js");
|
|
9628
9628
|
const wedgeNow = /* @__PURE__ */ new Date();
|
|
9629
9629
|
const liveAgents = agentState.persistentSessionAgents;
|
|
@@ -12721,7 +12721,7 @@ async function handleRestartDoorbell(agentId, requestedAt, restartReason) {
|
|
|
12721
12721
|
void api.post("/host/restart-ack", { host_id: hostId, agent_id: agentId, restart_requested_at: requestedAt }).catch((err) => log(`[restart-lane] ack failed for '${codeName}': ${err.message}`));
|
|
12722
12722
|
void (async () => {
|
|
12723
12723
|
try {
|
|
12724
|
-
const { collectDiagnostics } = await import("../persistent-session-
|
|
12724
|
+
const { collectDiagnostics } = await import("../persistent-session-G7WNWWJZ.js");
|
|
12725
12725
|
await api.post("/host/heartbeat", {
|
|
12726
12726
|
host_id: hostId,
|
|
12727
12727
|
agent_diagnostics: collectDiagnostics([codeName])
|
|
@@ -12771,7 +12771,7 @@ async function respawnAgentAfterMcpStop(codeName, reason) {
|
|
|
12771
12771
|
}
|
|
12772
12772
|
try {
|
|
12773
12773
|
const hostId = await getHostId();
|
|
12774
|
-
const { collectDiagnostics } = await import("../persistent-session-
|
|
12774
|
+
const { collectDiagnostics } = await import("../persistent-session-G7WNWWJZ.js");
|
|
12775
12775
|
await api.post("/host/heartbeat", {
|
|
12776
12776
|
host_id: hostId,
|
|
12777
12777
|
agent_diagnostics: collectDiagnostics([codeName])
|
|
@@ -13269,7 +13269,7 @@ async function processClaudePairSessions(agents) {
|
|
|
13269
13269
|
killPairSession,
|
|
13270
13270
|
pairTmuxSession,
|
|
13271
13271
|
finalizeClaudePairOnboarding
|
|
13272
|
-
} = await import("../claude-pair-runtime-
|
|
13272
|
+
} = await import("../claude-pair-runtime-XPWI2M2Z.js");
|
|
13273
13273
|
for (const pairId of pendingResp.cancelled_pair_ids ?? []) {
|
|
13274
13274
|
log(`[claude-pair] sweeping orphan tmux session for pair ${pairId.slice(0, 8)}`);
|
|
13275
13275
|
const killed = await killPairSession(pairTmuxSession(pairId));
|
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
writeDirectChatSessionState,
|
|
37
37
|
writeEgressAllowlist,
|
|
38
38
|
writePersistentClaudeWrapper
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-O4V3TMUI.js";
|
|
40
40
|
import "./chunk-XWVM4KPK.js";
|
|
41
41
|
export {
|
|
42
42
|
EGRESS_BASELINE_DOMAINS,
|
|
@@ -77,4 +77,4 @@ export {
|
|
|
77
77
|
writeEgressAllowlist,
|
|
78
78
|
writePersistentClaudeWrapper
|
|
79
79
|
};
|
|
80
|
-
//# sourceMappingURL=persistent-session-
|
|
80
|
+
//# sourceMappingURL=persistent-session-G7WNWWJZ.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-O4V3TMUI.js";
|
|
4
4
|
import "./chunk-XWVM4KPK.js";
|
|
5
5
|
|
|
6
6
|
// src/lib/responsiveness-probe.ts
|
|
@@ -437,4 +437,4 @@ export {
|
|
|
437
437
|
readAndResetSlackReplyBindingClassifications,
|
|
438
438
|
readAndResetSlackReplyTargetClassifications
|
|
439
439
|
};
|
|
440
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
440
|
+
//# sourceMappingURL=responsiveness-probe-X735BG2Q.js.map
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|