@integrity-labs/agt-cli 0.26.2 → 0.27.0-test.4

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.
@@ -13982,6 +13982,75 @@ function createDirectChatProgressFlush(opts) {
13982
13982
  };
13983
13983
  }
13984
13984
 
13985
+ // src/inbound-context-client.ts
13986
+ var REQUEST_TIMEOUT_MS = 1e4;
13987
+ function createInboundContextClient(args) {
13988
+ if (!args.agtHost || !args.agtApiKey || !args.agentId) return null;
13989
+ const fetchImpl = args.fetchImpl ?? fetch;
13990
+ const log = args.log ?? (() => {
13991
+ });
13992
+ const base = args.agtHost.replace(/\/+$/, "");
13993
+ const agentId = args.agentId;
13994
+ const apiKey = args.agtApiKey;
13995
+ let cachedToken = null;
13996
+ let cachedTokenExpiresAt = 0;
13997
+ async function getToken() {
13998
+ if (cachedToken && Date.now() < cachedTokenExpiresAt) return cachedToken;
13999
+ const resp = await fetchImpl(`${base}/host/exchange`, {
14000
+ method: "POST",
14001
+ headers: { "Content-Type": "application/json" },
14002
+ body: JSON.stringify({ host_key: apiKey }),
14003
+ signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS)
14004
+ });
14005
+ if (!resp.ok) {
14006
+ const body = await resp.text().catch(() => "");
14007
+ throw new Error(`/host/exchange failed (${resp.status}): ${body.slice(0, 200)}`);
14008
+ }
14009
+ const data = await resp.json();
14010
+ cachedToken = data.token;
14011
+ cachedTokenExpiresAt = data.expires_at ? new Date(data.expires_at).getTime() - 12e4 : Date.now() + 55 * 6e4;
14012
+ return cachedToken;
14013
+ }
14014
+ async function postOnce(body) {
14015
+ const token = await getToken();
14016
+ return fetchImpl(`${base}/host/inbound-context`, {
14017
+ method: "POST",
14018
+ headers: { Authorization: `Bearer ${token}`, "Content-Type": "application/json" },
14019
+ body: JSON.stringify(body),
14020
+ signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS)
14021
+ });
14022
+ }
14023
+ async function emit(args2) {
14024
+ const body = {
14025
+ agent_id: agentId,
14026
+ source_integration: args2.sourceIntegration,
14027
+ source_external_id: args2.sourceExternalId,
14028
+ ...args2.sourceUrl ? { source_url: args2.sourceUrl } : {}
14029
+ };
14030
+ try {
14031
+ let resp = await postOnce(body);
14032
+ if (resp.status === 401) {
14033
+ cachedToken = null;
14034
+ cachedTokenExpiresAt = 0;
14035
+ resp = await postOnce(body);
14036
+ }
14037
+ if (!resp.ok) {
14038
+ const text = await resp.text().catch(() => "");
14039
+ log(
14040
+ `inbound-context: POST failed (${resp.status}) integration=${args2.sourceIntegration}: ${text.slice(0, 200)}`
14041
+ );
14042
+ }
14043
+ } catch (err) {
14044
+ log(`inbound-context: emit threw integration=${args2.sourceIntegration}: ${err.message}`);
14045
+ }
14046
+ }
14047
+ return {
14048
+ recordInbound(args2) {
14049
+ void emit(args2);
14050
+ }
14051
+ };
14052
+ }
14053
+
13985
14054
  // src/progress-tools.ts
13986
14055
  import { randomUUID } from "crypto";
13987
14056
 
@@ -14375,6 +14444,13 @@ var AGT_HOST = process.env.AGT_HOST;
14375
14444
  var AGT_API_KEY = process.env.AGT_API_KEY;
14376
14445
  var AGT_AGENT_ID = process.env.AGT_AGENT_ID;
14377
14446
  var DIRECT_CHAT_AGENT_DIR = AGT_AGENT_ID ? join2(homedir(), ".augmented", AGT_AGENT_ID) : null;
14447
+ var inboundContextClient = createInboundContextClient({
14448
+ agtHost: AGT_HOST ?? null,
14449
+ agtApiKey: AGT_API_KEY ?? null,
14450
+ agentId: AGT_AGENT_ID ?? null,
14451
+ log: (line) => process.stderr.write(`direct-chat-channel: ${line}
14452
+ `)
14453
+ });
14378
14454
  if (!AGT_HOST || !AGT_API_KEY || !AGT_AGENT_ID) {
14379
14455
  process.stderr.write(
14380
14456
  "direct-chat-channel: Missing AGT_HOST, AGT_API_KEY, or AGT_AGENT_ID. Cannot start.\n"
@@ -14230,6 +14230,24 @@ function decideSlackEngagement(input) {
14230
14230
  function decideSlackAckReaction(input) {
14231
14231
  return Boolean(input.channel && input.ts);
14232
14232
  }
14233
+ function extractAugmentedSlackLabel(evt) {
14234
+ if (evt.metadata?.event_type !== "augmented_agent_message") return null;
14235
+ return {
14236
+ teamId: evt.metadata.event_payload?.["augmented_team_id"],
14237
+ agentId: evt.metadata.event_payload?.["augmented_agent_id"]
14238
+ };
14239
+ }
14240
+ function decideSenderPolicyForward(evt, policy) {
14241
+ if (policy.mode === "all") return { forward: true };
14242
+ const label = extractAugmentedSlackLabel(evt);
14243
+ if (!label) return { forward: false, reason: "sender_policy" };
14244
+ if (policy.mode === "team_agents_only") {
14245
+ if (!policy.teamId || label.teamId !== policy.teamId) {
14246
+ return { forward: false, reason: "sender_policy" };
14247
+ }
14248
+ }
14249
+ return { forward: true };
14250
+ }
14233
14251
 
14234
14252
  // src/slack-loop-throttle.ts
14235
14253
  var DEFAULT_THROTTLE = {
@@ -15495,8 +15513,77 @@ function createConversationIngestClient(args) {
15495
15513
  };
15496
15514
  }
15497
15515
 
15498
- // src/slack-bot-user-id-client.ts
15516
+ // src/inbound-context-client.ts
15499
15517
  var REQUEST_TIMEOUT_MS3 = 1e4;
15518
+ function createInboundContextClient(args) {
15519
+ if (!args.agtHost || !args.agtApiKey || !args.agentId) return null;
15520
+ const fetchImpl = args.fetchImpl ?? fetch;
15521
+ const log = args.log ?? (() => {
15522
+ });
15523
+ const base = args.agtHost.replace(/\/+$/, "");
15524
+ const agentId = args.agentId;
15525
+ const apiKey = args.agtApiKey;
15526
+ let cachedToken = null;
15527
+ let cachedTokenExpiresAt = 0;
15528
+ async function getToken() {
15529
+ if (cachedToken && Date.now() < cachedTokenExpiresAt) return cachedToken;
15530
+ const resp = await fetchImpl(`${base}/host/exchange`, {
15531
+ method: "POST",
15532
+ headers: { "Content-Type": "application/json" },
15533
+ body: JSON.stringify({ host_key: apiKey }),
15534
+ signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS3)
15535
+ });
15536
+ if (!resp.ok) {
15537
+ const body = await resp.text().catch(() => "");
15538
+ throw new Error(`/host/exchange failed (${resp.status}): ${body.slice(0, 200)}`);
15539
+ }
15540
+ const data = await resp.json();
15541
+ cachedToken = data.token;
15542
+ cachedTokenExpiresAt = data.expires_at ? new Date(data.expires_at).getTime() - 12e4 : Date.now() + 55 * 6e4;
15543
+ return cachedToken;
15544
+ }
15545
+ async function postOnce(body) {
15546
+ const token = await getToken();
15547
+ return fetchImpl(`${base}/host/inbound-context`, {
15548
+ method: "POST",
15549
+ headers: { Authorization: `Bearer ${token}`, "Content-Type": "application/json" },
15550
+ body: JSON.stringify(body),
15551
+ signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS3)
15552
+ });
15553
+ }
15554
+ async function emit(args2) {
15555
+ const body = {
15556
+ agent_id: agentId,
15557
+ source_integration: args2.sourceIntegration,
15558
+ source_external_id: args2.sourceExternalId,
15559
+ ...args2.sourceUrl ? { source_url: args2.sourceUrl } : {}
15560
+ };
15561
+ try {
15562
+ let resp = await postOnce(body);
15563
+ if (resp.status === 401) {
15564
+ cachedToken = null;
15565
+ cachedTokenExpiresAt = 0;
15566
+ resp = await postOnce(body);
15567
+ }
15568
+ if (!resp.ok) {
15569
+ const text = await resp.text().catch(() => "");
15570
+ log(
15571
+ `inbound-context: POST failed (${resp.status}) integration=${args2.sourceIntegration}: ${text.slice(0, 200)}`
15572
+ );
15573
+ }
15574
+ } catch (err) {
15575
+ log(`inbound-context: emit threw integration=${args2.sourceIntegration}: ${err.message}`);
15576
+ }
15577
+ }
15578
+ return {
15579
+ recordInbound(args2) {
15580
+ void emit(args2);
15581
+ }
15582
+ };
15583
+ }
15584
+
15585
+ // src/slack-bot-user-id-client.ts
15586
+ var REQUEST_TIMEOUT_MS4 = 1e4;
15500
15587
  function createSlackBotUserIdClient(args) {
15501
15588
  if (!args.agtHost || !args.agtApiKey || !args.agentId) return null;
15502
15589
  const fetchImpl = args.fetchImpl ?? fetch;
@@ -15514,7 +15601,7 @@ function createSlackBotUserIdClient(args) {
15514
15601
  method: "POST",
15515
15602
  headers: { "Content-Type": "application/json" },
15516
15603
  body: JSON.stringify({ host_key: apiKey }),
15517
- signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS3)
15604
+ signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS4)
15518
15605
  });
