@integrity-labs/agt-cli 0.28.19 → 0.28.21
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-6UXSC4TR.js → chunk-3HZSMDEW.js} +14 -1
- package/dist/{chunk-6UXSC4TR.js.map → chunk-3HZSMDEW.js.map} +1 -1
- package/dist/{chunk-5DIMLYS5.js → chunk-BKO5PJZ7.js} +2 -2
- package/dist/{chunk-MGE73AKK.js → chunk-NGZVHSI3.js} +19 -3
- package/dist/chunk-NGZVHSI3.js.map +1 -0
- package/dist/{claude-pair-runtime-CFUSOOVY.js → claude-pair-runtime-LQJ5E4IF.js} +2 -2
- package/dist/lib/manager-worker.js +10 -10
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +3 -1
- package/dist/mcp/telegram-channel.js +3 -1
- package/dist/{persistent-session-RANQKKKC.js → persistent-session-5BEMWOTM.js} +3 -3
- package/dist/{responsiveness-probe-KQP6MY5N.js → responsiveness-probe-JP4HLFYU.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-MGE73AKK.js.map +0 -1
- /package/dist/{chunk-5DIMLYS5.js.map → chunk-BKO5PJZ7.js.map} +0 -0
- /package/dist/{claude-pair-runtime-CFUSOOVY.js.map → claude-pair-runtime-LQJ5E4IF.js.map} +0 -0
- /package/dist/{persistent-session-RANQKKKC.js.map → persistent-session-5BEMWOTM.js.map} +0 -0
- /package/dist/{responsiveness-probe-KQP6MY5N.js.map → responsiveness-probe-JP4HLFYU.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-5BEMWOTM.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-LQJ5E4IF.js.map
|
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
provisionStopHook,
|
|
23
23
|
requireHost,
|
|
24
24
|
safeWriteJsonAtomic
|
|
25
|
-
} from "../chunk-
|
|
25
|
+
} from "../chunk-NGZVHSI3.js";
|
|
26
26
|
import {
|
|
27
27
|
getProjectDir as getProjectDir2,
|
|
28
28
|
getReadyTasks,
|
|
@@ -64,7 +64,7 @@ import {
|
|
|
64
64
|
takeWatchdogGiveUpCount,
|
|
65
65
|
takeZombieDetection,
|
|
66
66
|
transcriptActivityAgeSeconds
|
|
67
|
-
} from "../chunk-
|
|
67
|
+
} from "../chunk-BKO5PJZ7.js";
|
|
68
68
|
import {
|
|
69
69
|
FLAGS_SCHEMA_VERSION,
|
|
70
70
|
KANBAN_CHECK_COMMAND,
|
|
@@ -96,7 +96,7 @@ import {
|
|
|
96
96
|
sumTranscriptUsageInWindow,
|
|
97
97
|
worseConnectivityOutcome,
|
|
98
98
|
wrapScheduledTaskPrompt
|
|
99
|
-
} from "../chunk-
|
|
99
|
+
} from "../chunk-3HZSMDEW.js";
|
|
100
100
|
import {
|
|
101
101
|
parsePsRows,
|
|
102
102
|
reapOrphanChannelMcps
|
|
@@ -4814,7 +4814,7 @@ var killPausedCodeNames = /* @__PURE__ */ new Set();
|
|
|
4814
4814
|
var BACK_ONLINE_GREETING_GUIDANCE = " When you reconnect, if you tell anyone you are back, start that message with a \u{1F44B} wave emoji and do not use a \u{1F7E2} green-light emoji.";
|
|
4815
4815
|
function maybeAutoResume(agent) {
|
|
4816
4816
|
const codeName = agent.code_name;
|
|
4817
|
-
if (
|
|
4817
|
+
if (hostFlagStore().getBoolean("resume-reconciler")) {
|
|
4818
4818
|
void maybeResumeReconcile(agent);
|
|
4819
4819
|
return;
|
|
4820
4820
|
}
|
|
@@ -4885,7 +4885,7 @@ async function maybeResumeReconcile(agent) {
|
|
|
4885
4885
|
if (autoResumeStandDowns.has(standDownKey)) return;
|
|
4886
4886
|
autoResumeInFlight.add(codeName);
|
|
4887
4887
|
try {
|
|
4888
|
-
const config2 = readResumeReconcilerConfig();
|
|
4888
|
+
const config2 = { ...readResumeReconcilerConfig(), enabled: hostFlagStore().getBoolean("resume-reconciler") };
|
|
4889
4889
|
const trippedAt = trip.trippedAt;
|
|
4890
4890
|
let serverHealth = null;
|
|
4891
4891
|
try {
|
|
@@ -5429,7 +5429,7 @@ var cachedMaintenanceWindow = null;
|
|
|
5429
5429
|
var lastVersionCheckAt = 0;
|
|
5430
5430
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
5431
5431
|
var lastResponsivenessProbeAt = 0;
|
|
5432
|
-
var agtCliVersion = true ? "0.28.
|
|
5432
|
+
var agtCliVersion = true ? "0.28.21" : "dev";
|
|
5433
5433
|
function resolveBrewPath(execFileSync4) {
|
|
5434
5434
|
try {
|
|
5435
5435
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -6538,7 +6538,7 @@ async function pollCycle() {
|
|
|
6538
6538
|
}
|
|
6539
6539
|
try {
|
|
6540
6540
|
const { detectHostSecurity } = await import("../host-security-6PDFG7F5.js");
|
|
6541
|
-
const { collectDiagnostics } = await import("../persistent-session-
|
|
6541
|
+
const { collectDiagnostics } = await import("../persistent-session-5BEMWOTM.js");
|
|
6542
6542
|
const diagCodeNames = [...agentState.persistentSessionAgents];
|
|
6543
6543
|
const agentDiagnostics = diagCodeNames.length > 0 ? collectDiagnostics(diagCodeNames) : void 0;
|
|
6544
6544
|
let tailscaleHostname;
|
|
@@ -6632,7 +6632,7 @@ async function pollCycle() {
|
|
|
6632
6632
|
const {
|
|
6633
6633
|
collectResponsivenessProbes,
|
|
6634
6634
|
getResponsivenessIntervalMs
|
|
6635
|
-
} = await import("../responsiveness-probe-
|
|
6635
|
+
} = await import("../responsiveness-probe-JP4HLFYU.js");
|
|
6636
6636
|
const probeIntervalMs = getResponsivenessIntervalMs();
|
|
6637
6637
|
if (now - lastResponsivenessProbeAt > probeIntervalMs) {
|
|
6638
6638
|
const probeCodeNames = [...agentState.persistentSessionAgents];
|
|
@@ -6664,7 +6664,7 @@ async function pollCycle() {
|
|
|
6664
6664
|
collectResponsivenessProbes,
|
|
6665
6665
|
livePendingInboundOldestAgeSeconds,
|
|
6666
6666
|
parkPendingInbound
|
|
6667
|
-
} = await import("../responsiveness-probe-
|
|
6667
|
+
} = await import("../responsiveness-probe-JP4HLFYU.js");
|
|
6668
6668
|
const { getProjectDir: wedgeProjectDir } = await import("../claude-scheduler-FATCLHDM.js");
|
|
6669
6669
|
const wedgeNow = /* @__PURE__ */ new Date();
|
|
6670
6670
|
const liveAgents = agentState.persistentSessionAgents;
|
|
@@ -11255,7 +11255,7 @@ async function processClaudePairSessions(agents) {
|
|
|
11255
11255
|
killPairSession,
|
|
11256
11256
|
pairTmuxSession,
|
|
11257
11257
|
finalizeClaudePairOnboarding
|
|
11258
|
-
} = await import("../claude-pair-runtime-
|
|
11258
|
+
} = await import("../claude-pair-runtime-LQJ5E4IF.js");
|
|
11259
11259
|
for (const pairId of pendingResp.cancelled_pair_ids ?? []) {
|
|
11260
11260
|
log(`[claude-pair] sweeping orphan tmux session for pair ${pairId.slice(0, 8)}`);
|
|
11261
11261
|
const killed = await killPairSession(pairTmuxSession(pairId));
|