@integrity-labs/agt-cli 0.28.480 → 0.28.481

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.
@@ -34852,17 +34852,25 @@ var FLAG_REGISTRY = [
34852
34852
  },
34853
34853
  {
34854
34854
  key: "synthetic-probe-enabled",
34855
- description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint. Ships dark (OFF) because the probe cron was generating false positives (probe_timeout on angie for 7+ days while healthy, ENG-8048) and had open cron_invocation_errors alarms (since 2026-07-23). Flip ON per-environment via the admin Feature Flags page once the reliability issues are resolved. The existing AUGMENTED_SYNTHETIC_PROBE_ENABLED env var is the declared envVar for this flag (ADR-0022): set it to "true"/"1" to force-enable (env takes precedence over the DB stage value), or "false"/"0" to force-disable without a DB lookup. Evaluated as a global stage value by the central cron (no per-org targeting). Boolean gate.',
34855
+ description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint. This is the fleet-wide kill switch for synthetic probing, flippable per-environment from the admin Feature Flags page. The AUGMENTED_SYNTHETIC_PROBE_ENABLED env var is the declared envVar for this flag (ADR-0022): set it in the deploy environment to "true"/"1" to force-enable or "false"/"0" to force-disable without a DB lookup. Leave it UNSET (the default on every stage since ENG-8303) so this flag governs. Evaluated as a global stage value by the central cron (no per-org targeting). Boolean gate.',
34856
34856
  flagType: "boolean",
34857
- // Safe/dark default: false = probe off. This encodes the ENG-8074 intent (disable
34858
- // in prod until reliability issues are resolved) and is the fail-safe direction for
34859
- // a flag-DB read error — a hiccup degrades to keeping the cron dormant rather than
34860
- // silently re-arming a broken probe fleet-wide.
34861
- // The env var AUGMENTED_SYNTHETIC_PROBE_ENABLED was the pre-flag emergency kill switch
34862
- // (read as `!== 'false'`, so unset = probe ON). The flag inverts this: unset env var
34863
- // now resolves to the flag default (OFF). Set AUGMENTED_SYNTHETIC_PROBE_ENABLED=true to
34864
- // explicitly re-arm the probe via env, or flip the flag ON from the admin UI.
34865
- defaultValue: false,
34857
+ // ON by default this deliberately matches the fleet's live behaviour rather than the
34858
+ // dark default ENG-8074 declared, and the history is worth keeping straight:
34859
+ //
34860
+ // ENG-8074 set `false` to hold the probe dark until its reliability issues were fixed
34861
+ // (probe_timeout false positives, ENG-8048; open cron_invocation_errors alarms). That
34862
+ // default was never reachable: sst.config.ts pinned the declared envVar to the literal
34863
+ // 'true' on every deployed stage, and a declared envVar outranks the DB value, so the
34864
+ // probe ran throughout (ENG-8303). ENG-8303 un-pinned the env var, which hands this flag
34865
+ // real authority for the first time — so its value must now be chosen for the fleet it
34866
+ // actually controls, not inherited from an intent that never took effect.
34867
+ //
34868
+ // `true` keeps prod exactly as it has been running. Flipping to `false` here instead
34869
+ // would have silently switched agent liveness probing off at the next deploy — including
34870
+ // the prod verification of ENG-8302's PutMetricAlarm quota fix, which needs the cron
34871
+ // alive to observe. The reliability concern behind ENG-8074 is addressed by ENG-8302;
34872
+ // if it recurs, the kill switch is now a genuine admin-UI flip rather than a redeploy.
34873
+ defaultValue: true,
34866
34874
  envVar: "AUGMENTED_SYNTHETIC_PROBE_ENABLED"
34867
34875
  },