15519
15606
  if (!resp.ok) {
15520
15607
  const body = await resp.text().catch(() => "");
@@ -15531,7 +15618,7 @@ function createSlackBotUserIdClient(args) {
15531
15618
  method: "POST",
15532
15619
  headers: { Authorization: `Bearer ${token}`, "Content-Type": "application/json" },
15533
15620
  body: JSON.stringify({ agent_id: agentId, bot_user_id: botUserId2 }),
15534
- signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS3)
15621
+ signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS4)
15535
15622
  });
15536
15623
  }
15537
15624
  async function emitAsync(botUserId2) {
@@ -15563,7 +15650,7 @@ function createSlackBotUserIdClient(args) {
15563
15650
  method: "POST",
15564
15651
  headers: { Authorization: `Bearer ${token}`, "Content-Type": "application/json" },
15565
15652
  body: JSON.stringify({ agent_id: agentId, channel_id: "slack", healthy }),
15566
- signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS3)
15653
+ signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS4)
15567
15654
  });
15568
15655
  };
15569
15656
  try {
@@ -15683,6 +15770,19 @@ var AGENT_CODE_NAME = process.env.AGT_AGENT_CODE_NAME ?? null;
15683
15770
  var AGT_HOST = process.env.AGT_HOST ?? null;
15684
15771
  var AGT_API_KEY = process.env.AGT_API_KEY ?? null;
15685
15772
  var AGT_AGENT_ID = process.env.AGT_AGENT_ID ?? null;
15773
+ var AGT_TEAM_ID = process.env.AGT_TEAM_ID ?? null;
15774
+ var SLACK_SENDER_POLICY = (() => {
15775
+ const raw = (process.env.SLACK_SENDER_POLICY ?? "all").trim().toLowerCase();
15776
+ if (raw === "all") return { mode: "all" };
15777
+ if (raw === "agents_only") return { mode: "agents_only" };
15778
+ if (raw === "team_agents_only") {
15779
+ if (!AGT_TEAM_ID) {
15780
+ throw new Error("SLACK_SENDER_POLICY=team_agents_only requires AGT_TEAM_ID");
15781
+ }
15782
+ return { mode: "team_agents_only", teamId: AGT_TEAM_ID };
15783
+ }
15784
+ throw new Error(`Invalid SLACK_SENDER_POLICY=${JSON.stringify(process.env.SLACK_SENDER_POLICY)}`);
15785
+ })();
15686
15786
  var BLOCK_KIT_ENABLED = process.env.SLACK_BLOCK_KIT_ENABLED === "true";
15687
15787
  var BLOCK_KIT_ASK_USER_ENABLED = process.env.SLACK_BLOCK_KIT_ASK_USER_ENABLED === "true";
15688
15788
  var BLOCK_KIT_DISABLED = process.env.SLACK_BLOCK_KIT_DISABLED === "true";
@@ -15721,6 +15821,13 @@ var conversationIngestClient = createConversationIngestClient({
15721
15821
  log: (line) => process.stderr.write(`slack-channel: ${line}
15722
15822
  `)
15723
15823
  });
15824
+ var inboundContextClient = createInboundContextClient({
15825
+ agtHost: AGT_HOST,
15826
+ agtApiKey: AGT_API_KEY,
15827
+ agentId: AGT_AGENT_ID,
15828
+ log: (line) => process.stderr.write(`slack-channel: ${line}
15829
+ `)
15830
+ });
15724
15831
  var SLACK_PEER_CLASSIFIER_CONFIG = {
15725
15832
  peer_agent_mode: parsePeerAgentModeEnv(process.env.SLACK_PEER_AGENT_MODE),
15726
15833
  peer_group_ids: parsePeerGroupIdsEnv(process.env.SLACK_PEER_GROUP_IDS),
@@ -16049,6 +16156,16 @@ function noteThreadActivityByMessageTs(channel, messageTs) {
16049
16156
  }
16050
16157
  }
16051
16158
  var RESTART_FLAGS_DIR = join3(homedir2(), ".augmented", "restart-flags");
16159
+ function buildAugmentedSlackMetadata() {
16160
+ if (!AGT_TEAM_ID) return void 0;
16161
+ return {
16162
+ event_type: "augmented_agent_message",
16163
+ event_payload: {
16164
+ augmented_team_id: AGT_TEAM_ID,
16165
+ ...AGT_AGENT_ID ? { augmented_agent_id: AGT_AGENT_ID } : {}
16166
+ }
16167
+ };
16168
+ }
16052
16169
  function hashChannelId(id) {
16053
16170
  return createHash("sha256").update(id).digest("hex").slice(0, 8);
16054
16171
  }
@@ -16056,6 +16173,8 @@ function hashId(id) {
16056
16173
  return createHash("sha256").update(id).digest("hex").slice(0, 8);
16057
16174
  }
16058
16175
  async function postSlackMessage(body) {
16176
+ const augmentedMeta = buildAugmentedSlackMetadata();
16177
+ const bodyWithLabel = augmentedMeta ? { ...body, metadata: augmentedMeta } : body;
16059
16178
  try {
16060
16179
  const res = await fetch("https://slack.com/api/chat.postMessage", {
16061
16180
  method: "POST",
@@ -16063,7 +16182,7 @@ async function postSlackMessage(body) {
16063
16182
  "Content-Type": "application/json; charset=utf-8",
16064
16183
  Authorization: `Bearer ${BOT_TOKEN}`
16065
16184
  },
16066
- body: JSON.stringify(body),
16185
+ body: JSON.stringify(bodyWithLabel),
16067
16186
  // Hard deadline so a hung Slack API can't stall the live Socket Mode
16068
16187
  // event loop or the manager's restart ack path. Matches the timeout
16069
16188
  // used elsewhere in this file for chat.postMessage.
@@ -16865,7 +16984,10 @@ mcp.setRequestHandler(CallToolRequestSchema, async (req) => {
16865
16984
  body: JSON.stringify({
16866
16985
  channel,
16867
16986
  text,
16868
- ...thread_ts ? { thread_ts } : {}
16987
+ ...thread_ts ? { thread_ts } : {},
16988
+ ...buildAugmentedSlackMetadata() ? { metadata: buildAugmentedSlackMetadata() } : {}
16989
+ // ↑ Labels this message as Augmented-agent-originated so peer agents
16990
+ // enforcing sender_policy=team_agents_only can verify the sender.
16869
16991
  })
16870
16992
  });
16871
16993
  const data = await res.json();
@@ -17289,6 +17411,8 @@ function forwardingHostAvailable() {
17289
17411
  return Boolean(AGT_HOST && AGT_API_KEY && AGT_AGENT_ID);
17290
17412
  }
17291
17413
  async function postSlackMessageWithTs(payload) {
17414
+ const augmentedMeta = buildAugmentedSlackMetadata();
17415
+ const payloadWithLabel = augmentedMeta ? { ...payload, metadata: augmentedMeta } : payload;
17292
17416
  try {
17293
17417
  const res = await fetch("https://slack.com/api/chat.postMessage", {
17294
17418
  method: "POST",
@@ -17296,7 +17420,7 @@ async function postSlackMessageWithTs(payload) {
17296
17420
  "Content-Type": "application/json; charset=utf-8",
17297
17421
  Authorization: `Bearer ${BOT_TOKEN}`
17298
17422
  },
17299
- body: JSON.stringify(payload),
17423
+ body: JSON.stringify(payloadWithLabel),
17300
17424
  signal: AbortSignal.timeout(SLACK_DOWNLOAD_TIMEOUT_MS)
17301
17425
  });
17302
17426
  const data = await res.json();
@@ -17920,6 +18044,12 @@ async function connectSocketMode() {
17920
18044
  const filterDecision = decideSlackMessageForward(evt);
17921
18045
  if (!filterDecision.forward) {
17922
18046
  process.stderr.write(`slack-channel: dropped message event (reason=${filterDecision.reason}, subtype=${evt.subtype ?? "none"}, ts=${evt.ts ?? "n/a"})
18047
+ `);
18048
+ return;
18049
+ }
18050
+ const senderPolicyDecision = decideSenderPolicyForward(evt, SLACK_SENDER_POLICY);
18051
+ if (!senderPolicyDecision.forward) {
18052
+ process.stderr.write(`slack-channel: dropped message event (reason=sender_policy, mode=${SLACK_SENDER_POLICY.mode}, ts=${evt.ts ?? "n/a"})
17923
18053
  `);
17924
18054
  return;
17925
18055
  }
@@ -18094,6 +18224,12 @@ async function connectSocketMode() {
18094
18224
  is_bot: isFromBot,
18095
18225
  bot_id: evt.bot_id ?? null
18096
18226
  });
18227
+ if (!isFromBot && threadTs) {
18228
+ inboundContextClient?.recordInbound({
18229
+ sourceIntegration: "slack",
18230
+ sourceExternalId: `${channel}:${threadTs}`
18231
+ });
18232
+ }
18097
18233
  }
18098
18234
  } catch (err) {
18099
18235
  process.stderr.write(`slack-channel: Event error: ${err.message}
@@ -15317,6 +15317,75 @@ function createConversationIngestClient(args) {
15317
15317
  };
15318
15318
  }
15319
15319
 
15320
+ // src/inbound-context-client.ts
15321
+ var REQUEST_TIMEOUT_MS4 = 1e4;
15322
+ function createInboundContextClient(args) {
15323
+ if (!args.agtHost || !args.agtApiKey || !args.agentId) return null;
15324
+ const fetchImpl = args.fetchImpl ?? fetch;
15325
+ const log = args.log ?? (() => {
15326
+ });
15327
+ const base = args.agtHost.replace(/\/+$/, "");
15328
+ const agentId = args.agentId;
15329
+ const apiKey = args.agtApiKey;
15330
+ let cachedToken = null;
15331
+ let cachedTokenExpiresAt = 0;
15332
+ async function getToken() {
15333
+ if (cachedToken && Date.now() < cachedTokenExpiresAt) return cachedToken;
15334
+ const resp = await fetchImpl(`${base}/host/exchange`, {
15335
+ method: "POST",
15336
+ headers: { "Content-Type": "application/json" },
15337
+ body: JSON.stringify({ host_key: apiKey }),
15338
+ signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS4)
15339
+ });
15340
+ if (!resp.ok) {
15341
+ const body = await resp.text().catch(() => "");
15342
+ throw new Error(`/host/exchange failed (${resp.status}): ${body.slice(0, 200)}`);
15343
+ }
15344
+ const data = await resp.json();
15345
+ cachedToken = data.token;
15346
+ cachedTokenExpiresAt = data.expires_at ? new Date(data.expires_at).getTime() - 12e4 : Date.now() + 55 * 6e4;
15347
+ return cachedToken;
15348
+ }
15349
+ async function postOnce(body) {
15350
+ const token = await getToken();
15351
+ return fetchImpl(`${base}/host/inbound-context`, {
15352
+ method: "POST",
15353
+ headers: { Authorization: `Bearer ${token}`, "Content-Type": "application/json" },
15354
+ body: JSON.stringify(body),
15355
+ signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS4)
15356
+ });
15357
+ }
15358
+ async function emit(args2) {
15359
+ const body = {
15360
+ agent_id: agentId,
15361
+ source_integration: args2.sourceIntegration,
15362
+ source_external_id: args2.sourceExternalId,
15363
+ ...args2.sourceUrl ? { source_url: args2.sourceUrl } : {}
15364
+ };
15365
+ try {
15366
+ let resp = await postOnce(body);
15367
+ if (resp.status === 401) {
15368
+ cachedToken = null;
15369
+ cachedTokenExpiresAt = 0;
15370
+ resp = await postOnce(body);
15371
+ }
15372
+ if (!resp.ok) {
15373
+ const text = await resp.text().catch(() => "");
15374
+ log(
15375
+ `inbound-context: POST failed (${resp.status}) integration=${args2.sourceIntegration}: ${text.slice(0, 200)}`
15376
+ );
15377
+ }
15378
+ } catch (err) {
15379
+ log(`inbound-context: emit threw integration=${args2.sourceIntegration}: ${err.message}`);
15380
+ }
15381
+ }
15382
+ return {
15383
+ recordInbound(args2) {
15384
+ void emit(args2);
15385
+ }
15386
+ };
15387
+ }
15388
+
15320
15389
  // src/progress-tools.ts
15321
15390
  import { randomUUID } from "crypto";
15322
15391
 
@@ -15872,6 +15941,13 @@ var conversationIngestClient = createConversationIngestClient({
15872
15941
  log: (line) => process.stderr.write(`telegram-channel(${AGENT_CODE_NAME}): ${line}
15873
15942
  `)
15874
15943
  });
15944
+ var inboundContextClient = createInboundContextClient({
15945
+ agtHost: AGT_HOST,
15946
+ agtApiKey: AGT_API_KEY,
15947
+ agentId: process.env.AGT_AGENT_ID ?? null,
15948
+ log: (line) => process.stderr.write(`telegram-channel(${AGENT_CODE_NAME}): ${line}
15949
+ `)
15950
+ });
15875
15951
  var peerRateApiClient = createDefaultPeerRateApiClient({
15876
15952
  agtHost: AGT_HOST,
15877
15953
  agtApiKey: AGT_API_KEY,
@@ -17357,6 +17433,12 @@ async function pollLoop() {
17357
17433
  is_bot: isFromBot,
17358
17434
  is_peer_agent: !!peerAgentMeta
17359
17435
  });
17436
+ if (!isFromBot && !peerAgentMeta) {
17437
+ inboundContextClient?.recordInbound({
17438
+ sourceIntegration: "telegram",
17439
+ sourceExternalId: String(chatId)
17440
+ });
17441
+ }
17360
17442
  }
17361
17443
  } catch (err) {
17362
17444
  if (isShuttingDown) return;
@@ -20,8 +20,8 @@ import {
20
20
  stopPersistentSession,
21
21
  takeZombieDetection,
22
22
  writePersistentClaudeWrapper
23
- } from "./chunk-QSDDP7JN.js";
24
- import "./chunk-U3HCB23E.js";
23
+ } from "./chunk-WDCSMDQ4.js";
24
+ import "./chunk-CTWY2X4S.js";
25
25
  import "./chunk-XWVM4KPK.js";
26
26
  export {
27
27
  _internals,
@@ -46,4 +46,4 @@ export {
46
46
  takeZombieDetection,
47
47
  writePersistentClaudeWrapper
48
48
  };
49
- //# sourceMappingURL=persistent-session-K4X76LLB.js.map
49
+ //# sourceMappingURL=persistent-session-QJT7JE5P.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-QSDDP7JN.js";
4
- import "./chunk-U3HCB23E.js";
3
+ } from "./chunk-WDCSMDQ4.js";
4
+ import "./chunk-CTWY2X4S.js";
5
5
  import "./chunk-XWVM4KPK.js";
6
6
 
7
7
  // src/lib/responsiveness-probe.ts
@@ -30,4 +30,4 @@ export {
30
30
  collectResponsivenessProbes,
31
31
  getResponsivenessIntervalMs
32
32
  };
33
- //# sourceMappingURL=responsiveness-probe-QBV43SJ7.js.map
33
+ //# sourceMappingURL=responsiveness-probe-ZERSZOZ2.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.26.2",
3
+ "version": "0.27.0-test.4",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {