@integrity-labs/agt-cli 0.28.922 → 0.28.924

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.
Files changed (23) hide show
  1. package/dist/bin/agt.js +5 -5
  2. package/dist/{chunk-NGJFE75J.js → chunk-BLEV5PAO.js} +2 -2
  3. package/dist/{chunk-JTWIYGY2.js → chunk-FAG5UIWZ.js} +4 -4
  4. package/dist/{chunk-ZOPP3ZC7.js → chunk-VHO7KAB7.js} +29 -4
  5. package/dist/{chunk-ZOPP3ZC7.js.map → chunk-VHO7KAB7.js.map} +1 -1
  6. package/dist/{claude-pair-runtime-NNHCDXLG.js → claude-pair-runtime-SY5VCTCE.js} +2 -2
  7. package/dist/lib/manager-worker.js +64 -15
  8. package/dist/lib/manager-worker.js.map +1 -1
  9. package/dist/mcp/direct-chat-channel.js +28 -3
  10. package/dist/mcp/index.js +24 -2
  11. package/dist/mcp/origami.js +24 -2
  12. package/dist/mcp/slack-channel.js +28 -3
  13. package/dist/mcp/telegram-channel.js +28 -3
  14. package/dist/{persistent-session-OQRYZ3YP.js → persistent-session-UEAJJ72P.js} +3 -3
  15. package/dist/{responsiveness-probe-RBWP6HJE.js → responsiveness-probe-VXJKA6RF.js} +3 -3
  16. package/dist/{session-auth-dead-4KUPTD7M.js → session-auth-dead-XOP4XYBD.js} +2 -2
  17. package/package.json +1 -1
  18. /package/dist/{chunk-NGJFE75J.js.map → chunk-BLEV5PAO.js.map} +0 -0
  19. /package/dist/{chunk-JTWIYGY2.js.map → chunk-FAG5UIWZ.js.map} +0 -0
  20. /package/dist/{claude-pair-runtime-NNHCDXLG.js.map → claude-pair-runtime-SY5VCTCE.js.map} +0 -0
  21. /package/dist/{persistent-session-OQRYZ3YP.js.map → persistent-session-UEAJJ72P.js.map} +0 -0
  22. /package/dist/{responsiveness-probe-RBWP6HJE.js.map → responsiveness-probe-VXJKA6RF.js.map} +0 -0
  23. /package/dist/{session-auth-dead-4KUPTD7M.js.map → session-auth-dead-XOP4XYBD.js.map} +0 -0
@@ -35092,13 +35092,16 @@ function parseResetDateTime(humanDate, now) {
35092
35092
 
35093
35093
  // ../core/dist/claude-code-usage/banner-parser.js
35094
35094
  var SESSION_QUALIFIER = /^(?:session|\d{1,2}\s*-?\s*hours?|\d{1,2}h)$/i;
35095
- var SPEND_QUALIFIER = /^(?:individual\s+)?spend$/i;
35095
+ var SPEND_QUALIFIER = /^(?:individual\s+)?(?:(?:daily|weekly|monthly)\s+)?spend$/i;
35096
+ var ORG_SPEND_QUALIFIER = /^(?:your\s+)?(?:org|organi[sz]ation|team|workspace)['’]s\s+(?:(?:daily|weekly|monthly)\s+)?spend$/i;
35096
35097
  function classifyLimitScope(qualifier) {
35097
35098
  const q = (qualifier ?? "").trim();
35098
35099
  if (!q)
35099
35100
  return "weekly";
35100
35101
  if (SESSION_QUALIFIER.test(q))
35101
35102
  return "session";
35103
+ if (ORG_SPEND_QUALIFIER.test(q))
35104
+ return "org_spend";
35102
35105
  if (SPEND_QUALIFIER.test(q))
35103
35106
  return "spend";
35104
35107
  if (/^weekly$/i.test(q))
@@ -35135,7 +35138,13 @@ var BANNER_PATTERNS = [
35135
35138
  // "limit". This parser runs over agent-produced pane.log tails, so that is
35136
35139
  // reachable input. Requiring at least one separator per extra token, and
35137
35140
  // bounding the count, keeps it linear.
35138
- `${SUBJECT}hit\\s+your\\s+(?<qualifier>[a-z0-9]+(?:[\\s-]+[a-z0-9]+){0,3}\\s+)?limit${SEP}resets\\s+(?<reset>${RESET_DATE})`,
35141
+ //
35142
+ // ENG-10474: the token class admits an apostrophe (both ' and ’). It was
35143
+ // `[a-z0-9]`, so ANY possessive qualifier ("org's monthly", "team's") made
35144
+ // the whole banner unmatchable, not merely unclassified: null, no
35145
+ // observation, no alert. The apostrophe cannot match empty, so the
35146
+ // at-least-one-separator shape above still keeps this linear.
35147
+ `${SUBJECT}hit\\s+your\\s+(?<qualifier>[a-z0-9'\u2019]+(?:[\\s-]+[a-z0-9'\u2019]+){0,3}\\s+)?limit${SEP}resets\\s+(?<reset>${RESET_DATE})`,
35139
35148
  "i"
35140
35149
  ),
35141
35150
  // ENG-10365 — the Claude Team seat's INDIVIDUAL SPEND LIMIT.
@@ -35188,7 +35197,23 @@ var BANNER_PATTERNS = [
35188
35197
  // monitor's auto-close, and synthesising an instant we never read is the exact
35189
35198
  // confident-and-false reporting ENG-8901 exists to stop. Every spend banner
35190
35199
  // observed so far carries one.
35191
- new RegExp(`${SUBJECT}hit\\s+your\\s+(?<qualifier>(?:individual\\s+)?spend)\\s+limit[\\s\\S]{0,160}?resets\\s+(?<reset>${RESET_DATE})`, "i")
35200
+ //
35201
+ // ENG-10474 — THE CAPTURE NO LONGER GATES THE CLASSIFIER. It admitted exactly
35202
+ // `spend` or `individual spend`, so "You've hit your org's monthly spend
35203
+ // limit" failed here as well as in both patterns above and alyve's agents went
35204
+ // dark with every platform signal green. The capture now takes up to three
35205
+ // qualifier tokens (apostrophes allowed) in front of `spend`, and
35206
+ // `classifyLimitScope` decides what they mean, which is how pattern 2 already
35207
+ // worked.
35208
+ //
35209
+ // `spend` STAYS THE ANCHOR, and that is the design decision. Making this
35210
+ // capture as open as pattern 2's would turn it into "any saturated banner with
35211
+ // up to 160 characters before `resets`", so "You've hit your weekly limit"
35212
+ // followed by pane prose and an unrelated "resets Nov 28" would start
35213
+ // producing observations — the false-pairing surface the 160-character bound
35214
+ // exists to fence. Pattern 2 keeps its adjacency rule for every non-spend
35215
+ // qualifier; this pattern only widens WHICH spend. Pinned by a test either way.
35216
+ new RegExp(`${SUBJECT}hit\\s+your\\s+(?<qualifier>(?:[a-z0-9'\u2019]+[\\s-]+){0,3}spend)\\s+limit[\\s\\S]{0,160}?resets\\s+(?<reset>${RESET_DATE})`, "i")
35192
35217
  ];
35193
35218
  function parseUsageBanner(text, now = /* @__PURE__ */ new Date()) {
35194
35219
  let bestIndex = -1;
package/dist/mcp/index.js CHANGED
@@ -27761,7 +27761,13 @@ var BANNER_PATTERNS = [
27761
27761
  // "limit". This parser runs over agent-produced pane.log tails, so that is
27762
27762
  // reachable input. Requiring at least one separator per extra token, and
27763
27763
  // bounding the count, keeps it linear.
27764
- `${SUBJECT}hit\\s+your\\s+(?<qualifier>[a-z0-9]+(?:[\\s-]+[a-z0-9]+){0,3}\\s+)?limit${SEP}resets\\s+(?<reset>${RESET_DATE})`,
27764
+ //
27765
+ // ENG-10474: the token class admits an apostrophe (both ' and ’). It was
27766
+ // `[a-z0-9]`, so ANY possessive qualifier ("org's monthly", "team's") made
27767
+ // the whole banner unmatchable, not merely unclassified: null, no
27768
+ // observation, no alert. The apostrophe cannot match empty, so the
27769
+ // at-least-one-separator shape above still keeps this linear.
27770
+ `${SUBJECT}hit\\s+your\\s+(?<qualifier>[a-z0-9'\u2019]+(?:[\\s-]+[a-z0-9'\u2019]+){0,3}\\s+)?limit${SEP}resets\\s+(?<reset>${RESET_DATE})`,
27765
27771
  "i"
27766
27772
  ),
27767
27773
  // ENG-10365 — the Claude Team seat's INDIVIDUAL SPEND LIMIT.
@@ -27814,7 +27820,23 @@ var BANNER_PATTERNS = [
27814
27820
  // monitor's auto-close, and synthesising an instant we never read is the exact
27815
27821
  // confident-and-false reporting ENG-8901 exists to stop. Every spend banner
27816
27822
  // observed so far carries one.
27817
- new RegExp(`${SUBJECT}hit\\s+your\\s+(?<qualifier>(?:individual\\s+)?spend)\\s+limit[\\s\\S]{0,160}?resets\\s+(?<reset>${RESET_DATE})`, "i")
27823
+ //
27824
+ // ENG-10474 — THE CAPTURE NO LONGER GATES THE CLASSIFIER. It admitted exactly
27825
+ // `spend` or `individual spend`, so "You've hit your org's monthly spend
27826
+ // limit" failed here as well as in both patterns above and alyve's agents went
27827
+ // dark with every platform signal green. The capture now takes up to three
27828
+ // qualifier tokens (apostrophes allowed) in front of `spend`, and
27829
+ // `classifyLimitScope` decides what they mean, which is how pattern 2 already
27830
+ // worked.
27831
+ //
27832
+ // `spend` STAYS THE ANCHOR, and that is the design decision. Making this
27833
+ // capture as open as pattern 2's would turn it into "any saturated banner with
27834
+ // up to 160 characters before `resets`", so "You've hit your weekly limit"
27835
+ // followed by pane prose and an unrelated "resets Nov 28" would start
27836
+ // producing observations — the false-pairing surface the 160-character bound
27837
+ // exists to fence. Pattern 2 keeps its adjacency rule for every non-spend
27838
+ // qualifier; this pattern only widens WHICH spend. Pinned by a test either way.
27839
+ new RegExp(`${SUBJECT}hit\\s+your\\s+(?<qualifier>(?:[a-z0-9'\u2019]+[\\s-]+){0,3}spend)\\s+limit[\\s\\S]{0,160}?resets\\s+(?<reset>${RESET_DATE})`, "i")
27818
27840
  ];
27819
27841
 
27820
27842
  // ../core/dist/claude-code-usage/run-marker.js
@@ -41683,7 +41683,13 @@ var BANNER_PATTERNS = [
41683
41683
  // "limit". This parser runs over agent-produced pane.log tails, so that is
41684
41684
  // reachable input. Requiring at least one separator per extra token, and
41685
41685
  // bounding the count, keeps it linear.
41686
- `${SUBJECT}hit\\s+your\\s+(?<qualifier>[a-z0-9]+(?:[\\s-]+[a-z0-9]+){0,3}\\s+)?limit${SEP}resets\\s+(?<reset>${RESET_DATE})`,
41686
+ //
41687
+ // ENG-10474: the token class admits an apostrophe (both ' and ’). It was
41688
+ // `[a-z0-9]`, so ANY possessive qualifier ("org's monthly", "team's") made
41689
+ // the whole banner unmatchable, not merely unclassified: null, no
41690
+ // observation, no alert. The apostrophe cannot match empty, so the
41691
+ // at-least-one-separator shape above still keeps this linear.
41692
+ `${SUBJECT}hit\\s+your\\s+(?<qualifier>[a-z0-9'\u2019]+(?:[\\s-]+[a-z0-9'\u2019]+){0,3}\\s+)?limit${SEP}resets\\s+(?<reset>${RESET_DATE})`,
41687
41693
  "i"
41688
41694
  ),
41689
41695
  // ENG-10365 — the Claude Team seat's INDIVIDUAL SPEND LIMIT.
@@ -41736,7 +41742,23 @@ var BANNER_PATTERNS = [
41736
41742
  // monitor's auto-close, and synthesising an instant we never read is the exact
41737
41743
  // confident-and-false reporting ENG-8901 exists to stop. Every spend banner
41738
41744
  // observed so far carries one.
41739
- new RegExp(`${SUBJECT}hit\\s+your\\s+(?<qualifier>(?:individual\\s+)?spend)\\s+limit[\\s\\S]{0,160}?resets\\s+(?<reset>${RESET_DATE})`, "i")
41745
+ //
41746
+ // ENG-10474 — THE CAPTURE NO LONGER GATES THE CLASSIFIER. It admitted exactly
41747
+ // `spend` or `individual spend`, so "You've hit your org's monthly spend
41748
+ // limit" failed here as well as in both patterns above and alyve's agents went
41749
+ // dark with every platform signal green. The capture now takes up to three
41750
+ // qualifier tokens (apostrophes allowed) in front of `spend`, and
41751
+ // `classifyLimitScope` decides what they mean, which is how pattern 2 already
41752
+ // worked.
41753
+ //
41754
+ // `spend` STAYS THE ANCHOR, and that is the design decision. Making this
41755
+ // capture as open as pattern 2's would turn it into "any saturated banner with
41756
+ // up to 160 characters before `resets`", so "You've hit your weekly limit"
41757
+ // followed by pane prose and an unrelated "resets Nov 28" would start
41758
+ // producing observations — the false-pairing surface the 160-character bound
41759
+ // exists to fence. Pattern 2 keeps its adjacency rule for every non-spend
41760
+ // qualifier; this pattern only widens WHICH spend. Pinned by a test either way.
41761
+ new RegExp(`${SUBJECT}hit\\s+your\\s+(?<qualifier>(?:[a-z0-9'\u2019]+[\\s-]+){0,3}spend)\\s+limit[\\s\\S]{0,160}?resets\\s+(?<reset>${RESET_DATE})`, "i")
41740
41762
  ];
41741
41763
 
41742
41764
  // ../core/dist/claude-code-usage/run-marker.js
@@ -35965,13 +35965,16 @@ function parseResetDateTime(humanDate, now) {
35965
35965
 
35966
35966
  // ../core/dist/claude-code-usage/banner-parser.js
35967
35967
  var SESSION_QUALIFIER = /^(?:session|\d{1,2}\s*-?\s*hours?|\d{1,2}h)$/i;
35968
- var SPEND_QUALIFIER = /^(?:individual\s+)?spend$/i;
35968
+ var SPEND_QUALIFIER = /^(?:individual\s+)?(?:(?:daily|weekly|monthly)\s+)?spend$/i;
35969
+ var ORG_SPEND_QUALIFIER = /^(?:your\s+)?(?:org|organi[sz]ation|team|workspace)['’]s\s+(?:(?:daily|weekly|monthly)\s+)?spend$/i;
35969
35970
  function classifyLimitScope(qualifier) {
35970
35971
  const q = (qualifier ?? "").trim();
35971
35972
  if (!q)
35972
35973
  return "weekly";
35973
35974
  if (SESSION_QUALIFIER.test(q))
35974
35975
  return "session";
35976
+ if (ORG_SPEND_QUALIFIER.test(q))
35977
+ return "org_spend";
35975
35978
  if (SPEND_QUALIFIER.test(q))
35976
35979
  return "spend";
35977
35980
  if (/^weekly$/i.test(q))
@@ -36008,7 +36011,13 @@ var BANNER_PATTERNS = [
36008
36011
  // "limit". This parser runs over agent-produced pane.log tails, so that is
36009
36012
  // reachable input. Requiring at least one separator per extra token, and
36010
36013
  // bounding the count, keeps it linear.
36011
- `${SUBJECT}hit\\s+your\\s+(?<qualifier>[a-z0-9]+(?:[\\s-]+[a-z0-9]+){0,3}\\s+)?limit${SEP}resets\\s+(?<reset>${RESET_DATE})`,
36014
+ //
36015
+ // ENG-10474: the token class admits an apostrophe (both ' and ’). It was
36016
+ // `[a-z0-9]`, so ANY possessive qualifier ("org's monthly", "team's") made
36017
+ // the whole banner unmatchable, not merely unclassified: null, no
36018
+ // observation, no alert. The apostrophe cannot match empty, so the
36019
+ // at-least-one-separator shape above still keeps this linear.
36020
+ `${SUBJECT}hit\\s+your\\s+(?<qualifier>[a-z0-9'\u2019]+(?:[\\s-]+[a-z0-9'\u2019]+){0,3}\\s+)?limit${SEP}resets\\s+(?<reset>${RESET_DATE})`,
36012
36021
  "i"
36013
36022
  ),
36014
36023
  // ENG-10365 — the Claude Team seat's INDIVIDUAL SPEND LIMIT.
@@ -36061,7 +36070,23 @@ var BANNER_PATTERNS = [
36061
36070
  // monitor's auto-close, and synthesising an instant we never read is the exact
36062
36071
  // confident-and-false reporting ENG-8901 exists to stop. Every spend banner
36063
36072
  // observed so far carries one.
36064
- new RegExp(`${SUBJECT}hit\\s+your\\s+(?<qualifier>(?:individual\\s+)?spend)\\s+limit[\\s\\S]{0,160}?resets\\s+(?<reset>${RESET_DATE})`, "i")
36073
+ //
36074
+ // ENG-10474 — THE CAPTURE NO LONGER GATES THE CLASSIFIER. It admitted exactly
36075
+ // `spend` or `individual spend`, so "You've hit your org's monthly spend
36076
+ // limit" failed here as well as in both patterns above and alyve's agents went
36077
+ // dark with every platform signal green. The capture now takes up to three
36078
+ // qualifier tokens (apostrophes allowed) in front of `spend`, and
36079
+ // `classifyLimitScope` decides what they mean, which is how pattern 2 already
36080
+ // worked.
36081
+ //
36082
+ // `spend` STAYS THE ANCHOR, and that is the design decision. Making this
36083
+ // capture as open as pattern 2's would turn it into "any saturated banner with
36084
+ // up to 160 characters before `resets`", so "You've hit your weekly limit"
36085
+ // followed by pane prose and an unrelated "resets Nov 28" would start
36086
+ // producing observations — the false-pairing surface the 160-character bound
36087
+ // exists to fence. Pattern 2 keeps its adjacency rule for every non-spend
36088
+ // qualifier; this pattern only widens WHICH spend. Pinned by a test either way.
36089
+ new RegExp(`${SUBJECT}hit\\s+your\\s+(?<qualifier>(?:[a-z0-9'\u2019]+[\\s-]+){0,3}spend)\\s+limit[\\s\\S]{0,160}?resets\\s+(?<reset>${RESET_DATE})`, "i")
36065
36090
  ];
36066
36091
  function parseUsageBanner(text, now = /* @__PURE__ */ new Date()) {
36067
36092
  let bestIndex = -1;
@@ -36001,13 +36001,16 @@ function parseResetDateTime(humanDate, now) {
36001
36001
 
36002
36002
  // ../core/dist/claude-code-usage/banner-parser.js
36003
36003
  var SESSION_QUALIFIER = /^(?:session|\d{1,2}\s*-?\s*hours?|\d{1,2}h)$/i;
36004
- var SPEND_QUALIFIER = /^(?:individual\s+)?spend$/i;
36004
+ var SPEND_QUALIFIER = /^(?:individual\s+)?(?:(?:daily|weekly|monthly)\s+)?spend$/i;
36005
+ var ORG_SPEND_QUALIFIER = /^(?:your\s+)?(?:org|organi[sz]ation|team|workspace)['’]s\s+(?:(?:daily|weekly|monthly)\s+)?spend$/i;
36005
36006
  function classifyLimitScope(qualifier) {
36006
36007
  const q = (qualifier ?? "").trim();
36007
36008
  if (!q)
36008
36009
  return "weekly";
36009
36010
  if (SESSION_QUALIFIER.test(q))
36010
36011
  return "session";
36012
+ if (ORG_SPEND_QUALIFIER.test(q))
36013
+ return "org_spend";
36011
36014
  if (SPEND_QUALIFIER.test(q))
36012
36015
  return "spend";
36013
36016
  if (/^weekly$/i.test(q))
@@ -36044,7 +36047,13 @@ var BANNER_PATTERNS = [
36044
36047
  // "limit". This parser runs over agent-produced pane.log tails, so that is
36045
36048
  // reachable input. Requiring at least one separator per extra token, and
36046
36049
  // bounding the count, keeps it linear.
36047
- `${SUBJECT}hit\\s+your\\s+(?<qualifier>[a-z0-9]+(?:[\\s-]+[a-z0-9]+){0,3}\\s+)?limit${SEP}resets\\s+(?<reset>${RESET_DATE})`,
36050
+ //
36051
+ // ENG-10474: the token class admits an apostrophe (both ' and ’). It was
36052
+ // `[a-z0-9]`, so ANY possessive qualifier ("org's monthly", "team's") made
36053
+ // the whole banner unmatchable, not merely unclassified: null, no
36054
+ // observation, no alert. The apostrophe cannot match empty, so the
36055
+ // at-least-one-separator shape above still keeps this linear.
36056
+ `${SUBJECT}hit\\s+your\\s+(?<qualifier>[a-z0-9'\u2019]+(?:[\\s-]+[a-z0-9'\u2019]+){0,3}\\s+)?limit${SEP}resets\\s+(?<reset>${RESET_DATE})`,
36048
36057
  "i"
36049
36058
  ),
36050
36059
  // ENG-10365 — the Claude Team seat's INDIVIDUAL SPEND LIMIT.
@@ -36097,7 +36106,23 @@ var BANNER_PATTERNS = [
36097
36106
  // monitor's auto-close, and synthesising an instant we never read is the exact
36098
36107
  // confident-and-false reporting ENG-8901 exists to stop. Every spend banner
36099
36108
  // observed so far carries one.
36100
- new RegExp(`${SUBJECT}hit\\s+your\\s+(?<qualifier>(?:individual\\s+)?spend)\\s+limit[\\s\\S]{0,160}?resets\\s+(?<reset>${RESET_DATE})`, "i")
36109
+ //
36110
+ // ENG-10474 — THE CAPTURE NO LONGER GATES THE CLASSIFIER. It admitted exactly
36111
+ // `spend` or `individual spend`, so "You've hit your org's monthly spend
36112
+ // limit" failed here as well as in both patterns above and alyve's agents went
36113
+ // dark with every platform signal green. The capture now takes up to three
36114
+ // qualifier tokens (apostrophes allowed) in front of `spend`, and
36115
+ // `classifyLimitScope` decides what they mean, which is how pattern 2 already
36116
+ // worked.
36117
+ //
36118
+ // `spend` STAYS THE ANCHOR, and that is the design decision. Making this
36119
+ // capture as open as pattern 2's would turn it into "any saturated banner with
36120
+ // up to 160 characters before `resets`", so "You've hit your weekly limit"
36121
+ // followed by pane prose and an unrelated "resets Nov 28" would start
36122
+ // producing observations — the false-pairing surface the 160-character bound
36123
+ // exists to fence. Pattern 2 keeps its adjacency rule for every non-spend
36124
+ // qualifier; this pattern only widens WHICH spend. Pinned by a test either way.
36125
+ new RegExp(`${SUBJECT}hit\\s+your\\s+(?<qualifier>(?:[a-z0-9'\u2019]+[\\s-]+){0,3}spend)\\s+limit[\\s\\S]{0,160}?resets\\s+(?<reset>${RESET_DATE})`, "i")
36101
36126
  ];
36102
36127
  function parseUsageBanner(text, now = /* @__PURE__ */ new Date()) {
36103
36128
  let bestIndex = -1;
@@ -62,8 +62,8 @@ import {
62
62
  writeDirectChatSessionState,
63
63
  writeEgressAllowlist,
64
64
  writePersistentClaudeWrapper
65
- } from "./chunk-NGJFE75J.js";
66
- import "./chunk-ZOPP3ZC7.js";
65
+ } from "./chunk-BLEV5PAO.js";
66
+ import "./chunk-VHO7KAB7.js";
67
67
  import "./chunk-XWVM4KPK.js";
68
68
  export {
69
69
  CLAUDE_HOST_WIDE,
@@ -130,4 +130,4 @@ export {
130
130
  writeEgressAllowlist,
131
131
  writePersistentClaudeWrapper
132
132
  };
133
- //# sourceMappingURL=persistent-session-OQRYZ3YP.js.map
133
+ //# sourceMappingURL=persistent-session-UEAJJ72P.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-NGJFE75J.js";
4
- import "./chunk-ZOPP3ZC7.js";
3
+ } from "./chunk-BLEV5PAO.js";
4
+ import "./chunk-VHO7KAB7.js";
5
5
  import "./chunk-XWVM4KPK.js";
6
6
 
7
7
  // src/lib/responsiveness-probe.ts
@@ -799,4 +799,4 @@ export {
799
799
  readAndResetSlackReplyBindingClassifications,
800
800
  readAndResetSlackReplyTargetClassifications
801
801
  };
802
- //# sourceMappingURL=responsiveness-probe-RBWP6HJE.js.map
802
+ //# sourceMappingURL=responsiveness-probe-VXJKA6RF.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  sessionTranscriptDir
3
- } from "./chunk-ZOPP3ZC7.js";
3
+ } from "./chunk-VHO7KAB7.js";
4
4
 
5
5
  // src/lib/session-auth-dead.ts
6
6
  import { closeSync, openSync, readSync, readdirSync, statSync } from "fs";
@@ -203,4 +203,4 @@ export {
203
203
  decideSessionAuthState,
204
204
  probeSessionAuth
205
205
  };
206
- //# sourceMappingURL=session-auth-dead-4KUPTD7M.js.map
206
+ //# sourceMappingURL=session-auth-dead-XOP4XYBD.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.922",
3
+ "version": "0.28.924",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {