@integrity-labs/agt-cli 0.27.91 → 0.27.92
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 +3 -3
- package/dist/{chunk-ALXQEKLP.js → chunk-FXXCD523.js} +1 -1
- package/dist/{chunk-4MZWINDQ.js → chunk-RDIDG5IF.js} +25 -5
- package/dist/{chunk-4MZWINDQ.js.map → chunk-RDIDG5IF.js.map} +1 -1
- package/dist/{claude-pair-runtime-XCZUY66M.js → claude-pair-runtime-JVMK3POM.js} +2 -2
- package/dist/lib/manager-worker.js +13 -6
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +1 -1
- package/dist/mcp/telegram-channel.js +1 -1
- package/dist/{persistent-session-BMP74QGP.js → persistent-session-SPGHFGCF.js} +2 -2
- package/dist/{responsiveness-probe-AFOPQEFX.js → responsiveness-probe-PR7RS6JB.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-ALXQEKLP.js.map → chunk-FXXCD523.js.map} +0 -0
- /package/dist/{claude-pair-runtime-XCZUY66M.js.map → claude-pair-runtime-JVMK3POM.js.map} +0 -0
- /package/dist/{persistent-session-BMP74QGP.js.map → persistent-session-SPGHFGCF.js.map} +0 -0
- /package/dist/{responsiveness-probe-AFOPQEFX.js.map → responsiveness-probe-PR7RS6JB.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-SPGHFGCF.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-JVMK3POM.js.map
|
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
provisionStopHook,
|
|
17
17
|
requireHost,
|
|
18
18
|
safeWriteJsonAtomic
|
|
19
|
-
} from "../chunk-
|
|
19
|
+
} from "../chunk-FXXCD523.js";
|
|
20
20
|
import {
|
|
21
21
|
getProjectDir as getProjectDir2,
|
|
22
22
|
getReadyTasks,
|
|
@@ -54,7 +54,7 @@ import {
|
|
|
54
54
|
stopPersistentSession,
|
|
55
55
|
takeWatchdogGiveUpCount,
|
|
56
56
|
takeZombieDetection
|
|
57
|
-
} from "../chunk-
|
|
57
|
+
} from "../chunk-RDIDG5IF.js";
|
|
58
58
|
import {
|
|
59
59
|
KANBAN_CHECK_COMMAND,
|
|
60
60
|
appendDmFooter,
|
|
@@ -3996,7 +3996,7 @@ var cachedMaintenanceWindow = null;
|
|
|
3996
3996
|
var lastVersionCheckAt = 0;
|
|
3997
3997
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
3998
3998
|
var lastResponsivenessProbeAt = 0;
|
|
3999
|
-
var agtCliVersion = true ? "0.27.
|
|
3999
|
+
var agtCliVersion = true ? "0.27.92" : "dev";
|
|
4000
4000
|
function resolveBrewPath(execFileSync4) {
|
|
4001
4001
|
try {
|
|
4002
4002
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -5187,7 +5187,7 @@ async function pollCycle() {
|
|
|
5187
5187
|
}
|
|
5188
5188
|
try {
|
|
5189
5189
|
const { detectHostSecurity } = await import("../host-security-6PDFG7F5.js");
|
|
5190
|
-
const { collectDiagnostics } = await import("../persistent-session-
|
|
5190
|
+
const { collectDiagnostics } = await import("../persistent-session-SPGHFGCF.js");
|
|
5191
5191
|
const diagCodeNames = [...agentState.persistentSessionAgents];
|
|
5192
5192
|
const agentDiagnostics = diagCodeNames.length > 0 ? collectDiagnostics(diagCodeNames) : void 0;
|
|
5193
5193
|
let tailscaleHostname;
|
|
@@ -5260,7 +5260,7 @@ async function pollCycle() {
|
|
|
5260
5260
|
const {
|
|
5261
5261
|
collectResponsivenessProbes,
|
|
5262
5262
|
getResponsivenessIntervalMs
|
|
5263
|
-
} = await import("../responsiveness-probe-
|
|
5263
|
+
} = await import("../responsiveness-probe-PR7RS6JB.js");
|
|
5264
5264
|
const probeIntervalMs = getResponsivenessIntervalMs();
|
|
5265
5265
|
if (now - lastResponsivenessProbeAt > probeIntervalMs) {
|
|
5266
5266
|
const probeCodeNames = [...agentState.persistentSessionAgents];
|
|
@@ -5493,6 +5493,13 @@ async function pollCycle() {
|
|
|
5493
5493
|
},
|
|
5494
5494
|
log,
|
|
5495
5495
|
now: () => Date.now()
|
|
5496
|
+
}, {
|
|
5497
|
+
// ENG-6055: heal-keystroke escalation. 'disturb' (default) retries
|
|
5498
|
+
// with x→BSpace→Enter after the first bare Enter fails — a bare
|
|
5499
|
+
// retry repeats the exact keystroke the stuck TUI state eats
|
|
5500
|
+
// (kylie 2026-06-05). AGT_INPUT_HEAL_MODE=bare reverts to the
|
|
5501
|
+
// pre-ENG-6055 behaviour if a future CC/tmux pairing misbehaves.
|
|
5502
|
+
healMode: process.env.AGT_INPUT_HEAL_MODE === "bare" ? "bare" : "disturb"
|
|
5496
5503
|
});
|
|
5497
5504
|
}
|
|
5498
5505
|
const lastHealthCheck = lastHarvestAt.get("__cron_health__") ?? 0;
|
|
@@ -9554,7 +9561,7 @@ async function processClaudePairSessions(agents) {
|
|
|
9554
9561
|
killPairSession,
|
|
9555
9562
|
pairTmuxSession,
|
|
9556
9563
|
finalizeClaudePairOnboarding
|
|
9557
|
-
} = await import("../claude-pair-runtime-
|
|
9564
|
+
} = await import("../claude-pair-runtime-JVMK3POM.js");
|
|
9558
9565
|
for (const pairId of pendingResp.cancelled_pair_ids ?? []) {
|
|
9559
9566
|
log(`[claude-pair] sweeping orphan tmux session for pair ${pairId.slice(0, 8)}`);
|
|
9560
9567
|
const killed = await killPairSession(pairTmuxSession(pairId));
|