@integrity-labs/agt-cli 0.28.890 → 0.28.891

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.
@@ -43707,14 +43707,38 @@ var FLAG_REGISTRY = [
43707
43707
  },
43708
43708
  {
43709
43709
  key: "agent-unified-screen",
43710
- description: 'Unified agent screen redesign (ENG-8478 epic / ENG-8480). When ON, the webapp renders the new single-screen "viewing is editing" agent surface (stripped-back hero, working agent switcher, inline-editable profile, embedded operational panels + a live direct-chat drawer) in place of the separate agent view/edit pages; when OFF, the current view/edit pages are unchanged. Additive UI gate \u2014 no data-model change: each panel reads the same existing endpoints the current pages use. Composes independently with app-top-nav-shell (the two flags are reconciled in ENG-8488). Ships dark.',
43710
+ description: 'Unified agent screen redesign (ENG-8478 epic / ENG-8480). When ON, the webapp renders the new single-screen "viewing is editing" agent surface (stripped-back hero, working agent switcher, inline-editable profile, embedded operational panels + a live direct-chat drawer) in place of the separate agent view/edit pages; when OFF, the current view/edit pages are unchanged. Additive UI gate \u2014 no data-model change: each panel reads the same existing endpoints the current pages use. Composes independently with app-top-nav-shell (the two flags are reconciled in ENG-8488). NO LONGER DARK: ENG-9832 cutover step 1 flipped the default to true, so an org with no override now gets the unified screen. The key survives only until cutover step 2 deletes it \u2014 which is blocked on ENG-8547 and ENG-8559, because the flag-off branch is still the only home for the /edit tabs.',
43711
43711
  flagType: "boolean",
43712
- // Declared safe value is `false` = the current view/edit pages. A flag-DB read
43713
- // error must fall back to what ships today, never a half-built redesign.
43714
- defaultValue: false,
43715
- // Read CLIENT-SIDE by the agent screen ("use client") via usePublicBooleanFlag,
43716
- // so the key must be in the browser-exposed public map. Additive viewer gate,
43717
- // resolved within the active-org cookie's scope not sensitive.
43712
+ // ENG-9832 (cutover step 1): flipped `false` -> `true`. The comment this
43713
+ // replaces called `false` the safe direction "the current view/edit
43714
+ // pages", never "a half-built redesign". That was true while the redesign
43715
+ // was half built. It has been the shipped surface for the pilot orgs since
43716
+ // ENG-8481, so `false` now points at the pages being retired, not at safety.
43717
+ // The old rationale is recorded rather than deleted because it was correct
43718
+ // under a premise that has since expired.
43719
+ //
43720
+ // MIND THE SPLIT. This value is consulted by the API evaluator when it
43721
+ // builds the `GET /flags` map for an org with NO override. It is NOT the
43722
+ // fallback the webapp uses when that fetch fails: `getPublicBooleanFlagServer`
43723
+ // and `usePublicBooleanFlag` both return the argument passed at the CALL
43724
+ // SITE and never consult this registry. Three call sites carry `true` to
43725
+ // match — agents/[agentId]/page.tsx, agents/[agentId]/edit/page.tsx and
43726
+ // `useAgentUnifiedScreenEnabled` in lib/redesign-flags.ts. Flipping the
43727
+ // registry alone leaves the cutover half-applied with no error anywhere;
43728
+ // eng-9832-unified-fallback-parity.test.ts fails if any of the three drifts.
43729
+ defaultValue: true,
43730
+ // Read BOTH server-side (agents/[agentId]/page.tsx and its /edit sibling, via
43731
+ // getPublicBooleanFlagServer) and client-side (dashboard-sherlock-shell.tsx,
43732
+ // via usePublicBooleanFlag), so the key must be in the browser-exposed public
43733
+ // map. Additive viewer gate, resolved within the active-org cookie's scope
43734
+ // — not sensitive.
43735
+ //
43736
+ // `public` MUST STAY until step 2 deletes the key, and the reason reads
43737
+ // backwards: the server helper resolves against the very SAME public-filtered
43738
+ // `GET /flags` the browser uses (routes/flags.ts filters to
43739
+ // listPublicFlagKeys()). Drop `public` and the key is simply absent from the
43740
+ // map, so both server readers fall through to their call-site argument
43741
+ // forever — silently, with no error raised anywhere.
43718
43742
  public: true
43719
43743
  },
43720
43744
  {
@@ -38344,14 +38344,38 @@ var FLAG_REGISTRY = [
38344
38344
  },
38345
38345
  {
38346
38346
  key: "agent-unified-screen",
38347
- description: 'Unified agent screen redesign (ENG-8478 epic / ENG-8480). When ON, the webapp renders the new single-screen "viewing is editing" agent surface (stripped-back hero, working agent switcher, inline-editable profile, embedded operational panels + a live direct-chat drawer) in place of the separate agent view/edit pages; when OFF, the current view/edit pages are unchanged. Additive UI gate \u2014 no data-model change: each panel reads the same existing endpoints the current pages use. Composes independently with app-top-nav-shell (the two flags are reconciled in ENG-8488). Ships dark.',
38347
+ description: 'Unified agent screen redesign (ENG-8478 epic / ENG-8480). When ON, the webapp renders the new single-screen "viewing is editing" agent surface (stripped-back hero, working agent switcher, inline-editable profile, embedded operational panels + a live direct-chat drawer) in place of the separate agent view/edit pages; when OFF, the current view/edit pages are unchanged. Additive UI gate \u2014 no data-model change: each panel reads the same existing endpoints the current pages use. Composes independently with app-top-nav-shell (the two flags are reconciled in ENG-8488). NO LONGER DARK: ENG-9832 cutover step 1 flipped the default to true, so an org with no override now gets the unified screen. The key survives only until cutover step 2 deletes it \u2014 which is blocked on ENG-8547 and ENG-8559, because the flag-off branch is still the only home for the /edit tabs.',
38348
38348
  flagType: "boolean",
38349
- // Declared safe value is `false` = the current view/edit pages. A flag-DB read
38350
- // error must fall back to what ships today, never a half-built redesign.
38351
- defaultValue: false,
38352
- // Read CLIENT-SIDE by the agent screen ("use client") via usePublicBooleanFlag,
38353
- // so the key must be in the browser-exposed public map. Additive viewer gate,
38354
- // resolved within the active-org cookie's scope not sensitive.
38349
+ // ENG-9832 (cutover step 1): flipped `false` -> `true`. The comment this
38350
+ // replaces called `false` the safe direction "the current view/edit
38351
+ // pages", never "a half-built redesign". That was true while the redesign
38352
+ // was half built. It has been the shipped surface for the pilot orgs since
38353
+ // ENG-8481, so `false` now points at the pages being retired, not at safety.
38354
+ // The old rationale is recorded rather than deleted because it was correct
38355
+ // under a premise that has since expired.
38356
+ //
38357
+ // MIND THE SPLIT. This value is consulted by the API evaluator when it
38358
+ // builds the `GET /flags` map for an org with NO override. It is NOT the
38359
+ // fallback the webapp uses when that fetch fails: `getPublicBooleanFlagServer`
38360
+ // and `usePublicBooleanFlag` both return the argument passed at the CALL
38361
+ // SITE and never consult this registry. Three call sites carry `true` to
38362
+ // match — agents/[agentId]/page.tsx, agents/[agentId]/edit/page.tsx and
38363
+ // `useAgentUnifiedScreenEnabled` in lib/redesign-flags.ts. Flipping the
38364
+ // registry alone leaves the cutover half-applied with no error anywhere;
38365
+ // eng-9832-unified-fallback-parity.test.ts fails if any of the three drifts.
38366
+ defaultValue: true,
38367
+ // Read BOTH server-side (agents/[agentId]/page.tsx and its /edit sibling, via
38368
+ // getPublicBooleanFlagServer) and client-side (dashboard-sherlock-shell.tsx,
38369
+ // via usePublicBooleanFlag), so the key must be in the browser-exposed public
38370
+ // map. Additive viewer gate, resolved within the active-org cookie's scope
38371
+ // — not sensitive.
38372
+ //
38373
+ // `public` MUST STAY until step 2 deletes the key, and the reason reads
38374
+ // backwards: the server helper resolves against the very SAME public-filtered
38375
+ // `GET /flags` the browser uses (routes/flags.ts filters to
38376
+ // listPublicFlagKeys()). Drop `public` and the key is simply absent from the
38377
+ // map, so both server readers fall through to their call-site argument
38378
+ // forever — silently, with no error raised anywhere.
38355
38379
  public: true
38356
38380
  },
38357
38381
  {
@@ -38394,14 +38394,38 @@ var FLAG_REGISTRY = [
38394
38394
  },
38395
38395
  {
38396
38396
  key: "agent-unified-screen",
38397
- description: 'Unified agent screen redesign (ENG-8478 epic / ENG-8480). When ON, the webapp renders the new single-screen "viewing is editing" agent surface (stripped-back hero, working agent switcher, inline-editable profile, embedded operational panels + a live direct-chat drawer) in place of the separate agent view/edit pages; when OFF, the current view/edit pages are unchanged. Additive UI gate \u2014 no data-model change: each panel reads the same existing endpoints the current pages use. Composes independently with app-top-nav-shell (the two flags are reconciled in ENG-8488). Ships dark.',
38397
+ description: 'Unified agent screen redesign (ENG-8478 epic / ENG-8480). When ON, the webapp renders the new single-screen "viewing is editing" agent surface (stripped-back hero, working agent switcher, inline-editable profile, embedded operational panels + a live direct-chat drawer) in place of the separate agent view/edit pages; when OFF, the current view/edit pages are unchanged. Additive UI gate \u2014 no data-model change: each panel reads the same existing endpoints the current pages use. Composes independently with app-top-nav-shell (the two flags are reconciled in ENG-8488). NO LONGER DARK: ENG-9832 cutover step 1 flipped the default to true, so an org with no override now gets the unified screen. The key survives only until cutover step 2 deletes it \u2014 which is blocked on ENG-8547 and ENG-8559, because the flag-off branch is still the only home for the /edit tabs.',
38398
38398
  flagType: "boolean",
38399
- // Declared safe value is `false` = the current view/edit pages. A flag-DB read
38400
- // error must fall back to what ships today, never a half-built redesign.
38401
- defaultValue: false,
38402
- // Read CLIENT-SIDE by the agent screen ("use client") via usePublicBooleanFlag,
38403
- // so the key must be in the browser-exposed public map. Additive viewer gate,
38404
- // resolved within the active-org cookie's scope not sensitive.
38399
+ // ENG-9832 (cutover step 1): flipped `false` -> `true`. The comment this
38400
+ // replaces called `false` the safe direction "the current view/edit
38401
+ // pages", never "a half-built redesign". That was true while the redesign
38402
+ // was half built. It has been the shipped surface for the pilot orgs since
38403
+ // ENG-8481, so `false` now points at the pages being retired, not at safety.
38404
+ // The old rationale is recorded rather than deleted because it was correct
38405
+ // under a premise that has since expired.
38406
+ //
38407
+ // MIND THE SPLIT. This value is consulted by the API evaluator when it
38408
+ // builds the `GET /flags` map for an org with NO override. It is NOT the
38409
+ // fallback the webapp uses when that fetch fails: `getPublicBooleanFlagServer`
38410
+ // and `usePublicBooleanFlag` both return the argument passed at the CALL
38411
+ // SITE and never consult this registry. Three call sites carry `true` to
38412
+ // match — agents/[agentId]/page.tsx, agents/[agentId]/edit/page.tsx and
38413
+ // `useAgentUnifiedScreenEnabled` in lib/redesign-flags.ts. Flipping the
38414
+ // registry alone leaves the cutover half-applied with no error anywhere;
38415
+ // eng-9832-unified-fallback-parity.test.ts fails if any of the three drifts.
38416
+ defaultValue: true,
38417
+ // Read BOTH server-side (agents/[agentId]/page.tsx and its /edit sibling, via
38418
+ // getPublicBooleanFlagServer) and client-side (dashboard-sherlock-shell.tsx,
38419
+ // via usePublicBooleanFlag), so the key must be in the browser-exposed public
38420
+ // map. Additive viewer gate, resolved within the active-org cookie's scope
38421
+ // — not sensitive.
38422
+ //
38423
+ // `public` MUST STAY until step 2 deletes the key, and the reason reads
38424
+ // backwards: the server helper resolves against the very SAME public-filtered
38425
+ // `GET /flags` the browser uses (routes/flags.ts filters to
38426
+ // listPublicFlagKeys()). Drop `public` and the key is simply absent from the
38427
+ // map, so both server readers fall through to their call-site argument
38428
+ // forever — silently, with no error raised anywhere.
38405
38429
  public: true
38406
38430
  },
38407
38431
  {
@@ -62,8 +62,8 @@ import {
62
62
  writeDirectChatSessionState,
63
63
  writeEgressAllowlist,
64
64
  writePersistentClaudeWrapper
65
- } from "./chunk-AQM4A5JF.js";
66
- import "./chunk-FHJLOWU2.js";
65
+ } from "./chunk-SXYTFXPO.js";
66
+ import "./chunk-BH5RFBUM.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-DVG5WKZZ.js.map
133
+ //# sourceMappingURL=persistent-session-ZDZSEODJ.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-AQM4A5JF.js";
4
- import "./chunk-FHJLOWU2.js";
3
+ } from "./chunk-SXYTFXPO.js";
4
+ import "./chunk-BH5RFBUM.js";
5
5
  import "./chunk-XWVM4KPK.js";
6
6
 
7
7
  // src/lib/responsiveness-probe.ts
@@ -764,4 +764,4 @@ export {
764
764
  readAndResetSlackReplyBindingClassifications,
765
765
  readAndResetSlackReplyTargetClassifications
766
766
  };
767
- //# sourceMappingURL=responsiveness-probe-PPI3AFQG.js.map
767
+ //# sourceMappingURL=responsiveness-probe-7CY5VZMG.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  sessionTranscriptDir
3
- } from "./chunk-FHJLOWU2.js";
3
+ } from "./chunk-BH5RFBUM.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-L7TAICNC.js.map
206
+ //# sourceMappingURL=session-auth-dead-65TG2DLW.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.890",
3
+ "version": "0.28.891",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {