@integrity-labs/agt-cli 0.28.28 → 0.28.30
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-GW2FVIMZ.js → chunk-62PUHAXF.js} +7 -3
- package/dist/{chunk-GW2FVIMZ.js.map → chunk-62PUHAXF.js.map} +1 -1
- package/dist/{chunk-IHPN6AX7.js → chunk-SR6RHUAV.js} +2 -2
- package/dist/{chunk-SN2G4B2Z.js → chunk-VIIPFWE4.js} +254 -254
- package/dist/chunk-VIIPFWE4.js.map +1 -0
- package/dist/{claude-pair-runtime-UKOL6GWJ.js → claude-pair-runtime-RLIUZRLZ.js} +2 -2
- package/dist/lib/manager-worker.js +590 -586
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +13 -6
- package/dist/{persistent-session-34CY65FC.js → persistent-session-JHBXSNVW.js} +3 -3
- package/dist/{responsiveness-probe-KKWPOZSX.js → responsiveness-probe-SKVWT5CO.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-SN2G4B2Z.js.map +0 -1
- /package/dist/{chunk-IHPN6AX7.js.map → chunk-SR6RHUAV.js.map} +0 -0
- /package/dist/{claude-pair-runtime-UKOL6GWJ.js.map → claude-pair-runtime-RLIUZRLZ.js.map} +0 -0
- /package/dist/{persistent-session-34CY65FC.js.map → persistent-session-JHBXSNVW.js.map} +0 -0
- /package/dist/{responsiveness-probe-KKWPOZSX.js.map → responsiveness-probe-SKVWT5CO.js.map} +0 -0
|
@@ -14032,6 +14032,18 @@ function readDirectChatSessionState(agentDir, nowMs) {
|
|
|
14032
14032
|
}
|
|
14033
14033
|
}
|
|
14034
14034
|
|
|
14035
|
+
// src/direct-chat-channel-meta.ts
|
|
14036
|
+
function buildDirectChatChannelMeta(input) {
|
|
14037
|
+
return {
|
|
14038
|
+
session_id: input.sessionId,
|
|
14039
|
+
user: "webapp",
|
|
14040
|
+
source: "direct-chat",
|
|
14041
|
+
// String flag the agent's channel instructions (and the renderer) read:
|
|
14042
|
+
// 'false' = notice (do not reply), 'true' = normal message (reply expected).
|
|
14043
|
+
requires_reply: input.isNotice ? "false" : "true"
|
|
14044
|
+
};
|
|
14045
|
+
}
|
|
14046
|
+
|
|
14035
14047
|
// src/direct-chat-poll-guard.ts
|
|
14036
14048
|
function evaluatePollGuard(state, nowMs, stuckMs) {
|
|
14037
14049
|
if (!state.inFlight) return { run: true, stuck: false };
|
|
@@ -14430,12 +14442,7 @@ async function pollForMessages(sinceMs) {
|
|
|
14430
14442
|
method: "notifications/claude/channel",
|
|
14431
14443
|
params: {
|
|
14432
14444
|
content: msg.content,
|
|
14433
|
-
meta: {
|
|
14434
|
-
session_id: msg.session_id,
|
|
14435
|
-
user: "webapp",
|
|
14436
|
-
source: "direct-chat",
|
|
14437
|
-
requires_reply: !isNotice
|
|
14438
|
-
}
|
|
14445
|
+
meta: buildDirectChatChannelMeta({ sessionId: msg.session_id, isNotice })
|
|
14439
14446
|
}
|
|
14440
14447
|
});
|
|
14441
14448
|
if (isNotice) {
|
|
@@ -25,8 +25,8 @@ import {
|
|
|
25
25
|
takeZombieDetection,
|
|
26
26
|
writeDirectChatSessionState,
|
|
27
27
|
writePersistentClaudeWrapper
|
|
28
|
-
} from "./chunk-
|
|
29
|
-
import "./chunk-
|
|
28
|
+
} from "./chunk-SR6RHUAV.js";
|
|
29
|
+
import "./chunk-VIIPFWE4.js";
|
|
30
30
|
import "./chunk-XWVM4KPK.js";
|
|
31
31
|
export {
|
|
32
32
|
SEND_KEYS_ENTER_DELAY_MS,
|
|
@@ -56,4 +56,4 @@ export {
|
|
|
56
56
|
writeDirectChatSessionState,
|
|
57
57
|
writePersistentClaudeWrapper
|
|
58
58
|
};
|
|
59
|
-
//# sourceMappingURL=persistent-session-
|
|
59
|
+
//# sourceMappingURL=persistent-session-JHBXSNVW.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-SR6RHUAV.js";
|
|
4
|
+
import "./chunk-VIIPFWE4.js";
|
|
5
5
|
import "./chunk-XWVM4KPK.js";
|
|
6
6
|
|
|
7
7
|
// src/lib/responsiveness-probe.ts
|
|
@@ -250,4 +250,4 @@ export {
|
|
|
250
250
|
parkPendingInbound,
|
|
251
251
|
readAndResetChannelDeflections
|
|
252
252
|
};
|
|
253
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
253
|
+
//# sourceMappingURL=responsiveness-probe-SKVWT5CO.js.map
|