34868
34876
  {
@@ -40799,17 +40799,25 @@ var FLAG_REGISTRY = [
40799
40799
  },
40800
40800
  {
40801
40801
  key: "synthetic-probe-enabled",
40802
- description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint. Ships dark (OFF) because the probe cron was generating false positives (probe_timeout on angie for 7+ days while healthy, ENG-8048) and had open cron_invocation_errors alarms (since 2026-07-23). Flip ON per-environment via the admin Feature Flags page once the reliability issues are resolved. The existing AUGMENTED_SYNTHETIC_PROBE_ENABLED env var is the declared envVar for this flag (ADR-0022): set it to "true"/"1" to force-enable (env takes precedence over the DB stage value), or "false"/"0" to force-disable without a DB lookup. Evaluated as a global stage value by the central cron (no per-org targeting). Boolean gate.',
40802
+ description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint. This is the fleet-wide kill switch for synthetic probing, flippable per-environment from the admin Feature Flags page. The AUGMENTED_SYNTHETIC_PROBE_ENABLED env var is the declared envVar for this flag (ADR-0022): set it in the deploy environment to "true"/"1" to force-enable or "false"/"0" to force-disable without a DB lookup. Leave it UNSET (the default on every stage since ENG-8303) so this flag governs. Evaluated as a global stage value by the central cron (no per-org targeting). Boolean gate.',
40803
40803
  flagType: "boolean",
40804
- // Safe/dark default: false = probe off. This encodes the ENG-8074 intent (disable
40805
- // in prod until reliability issues are resolved) and is the fail-safe direction for
40806
- // a flag-DB read error — a hiccup degrades to keeping the cron dormant rather than
40807
- // silently re-arming a broken probe fleet-wide.
40808
- // The env var AUGMENTED_SYNTHETIC_PROBE_ENABLED was the pre-flag emergency kill switch
40809
- // (read as `!== 'false'`, so unset = probe ON). The flag inverts this: unset env var
40810
- // now resolves to the flag default (OFF). Set AUGMENTED_SYNTHETIC_PROBE_ENABLED=true to
40811
- // explicitly re-arm the probe via env, or flip the flag ON from the admin UI.
40812
- defaultValue: false,
40804
+ // ON by default this deliberately matches the fleet's live behaviour rather than the
40805
+ // dark default ENG-8074 declared, and the history is worth keeping straight:
40806
+ //
40807
+ // ENG-8074 set `false` to hold the probe dark until its reliability issues were fixed
40808
+ // (probe_timeout false positives, ENG-8048; open cron_invocation_errors alarms). That
40809
+ // default was never reachable: sst.config.ts pinned the declared envVar to the literal
40810
+ // 'true' on every deployed stage, and a declared envVar outranks the DB value, so the
40811
+ // probe ran throughout (ENG-8303). ENG-8303 un-pinned the env var, which hands this flag
40812
+ // real authority for the first time — so its value must now be chosen for the fleet it
40813
+ // actually controls, not inherited from an intent that never took effect.
40814
+ //
40815
+ // `true` keeps prod exactly as it has been running. Flipping to `false` here instead
40816
+ // would have silently switched agent liveness probing off at the next deploy — including
40817
+ // the prod verification of ENG-8302's PutMetricAlarm quota fix, which needs the cron
40818
+ // alive to observe. The reliability concern behind ENG-8074 is addressed by ENG-8302;
40819
+ // if it recurs, the kill switch is now a genuine admin-UI flip rather than a redeploy.
40820
+ defaultValue: true,
40813
40821
  envVar: "AUGMENTED_SYNTHETIC_PROBE_ENABLED"
40814
40822
  },
40815
40823
  {
@@ -35077,17 +35077,25 @@ var FLAG_REGISTRY = [
35077
35077
  },
35078
35078
  {
35079
35079
  key: "synthetic-probe-enabled",
35080
- description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint. Ships dark (OFF) because the probe cron was generating false positives (probe_timeout on angie for 7+ days while healthy, ENG-8048) and had open cron_invocation_errors alarms (since 2026-07-23). Flip ON per-environment via the admin Feature Flags page once the reliability issues are resolved. The existing AUGMENTED_SYNTHETIC_PROBE_ENABLED env var is the declared envVar for this flag (ADR-0022): set it to "true"/"1" to force-enable (env takes precedence over the DB stage value), or "false"/"0" to force-disable without a DB lookup. Evaluated as a global stage value by the central cron (no per-org targeting). Boolean gate.',
35080
+ description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint. This is the fleet-wide kill switch for synthetic probing, flippable per-environment from the admin Feature Flags page. The AUGMENTED_SYNTHETIC_PROBE_ENABLED env var is the declared envVar for this flag (ADR-0022): set it in the deploy environment to "true"/"1" to force-enable or "false"/"0" to force-disable without a DB lookup. Leave it UNSET (the default on every stage since ENG-8303) so this flag governs. Evaluated as a global stage value by the central cron (no per-org targeting). Boolean gate.',
35081
35081
  flagType: "boolean",
35082
- // Safe/dark default: false = probe off. This encodes the ENG-8074 intent (disable
35083
- // in prod until reliability issues are resolved) and is the fail-safe direction for
35084
- // a flag-DB read error — a hiccup degrades to keeping the cron dormant rather than
35085
- // silently re-arming a broken probe fleet-wide.
35086
- // The env var AUGMENTED_SYNTHETIC_PROBE_ENABLED was the pre-flag emergency kill switch
35087
- // (read as `!== 'false'`, so unset = probe ON). The flag inverts this: unset env var
35088
- // now resolves to the flag default (OFF). Set AUGMENTED_SYNTHETIC_PROBE_ENABLED=true to
35089
- // explicitly re-arm the probe via env, or flip the flag ON from the admin UI.
35090
- defaultValue: false,
35082
+ // ON by default this deliberately matches the fleet's live behaviour rather than the
35083
+ // dark default ENG-8074 declared, and the history is worth keeping straight:
35084
+ //
35085
+ // ENG-8074 set `false` to hold the probe dark until its reliability issues were fixed
35086
+ // (probe_timeout false positives, ENG-8048; open cron_invocation_errors alarms). That
35087
+ // default was never reachable: sst.config.ts pinned the declared envVar to the literal
35088
+ // 'true' on every deployed stage, and a declared envVar outranks the DB value, so the
35089
+ // probe ran throughout (ENG-8303). ENG-8303 un-pinned the env var, which hands this flag
35090
+ // real authority for the first time — so its value must now be chosen for the fleet it
35091
+ // actually controls, not inherited from an intent that never took effect.
35092
+ //
35093
+ // `true` keeps prod exactly as it has been running. Flipping to `false` here instead
35094
+ // would have silently switched agent liveness probing off at the next deploy — including
35095
+ // the prod verification of ENG-8302's PutMetricAlarm quota fix, which needs the cron
35096
+ // alive to observe. The reliability concern behind ENG-8074 is addressed by ENG-8302;
35097
+ // if it recurs, the kill switch is now a genuine admin-UI flip rather than a redeploy.
35098
+ defaultValue: true,
35091
35099
  envVar: "AUGMENTED_SYNTHETIC_PROBE_ENABLED"
35092
35100
  },
35093
35101
  {
@@ -35403,17 +35403,25 @@ var FLAG_REGISTRY = [
35403
35403
  },
35404
35404
  {
35405
35405
  key: "synthetic-probe-enabled",
35406
- description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint. Ships dark (OFF) because the probe cron was generating false positives (probe_timeout on angie for 7+ days while healthy, ENG-8048) and had open cron_invocation_errors alarms (since 2026-07-23). Flip ON per-environment via the admin Feature Flags page once the reliability issues are resolved. The existing AUGMENTED_SYNTHETIC_PROBE_ENABLED env var is the declared envVar for this flag (ADR-0022): set it to "true"/"1" to force-enable (env takes precedence over the DB stage value), or "false"/"0" to force-disable without a DB lookup. Evaluated as a global stage value by the central cron (no per-org targeting). Boolean gate.',
35406
+ description: 'Global gate for the agent synthetic-liveness cron (ENG-8074). When OFF, the cron exits after reading the flag \u2014 no probes sent, no metrics emitted, no CloudWatch alarms fired, near-zero DB footprint. This is the fleet-wide kill switch for synthetic probing, flippable per-environment from the admin Feature Flags page. The AUGMENTED_SYNTHETIC_PROBE_ENABLED env var is the declared envVar for this flag (ADR-0022): set it in the deploy environment to "true"/"1" to force-enable or "false"/"0" to force-disable without a DB lookup. Leave it UNSET (the default on every stage since ENG-8303) so this flag governs. Evaluated as a global stage value by the central cron (no per-org targeting). Boolean gate.',
35407
35407
  flagType: "boolean",
35408
- // Safe/dark default: false = probe off. This encodes the ENG-8074 intent (disable
35409
- // in prod until reliability issues are resolved) and is the fail-safe direction for
35410
- // a flag-DB read error — a hiccup degrades to keeping the cron dormant rather than
35411
- // silently re-arming a broken probe fleet-wide.
35412
- // The env var AUGMENTED_SYNTHETIC_PROBE_ENABLED was the pre-flag emergency kill switch
35413
- // (read as `!== 'false'`, so unset = probe ON). The flag inverts this: unset env var
35414
- // now resolves to the flag default (OFF). Set AUGMENTED_SYNTHETIC_PROBE_ENABLED=true to
35415
- // explicitly re-arm the probe via env, or flip the flag ON from the admin UI.
35416
- defaultValue: false,
35408
+ // ON by default this deliberately matches the fleet's live behaviour rather than the
35409
+ // dark default ENG-8074 declared, and the history is worth keeping straight:
35410
+ //
35411
+ // ENG-8074 set `false` to hold the probe dark until its reliability issues were fixed
35412
+ // (probe_timeout false positives, ENG-8048; open cron_invocation_errors alarms). That
35413
+ // default was never reachable: sst.config.ts pinned the declared envVar to the literal
35414
+ // 'true' on every deployed stage, and a declared envVar outranks the DB value, so the
35415
+ // probe ran throughout (ENG-8303). ENG-8303 un-pinned the env var, which hands this flag
35416
+ // real authority for the first time — so its value must now be chosen for the fleet it
35417
+ // actually controls, not inherited from an intent that never took effect.
35418
+ //
35419
+ // `true` keeps prod exactly as it has been running. Flipping to `false` here instead
35420
+ // would have silently switched agent liveness probing off at the next deploy — including
35421
+ // the prod verification of ENG-8302's PutMetricAlarm quota fix, which needs the cron
35422
+ // alive to observe. The reliability concern behind ENG-8074 is addressed by ENG-8302;
35423
+ // if it recurs, the kill switch is now a genuine admin-UI flip rather than a redeploy.
35424
+ defaultValue: true,
35417
35425
  envVar: "AUGMENTED_SYNTHETIC_PROBE_ENABLED"
35418
35426
  },
35419
35427
  {
@@ -36,7 +36,7 @@ import {
36
36
  writeDirectChatSessionState,
37
37
  writeEgressAllowlist,
38
38
  writePersistentClaudeWrapper
39
- } from "./chunk-EOH75U22.js";
39
+ } from "./chunk-4XLEJP7G.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-USTI74Q5.js.map
80
+ //# sourceMappingURL=persistent-session-Q4YE53I5.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-EOH75U22.js";
3
+ } from "./chunk-4XLEJP7G.js";
4
4
  import "./chunk-XWVM4KPK.js";
5
5
 
6
6
  // src/lib/responsiveness-probe.ts
@@ -596,4 +596,4 @@ export {
596
596
  readAndResetSlackReplyBindingClassifications,
597
597
  readAndResetSlackReplyTargetClassifications
598
598
  };
599
- //# sourceMappingURL=responsiveness-probe-3PRCIAML.js.map
599
+ //# sourceMappingURL=responsiveness-probe-MOFFFCOY.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.480",
3
+ "version": "0.28.481",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {