@integrity-labs/agt-cli 0.28.451 → 0.28.453

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.
@@ -35119,15 +35119,24 @@ var FLAG_REGISTRY = [
35119
35119
  // a deliberate availability trade (the refusal is free, but it is still a
35120
35120
  // dispatch the operator previously suppressed), so flipping toward it is an
35121
35121
  // audited change (ADR-0022 sensitive-flag confirm).
35122
- sensitive: true
35123
- // ENG-8149: `since` is the agt-cli version that first carries
35124
- // resolveUsageLimitReactiveMode + the MCP watcher. It cannot be known before
35125
- // this lands (the auto-publish patch-bumps on merge), and an undefined
35126
- // `since` makes the flip-reach modal claim FULL reach - true for flags that
35127
- // predate the reach work, wrong for a NEW host-read flag whose reader older
35128
- // hosts simply do not have. Backfilled by a follow-up commit once the
35129
- // publishing run reports the version. Excluded from projectDefinition, so
35122
+ sensitive: true,
35123
+ // ENG-8149 / ENG-8229: the agt-cli that first carries
35124
+ // resolveUsageLimitReactiveMode in ALL THREE channel servers - published from
35125
+ // the ENG-8207 merge 0294fa1a8. Without this the flip-reach modal reports FULL
35126
+ // reach, because an undefined `since` means "every host can honour it" - true
35127
+ // for flags that predate the reach work, wrong for a NEW host-read flag whose
35128
+ // reader older hosts simply do not have. Excluded from projectDefinition, so
35130
35129
  // setting it does not roll FLAGS_SCHEMA_VERSION.
35130
+ //
35131
+ // Deliberately the LATER of the two versions this flag's reader shipped in.
35132
+ // Unlike its siblings, this reader landed in two stages: direct-chat at the
35133
+ // ENG-8201 Slice 2 publish, slack + telegram only at 0.28.450 (ENG-8207) - and
35134
+ // `since` is one version per flag, so it cannot express "partially honoured".
35135
+ // A host in between genuinely honours the flag for direct-chat and is still
35136
+ // classified `stale`. That understates reach rather than overstating it, which
35137
+ // is the safe direction, and it is the useful one while the flag sits at
35138
+ // enforce and slack/telegram adoption is what an operator needs to track.
35139
+ since: "0.28.450"
35131
35140
  },
35132
35141
  {
35133
35142
  key: "slack-hot-thread-guard",
@@ -35796,6 +35805,14 @@ function computeFlagsSchemaVersion() {
35796
35805
  }
35797
35806
  var FLAGS_SCHEMA_VERSION = computeFlagsSchemaVersion();
35798
35807
 
35808
+ // ../core/dist/restart/breaker-thresholds.js
35809
+ var RESTART_BREAKER_PROVISIONING_MAX = 5;
35810
+ var BIND_FAILURE_QUARANTINE_THRESHOLD = deriveBindFailureQuarantineThreshold(RESTART_BREAKER_PROVISIONING_MAX);
35811
+ function deriveBindFailureQuarantineThreshold(provisioningMax) {
35812
+ return Math.max(2, provisioningMax - 2);
35813
+ }
35814
+ var MIN_PROVISIONING_MAX_FOR_QUARANTINE_ORDERING = BIND_FAILURE_QUARANTINE_THRESHOLD + 1;
35815
+
35799
35816
  // src/usage-limit-notice.ts
35800
35817
  function usageLimitMarkerPath(codeName) {
35801
35818
  if (!codeName) return null;
@@ -40464,15 +40464,24 @@ var FLAG_REGISTRY = [
40464
40464
  // a deliberate availability trade (the refusal is free, but it is still a
40465
40465
  // dispatch the operator previously suppressed), so flipping toward it is an
40466
40466
  // audited change (ADR-0022 sensitive-flag confirm).
40467
- sensitive: true
40468
- // ENG-8149: `since` is the agt-cli version that first carries
40469
- // resolveUsageLimitReactiveMode + the MCP watcher. It cannot be known before
40470
- // this lands (the auto-publish patch-bumps on merge), and an undefined
40471
- // `since` makes the flip-reach modal claim FULL reach - true for flags that
40472
- // predate the reach work, wrong for a NEW host-read flag whose reader older
40473
- // hosts simply do not have. Backfilled by a follow-up commit once the
40474
- // publishing run reports the version. Excluded from projectDefinition, so
40467
+ sensitive: true,
40468
+ // ENG-8149 / ENG-8229: the agt-cli that first carries
40469
+ // resolveUsageLimitReactiveMode in ALL THREE channel servers - published from
40470
+ // the ENG-8207 merge 0294fa1a8. Without this the flip-reach modal reports FULL
40471
+ // reach, because an undefined `since` means "every host can honour it" - true
40472
+ // for flags that predate the reach work, wrong for a NEW host-read flag whose
40473
+ // reader older hosts simply do not have. Excluded from projectDefinition, so
40475
40474
  // setting it does not roll FLAGS_SCHEMA_VERSION.
40475
+ //
40476
+ // Deliberately the LATER of the two versions this flag's reader shipped in.
40477
+ // Unlike its siblings, this reader landed in two stages: direct-chat at the
40478
+ // ENG-8201 Slice 2 publish, slack + telegram only at 0.28.450 (ENG-8207) - and
40479
+ // `since` is one version per flag, so it cannot express "partially honoured".
40480
+ // A host in between genuinely honours the flag for direct-chat and is still
40481
+ // classified `stale`. That understates reach rather than overstating it, which
40482
+ // is the safe direction, and it is the useful one while the flag sits at
40483
+ // enforce and slack/telegram adoption is what an operator needs to track.
40484
+ since: "0.28.450"
40476
40485
  },
40477
40486
  {
40478
40487
  key: "slack-hot-thread-guard",
@@ -41141,6 +41150,14 @@ function computeFlagsSchemaVersion() {
41141
41150
  }
41142
41151
  var FLAGS_SCHEMA_VERSION = computeFlagsSchemaVersion();
41143
41152
 
41153
+ // ../core/dist/restart/breaker-thresholds.js
41154
+ var RESTART_BREAKER_PROVISIONING_MAX = 5;
41155
+ var BIND_FAILURE_QUARANTINE_THRESHOLD = deriveBindFailureQuarantineThreshold(RESTART_BREAKER_PROVISIONING_MAX);
41156
+ function deriveBindFailureQuarantineThreshold(provisioningMax) {
41157
+ return Math.max(2, provisioningMax - 2);
41158
+ }
41159
+ var MIN_PROVISIONING_MAX_FOR_QUARANTINE_ORDERING = BIND_FAILURE_QUARANTINE_THRESHOLD + 1;
41160
+
41144
41161
  // src/identity.ts
41145
41162
  var IdentityError = class extends Error {
41146
41163
  status;
@@ -34688,15 +34688,24 @@ var FLAG_REGISTRY = [
34688
34688
  // a deliberate availability trade (the refusal is free, but it is still a
34689
34689
  // dispatch the operator previously suppressed), so flipping toward it is an
34690
34690
  // audited change (ADR-0022 sensitive-flag confirm).
34691
- sensitive: true
34692
- // ENG-8149: `since` is the agt-cli version that first carries
34693
- // resolveUsageLimitReactiveMode + the MCP watcher. It cannot be known before
34694
- // this lands (the auto-publish patch-bumps on merge), and an undefined
34695
- // `since` makes the flip-reach modal claim FULL reach - true for flags that
34696
- // predate the reach work, wrong for a NEW host-read flag whose reader older
34697
- // hosts simply do not have. Backfilled by a follow-up commit once the
34698
- // publishing run reports the version. Excluded from projectDefinition, so
34691
+ sensitive: true,
34692
+ // ENG-8149 / ENG-8229: the agt-cli that first carries
34693
+ // resolveUsageLimitReactiveMode in ALL THREE channel servers - published from
34694
+ // the ENG-8207 merge 0294fa1a8. Without this the flip-reach modal reports FULL
34695
+ // reach, because an undefined `since` means "every host can honour it" - true
34696
+ // for flags that predate the reach work, wrong for a NEW host-read flag whose
34697
+ // reader older hosts simply do not have. Excluded from projectDefinition, so
34699
34698
  // setting it does not roll FLAGS_SCHEMA_VERSION.
34699
+ //
34700
+ // Deliberately the LATER of the two versions this flag's reader shipped in.
34701
+ // Unlike its siblings, this reader landed in two stages: direct-chat at the
34702
+ // ENG-8201 Slice 2 publish, slack + telegram only at 0.28.450 (ENG-8207) - and
34703
+ // `since` is one version per flag, so it cannot express "partially honoured".
34704
+ // A host in between genuinely honours the flag for direct-chat and is still
34705
+ // classified `stale`. That understates reach rather than overstating it, which
34706
+ // is the safe direction, and it is the useful one while the flag sits at
34707
+ // enforce and slack/telegram adoption is what an operator needs to track.
34708
+ since: "0.28.450"
34700
34709
  },
34701
34710
  {
34702
34711
  key: "slack-hot-thread-guard",
@@ -35365,6 +35374,14 @@ function computeFlagsSchemaVersion() {
35365
35374
  }
35366
35375
  var FLAGS_SCHEMA_VERSION = computeFlagsSchemaVersion();
35367
35376
 
35377
+ // ../core/dist/restart/breaker-thresholds.js
35378
+ var RESTART_BREAKER_PROVISIONING_MAX = 5;
35379
+ var BIND_FAILURE_QUARANTINE_THRESHOLD = deriveBindFailureQuarantineThreshold(RESTART_BREAKER_PROVISIONING_MAX);
35380
+ function deriveBindFailureQuarantineThreshold(provisioningMax) {
35381
+ return Math.max(2, provisioningMax - 2);
35382
+ }
35383
+ var MIN_PROVISIONING_MAX_FOR_QUARANTINE_ORDERING = BIND_FAILURE_QUARANTINE_THRESHOLD + 1;
35384
+
35368
35385
  // src/usage-limit-notice.ts
35369
35386
  function usageLimitMarkerPath(codeName) {
35370
35387
  if (!codeName) return null;
@@ -34990,15 +34990,24 @@ var FLAG_REGISTRY = [
34990
34990
  // a deliberate availability trade (the refusal is free, but it is still a
34991
34991
  // dispatch the operator previously suppressed), so flipping toward it is an
34992
34992
  // audited change (ADR-0022 sensitive-flag confirm).
34993
- sensitive: true
34994
- // ENG-8149: `since` is the agt-cli version that first carries
34995
- // resolveUsageLimitReactiveMode + the MCP watcher. It cannot be known before
34996
- // this lands (the auto-publish patch-bumps on merge), and an undefined
34997
- // `since` makes the flip-reach modal claim FULL reach - true for flags that
34998
- // predate the reach work, wrong for a NEW host-read flag whose reader older
34999
- // hosts simply do not have. Backfilled by a follow-up commit once the
35000
- // publishing run reports the version. Excluded from projectDefinition, so
34993
+ sensitive: true,
34994
+ // ENG-8149 / ENG-8229: the agt-cli that first carries
34995
+ // resolveUsageLimitReactiveMode in ALL THREE channel servers - published from
34996
+ // the ENG-8207 merge 0294fa1a8. Without this the flip-reach modal reports FULL
34997
+ // reach, because an undefined `since` means "every host can honour it" - true
34998
+ // for flags that predate the reach work, wrong for a NEW host-read flag whose
34999
+ // reader older hosts simply do not have. Excluded from projectDefinition, so
35001
35000
  // setting it does not roll FLAGS_SCHEMA_VERSION.
35001
+ //
35002
+ // Deliberately the LATER of the two versions this flag's reader shipped in.
35003
+ // Unlike its siblings, this reader landed in two stages: direct-chat at the
35004
+ // ENG-8201 Slice 2 publish, slack + telegram only at 0.28.450 (ENG-8207) - and
35005
+ // `since` is one version per flag, so it cannot express "partially honoured".
35006
+ // A host in between genuinely honours the flag for direct-chat and is still
35007
+ // classified `stale`. That understates reach rather than overstating it, which
35008
+ // is the safe direction, and it is the useful one while the flag sits at
35009
+ // enforce and slack/telegram adoption is what an operator needs to track.
35010
+ since: "0.28.450"
35002
35011
  },
35003
35012
  {
35004
35013
  key: "slack-hot-thread-guard",
@@ -35667,6 +35676,14 @@ function computeFlagsSchemaVersion() {
35667
35676
  }
35668
35677
  var FLAGS_SCHEMA_VERSION = computeFlagsSchemaVersion();
35669
35678
 
35679
+ // ../core/dist/restart/breaker-thresholds.js
35680
+ var RESTART_BREAKER_PROVISIONING_MAX = 5;
35681
+ var BIND_FAILURE_QUARANTINE_THRESHOLD = deriveBindFailureQuarantineThreshold(RESTART_BREAKER_PROVISIONING_MAX);
35682
+ function deriveBindFailureQuarantineThreshold(provisioningMax) {
35683
+ return Math.max(2, provisioningMax - 2);
35684
+ }
35685
+ var MIN_PROVISIONING_MAX_FOR_QUARANTINE_ORDERING = BIND_FAILURE_QUARANTINE_THRESHOLD + 1;
35686
+
35670
35687
  // src/usage-limit-notice.ts
35671
35688
  function usageLimitMarkerPath(codeName) {
35672
35689
  if (!codeName) return null;
@@ -36,7 +36,7 @@ import {
36
36
  writeDirectChatSessionState,
37
37
  writeEgressAllowlist,
38
38
  writePersistentClaudeWrapper
39
- } from "./chunk-ESZRW7A3.js";
39
+ } from "./chunk-3NJHNIO3.js";
40
40
  import "./chunk-XWVM4KPK.js";
41
41
  export {
42
42
  EGRESS_BASELINE_DOMAINS,
@@ -77,4 +77,4 @@ export {
77
77
  writeEgressAllowlist,
78
78
  writePersistentClaudeWrapper
79
79
  };
80
- //# sourceMappingURL=persistent-session-7HZXY56P.js.map
80
+ //# sourceMappingURL=persistent-session-X5N7UFEF.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-ESZRW7A3.js";
3
+ } from "./chunk-3NJHNIO3.js";
4
4
  import "./chunk-XWVM4KPK.js";
5
5
 
6
6
  // src/lib/responsiveness-probe.ts
@@ -528,4 +528,4 @@ export {
528
528
  readAndResetSlackReplyBindingClassifications,
529
529
  readAndResetSlackReplyTargetClassifications
530
530
  };
531
- //# sourceMappingURL=responsiveness-probe-AIA7ZEBW.js.map
531
+ //# sourceMappingURL=responsiveness-probe-OAZ55KPC.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.451",
3
+ "version": "0.28.453",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {