@integrity-labs/agt-cli 0.28.45 → 0.28.46
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-YEAHEXU7.js → chunk-34NTBWVL.js} +24 -3
- package/dist/{chunk-YEAHEXU7.js.map → chunk-34NTBWVL.js.map} +1 -1
- package/dist/{chunk-SJUD2BWU.js → chunk-ONG7KSRP.js} +8 -1
- package/dist/chunk-ONG7KSRP.js.map +1 -0
- package/dist/{chunk-2BRF2FDJ.js → chunk-UVE6VSU3.js} +2 -2
- package/dist/{claude-pair-runtime-YPTMIWJF.js → claude-pair-runtime-QXRSXJ4D.js} +2 -2
- package/dist/lib/manager-worker.js +12 -8
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +14 -4
- package/dist/mcp/telegram-channel.js +13 -3
- package/dist/{persistent-session-PNY26VBX.js → persistent-session-Q73X7PPM.js} +3 -3
- package/dist/{responsiveness-probe-4YMZ6LXO.js → responsiveness-probe-R7WZXP2Y.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-SJUD2BWU.js.map +0 -1
- /package/dist/{chunk-2BRF2FDJ.js.map → chunk-UVE6VSU3.js.map} +0 -0
- /package/dist/{claude-pair-runtime-YPTMIWJF.js.map → claude-pair-runtime-QXRSXJ4D.js.map} +0 -0
- /package/dist/{persistent-session-PNY26VBX.js.map → persistent-session-Q73X7PPM.js.map} +0 -0
- /package/dist/{responsiveness-probe-4YMZ6LXO.js.map → responsiveness-probe-R7WZXP2Y.js.map} +0 -0
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
formatMissingVar,
|
|
4
4
|
isClaudeFastMode,
|
|
5
5
|
probeMcpEnvSubstitution
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-ONG7KSRP.js";
|
|
7
7
|
import {
|
|
8
8
|
reapOrphanChannelMcps
|
|
9
9
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -1395,4 +1395,4 @@ export {
|
|
|
1395
1395
|
stopAllSessionsAndWait,
|
|
1396
1396
|
getProjectDir
|
|
1397
1397
|
};
|
|
1398
|
-
//# sourceMappingURL=chunk-
|
|
1398
|
+
//# sourceMappingURL=chunk-UVE6VSU3.js.map
|
|
@@ -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-Q73X7PPM.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-QXRSXJ4D.js.map
|
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
requireHost,
|
|
28
28
|
safeWriteJsonAtomic,
|
|
29
29
|
setConfigHash
|
|
30
|
-
} from "../chunk-
|
|
30
|
+
} from "../chunk-34NTBWVL.js";
|
|
31
31
|
import {
|
|
32
32
|
getProjectDir as getProjectDir2,
|
|
33
33
|
getReadyTasks,
|
|
@@ -65,7 +65,7 @@ import {
|
|
|
65
65
|
takeWatchdogGiveUpCount,
|
|
66
66
|
takeZombieDetection,
|
|
67
67
|
transcriptActivityAgeSeconds
|
|
68
|
-
} from "../chunk-
|
|
68
|
+
} from "../chunk-UVE6VSU3.js";
|
|
69
69
|
import {
|
|
70
70
|
FLAGS_SCHEMA_VERSION,
|
|
71
71
|
FLAG_REGISTRY,
|
|
@@ -96,7 +96,7 @@ import {
|
|
|
96
96
|
resolveDmTarget,
|
|
97
97
|
sumTranscriptUsageInWindow,
|
|
98
98
|
wrapScheduledTaskPrompt
|
|
99
|
-
} from "../chunk-
|
|
99
|
+
} from "../chunk-ONG7KSRP.js";
|
|
100
100
|
import {
|
|
101
101
|
parsePsRows,
|
|
102
102
|
reapOrphanChannelMcps
|
|
@@ -781,6 +781,10 @@ function extractSlackBehaviourSubset(config2) {
|
|
|
781
781
|
return {
|
|
782
782
|
thread_auto_follow: config2?.["thread_auto_follow"] ?? "off",
|
|
783
783
|
channel_response_mode: config2?.["channel_response_mode"] ?? "mention_only",
|
|
784
|
+
// ENG-6464: trimmed string, absent → '' (matches the adapter's
|
|
785
|
+
// emit-only-when-truthy behaviour, so unset and "" hash identically).
|
|
786
|
+
ack_reaction: (config2?.["ack_reaction"] ?? "").trim(),
|
|
787
|
+
skip_reaction: (config2?.["skip_reaction"] ?? "").trim(),
|
|
784
788
|
// Mirror the adapter's defensive filter exactly — a malformed entry the
|
|
785
789
|
// adapter would drop must not count as an env change.
|
|
786
790
|
allowed_users: Array.isArray(rawAllowed) ? rawAllowed.filter((v) => typeof v === "string" && v.trim().length > 0).map((v) => v.trim()) : [],
|
|
@@ -6626,7 +6630,7 @@ var cachedMaintenanceWindow = null;
|
|
|
6626
6630
|
var lastVersionCheckAt = 0;
|
|
6627
6631
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
6628
6632
|
var lastResponsivenessProbeAt = 0;
|
|
6629
|
-
var agtCliVersion = true ? "0.28.
|
|
6633
|
+
var agtCliVersion = true ? "0.28.46" : "dev";
|
|
6630
6634
|
function resolveBrewPath(execFileSync4) {
|
|
6631
6635
|
try {
|
|
6632
6636
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -7735,7 +7739,7 @@ async function pollCycle() {
|
|
|
7735
7739
|
}
|
|
7736
7740
|
try {
|
|
7737
7741
|
const { detectHostSecurity } = await import("../host-security-6PDFG7F5.js");
|
|
7738
|
-
const { collectDiagnostics } = await import("../persistent-session-
|
|
7742
|
+
const { collectDiagnostics } = await import("../persistent-session-Q73X7PPM.js");
|
|
7739
7743
|
const diagCodeNames = [...agentState.persistentSessionAgents];
|
|
7740
7744
|
const agentDiagnostics = diagCodeNames.length > 0 ? collectDiagnostics(diagCodeNames) : void 0;
|
|
7741
7745
|
let tailscaleHostname;
|
|
@@ -7836,7 +7840,7 @@ async function pollCycle() {
|
|
|
7836
7840
|
const {
|
|
7837
7841
|
collectResponsivenessProbes,
|
|
7838
7842
|
getResponsivenessIntervalMs
|
|
7839
|
-
} = await import("../responsiveness-probe-
|
|
7843
|
+
} = await import("../responsiveness-probe-R7WZXP2Y.js");
|
|
7840
7844
|
const probeIntervalMs = getResponsivenessIntervalMs();
|
|
7841
7845
|
if (now - lastResponsivenessProbeAt > probeIntervalMs) {
|
|
7842
7846
|
const probeCodeNames = [...agentState.persistentSessionAgents];
|
|
@@ -7868,7 +7872,7 @@ async function pollCycle() {
|
|
|
7868
7872
|
collectResponsivenessProbes,
|
|
7869
7873
|
livePendingInboundOldestAgeSeconds,
|
|
7870
7874
|
parkPendingInbound
|
|
7871
|
-
} = await import("../responsiveness-probe-
|
|
7875
|
+
} = await import("../responsiveness-probe-R7WZXP2Y.js");
|
|
7872
7876
|
const { getProjectDir: wedgeProjectDir } = await import("../claude-scheduler-FATCLHDM.js");
|
|
7873
7877
|
const wedgeNow = /* @__PURE__ */ new Date();
|
|
7874
7878
|
const liveAgents = agentState.persistentSessionAgents;
|
|
@@ -11272,7 +11276,7 @@ async function processClaudePairSessions(agents) {
|
|
|
11272
11276
|
killPairSession,
|
|
11273
11277
|
pairTmuxSession,
|
|
11274
11278
|
finalizeClaudePairOnboarding
|
|
11275
|
-
} = await import("../claude-pair-runtime-
|
|
11279
|
+
} = await import("../claude-pair-runtime-QXRSXJ4D.js");
|
|
11276
11280
|
for (const pairId of pendingResp.cancelled_pair_ids ?? []) {
|
|
11277
11281
|
log(`[claude-pair] sweeping orphan tmux session for pair ${pairId.slice(0, 8)}`);
|
|
11278
11282
|
const killed = await killPairSession(pairTmuxSession(pairId));
|