@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.
@@ -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-IHPN6AX7.js";
29
- import "./chunk-SN2G4B2Z.js";
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-34CY65FC.js.map
59
+ //# sourceMappingURL=persistent-session-JHBXSNVW.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-IHPN6AX7.js";
4
- import "./chunk-SN2G4B2Z.js";
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-KKWPOZSX.js.map
253
+ //# sourceMappingURL=responsiveness-probe-SKVWT5CO.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.28",
3
+ "version": "0.28.30",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {