@integrity-labs/agt-cli 0.28.583 → 0.28.585
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 +7 -5
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-RDBPQZVG.js → chunk-GMTRKIHI.js} +25 -3
- package/dist/chunk-GMTRKIHI.js.map +1 -0
- package/dist/{chunk-I4ZI4W7S.js → chunk-IMMB7MOL.js} +11 -5
- package/dist/chunk-IMMB7MOL.js.map +1 -0
- package/dist/{claude-pair-runtime-MKWK27KO.js → claude-pair-runtime-MN6GPIUL.js} +2 -2
- package/dist/lib/manager-worker.js +15 -10
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +7 -1
- package/dist/mcp/origami.js +7 -1
- package/dist/mcp/slack-channel.js +7 -1
- package/dist/mcp/telegram-channel.js +7 -1
- package/dist/{persistent-session-MHBLUAOV.js → persistent-session-773CFXXR.js} +2 -2
- package/dist/{responsiveness-probe-XGMKVWSH.js → responsiveness-probe-7Q4HR6SK.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-I4ZI4W7S.js.map +0 -1
- package/dist/chunk-RDBPQZVG.js.map +0 -1
- /package/dist/{claude-pair-runtime-MKWK27KO.js.map → claude-pair-runtime-MN6GPIUL.js.map} +0 -0
- /package/dist/{persistent-session-MHBLUAOV.js.map → persistent-session-773CFXXR.js.map} +0 -0
- /package/dist/{responsiveness-probe-XGMKVWSH.js.map → responsiveness-probe-7Q4HR6SK.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-773CFXXR.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-MN6GPIUL.js.map
|
|
@@ -53,7 +53,7 @@ import {
|
|
|
53
53
|
safeWriteJsonAtomic,
|
|
54
54
|
setConfigHash,
|
|
55
55
|
tripClass
|
|
56
|
-
} from "../chunk-
|
|
56
|
+
} from "../chunk-IMMB7MOL.js";
|
|
57
57
|
import {
|
|
58
58
|
getProjectDir as getProjectDir2,
|
|
59
59
|
getReadyTasks,
|
|
@@ -183,7 +183,7 @@ import {
|
|
|
183
183
|
toOpencodeModel,
|
|
184
184
|
transcriptActivityAgeSeconds,
|
|
185
185
|
writeEgressAllowlist
|
|
186
|
-
} from "../chunk-
|
|
186
|
+
} from "../chunk-GMTRKIHI.js";
|
|
187
187
|
import {
|
|
188
188
|
reapOrphanChannelMcps
|
|
189
189
|
} from "../chunk-XWVM4KPK.js";
|
|
@@ -11315,6 +11315,11 @@ async function runAgentConnectivityProbes(agent, integrations, projectDir) {
|
|
|
11315
11315
|
}),
|
|
11316
11316
|
// ENG-6242: forward the prescribed connectivity-test tool to the executor.
|
|
11317
11317
|
connectivity_test: i.connectivity_test ?? null,
|
|
11318
|
+
// ENG-5463: forward the toolkit's CLI binary. The runner has read this
|
|
11319
|
+
// field since it was written and nothing ever set it, so every
|
|
11320
|
+
// CLI-backed toolkit seeded `native` (github, gcloud, xurl, greenlight,
|
|
11321
|
+
// expo) resolved to `builtin` and reported `unverified` forever.
|
|
11322
|
+
cli_binary: i.cli_binary ?? void 0,
|
|
11318
11323
|
// ENG-8055: forward the reconstructed inline server entry (managed
|
|
11319
11324
|
// quarantined rows) so the MCP probe legs hit the real server instead of
|
|
11320
11325
|
// the missing `.mcp.json` key. Absent on normal (active) rows.
|
|
@@ -11624,7 +11629,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
|
|
|
11624
11629
|
var lastVersionCheckAt = 0;
|
|
11625
11630
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
11626
11631
|
var lastResponsivenessProbeAt = 0;
|
|
11627
|
-
var agtCliVersion = true ? "0.28.
|
|
11632
|
+
var agtCliVersion = true ? "0.28.585" : "dev";
|
|
11628
11633
|
function resolveBrewPath(execFileSync2) {
|
|
11629
11634
|
try {
|
|
11630
11635
|
const out = execFileSync2("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -12931,7 +12936,7 @@ function flushRestartedAgentDiagnostics(hostId, codeNames) {
|
|
|
12931
12936
|
if (codeNames.length === 0) return;
|
|
12932
12937
|
void (async () => {
|
|
12933
12938
|
try {
|
|
12934
|
-
const { collectDiagnostics } = await import("../persistent-session-
|
|
12939
|
+
const { collectDiagnostics } = await import("../persistent-session-773CFXXR.js");
|
|
12935
12940
|
await api.post("/host/heartbeat", {
|
|
12936
12941
|
host_id: hostId,
|
|
12937
12942
|
agent_diagnostics: collectDiagnostics(codeNames, quarantineEntriesFor, claudeMdSizeFor, spawnOutcomeForDiagnostics)
|
|
@@ -13039,7 +13044,7 @@ async function pollCycle() {
|
|
|
13039
13044
|
}
|
|
13040
13045
|
try {
|
|
13041
13046
|
const { detectHostSecurity } = await import("../host-security-6PDFG7F5.js");
|
|
13042
|
-
const { collectDiagnostics } = await import("../persistent-session-
|
|
13047
|
+
const { collectDiagnostics } = await import("../persistent-session-773CFXXR.js");
|
|
13043
13048
|
const diagCodeNames = [...agentState.persistentSessionAgents];
|
|
13044
13049
|
const agentDiagnostics = diagCodeNames.length > 0 ? collectDiagnostics(diagCodeNames, quarantineEntriesFor, claudeMdSizeFor, spawnOutcomeForDiagnostics) : void 0;
|
|
13045
13050
|
let tailscaleHostname;
|
|
@@ -13162,7 +13167,7 @@ async function pollCycle() {
|
|
|
13162
13167
|
collectPanelessActivityProbes,
|
|
13163
13168
|
getResponsivenessIntervalMs,
|
|
13164
13169
|
occupancyQualificationClassifications
|
|
13165
|
-
} = await import("../responsiveness-probe-
|
|
13170
|
+
} = await import("../responsiveness-probe-7Q4HR6SK.js");
|
|
13166
13171
|
const probeIntervalMs = getResponsivenessIntervalMs();
|
|
13167
13172
|
if (now - lastResponsivenessProbeAt > probeIntervalMs) {
|
|
13168
13173
|
const probeCodeNames = [...agentState.persistentSessionAgents];
|
|
@@ -13253,7 +13258,7 @@ async function pollCycle() {
|
|
|
13253
13258
|
collectResponsivenessProbes,
|
|
13254
13259
|
livePendingInboundOldestAgeSeconds,
|
|
13255
13260
|
parkPendingInbound
|
|
13256
|
-
} = await import("../responsiveness-probe-
|
|
13261
|
+
} = await import("../responsiveness-probe-7Q4HR6SK.js");
|
|
13257
13262
|
const { getProjectDir: wedgeProjectDir } = await import("../scheduler-engine-NDP36U7O.js");
|
|
13258
13263
|
const wedgeNow = /* @__PURE__ */ new Date();
|
|
13259
13264
|
const liveAgents = agentState.persistentSessionAgents;
|
|
@@ -16823,7 +16828,7 @@ async function handleRestartDoorbell(agentId, requestedAt, restartReason) {
|
|
|
16823
16828
|
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}`));
|
|
16824
16829
|
void (async () => {
|
|
16825
16830
|
try {
|
|
16826
|
-
const { collectDiagnostics } = await import("../persistent-session-
|
|
16831
|
+
const { collectDiagnostics } = await import("../persistent-session-773CFXXR.js");
|
|
16827
16832
|
await api.post("/host/heartbeat", {
|
|
16828
16833
|
host_id: hostId,
|
|
16829
16834
|
agent_diagnostics: collectDiagnostics([codeName], quarantineEntriesFor, claudeMdSizeFor, spawnOutcomeForDiagnostics)
|
|
@@ -16874,7 +16879,7 @@ async function respawnAgentAfterMcpStop(codeName, reason) {
|
|
|
16874
16879
|
}
|
|
16875
16880
|
try {
|
|
16876
16881
|
const hostId = await getHostId();
|
|
16877
|
-
const { collectDiagnostics } = await import("../persistent-session-
|
|
16882
|
+
const { collectDiagnostics } = await import("../persistent-session-773CFXXR.js");
|
|
16878
16883
|
await api.post("/host/heartbeat", {
|
|
16879
16884
|
host_id: hostId,
|
|
16880
16885
|
agent_diagnostics: collectDiagnostics([codeName], quarantineEntriesFor, claudeMdSizeFor, spawnOutcomeForDiagnostics)
|
|
@@ -17452,7 +17457,7 @@ async function processClaudePairSessions(agents) {
|
|
|
17452
17457
|
killPairSession,
|
|
17453
17458
|
pairTmuxSession,
|
|
17454
17459
|
finalizeClaudePairOnboarding
|
|
17455
|
-
} = await import("../claude-pair-runtime-
|
|
17460
|
+
} = await import("../claude-pair-runtime-MN6GPIUL.js");
|
|
17456
17461
|
for (const pairId of pendingResp.cancelled_pair_ids ?? []) {
|
|
17457
17462
|
log(`[claude-pair] sweeping orphan tmux session for pair ${pairId.slice(0, 8)}`);
|
|
17458
17463
|
const killed = await killPairSession(pairTmuxSession(pairId));
|