@integrity-labs/agt-cli 0.28.892 → 0.28.894

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-FZ6KIIYX.js → chunk-5464FJVN.js} +32 -8
  3. package/dist/{chunk-FZ6KIIYX.js.map → chunk-5464FJVN.js.map} +1 -1
  4. package/dist/{chunk-WMJBXN6N.js → chunk-RAEBKUW2.js} +2 -2
  5. package/dist/{chunk-SUVQ2KSP.js → chunk-WRFHISNG.js} +4 -4
  6. package/dist/{claude-pair-runtime-RTD7ZCVS.js → claude-pair-runtime-3MK5MUPN.js} +2 -2
  7. package/dist/lib/manager-worker.js +14 -14
  8. package/dist/mcp/augmented-admin.js +22 -6
  9. package/dist/mcp/direct-chat-channel.js +31 -7
  10. package/dist/mcp/index.js +116 -52
  11. package/dist/mcp/origami.js +31 -7
  12. package/dist/mcp/slack-channel.js +31 -7
  13. package/dist/mcp/telegram-channel.js +31 -7
  14. package/dist/{persistent-session-ARKZDYMX.js → persistent-session-5HSYQBF7.js} +3 -3
  15. package/dist/{responsiveness-probe-X2WXPIUI.js → responsiveness-probe-ZSB3DLLI.js} +3 -3
  16. package/dist/{session-auth-dead-BLEV4AUJ.js → session-auth-dead-J7SQAYRR.js} +2 -2
  17. package/package.json +1 -1
  18. /package/dist/{chunk-WMJBXN6N.js.map → chunk-RAEBKUW2.js.map} +0 -0
  19. /package/dist/{chunk-SUVQ2KSP.js.map → chunk-WRFHISNG.js.map} +0 -0
  20. /package/dist/{claude-pair-runtime-RTD7ZCVS.js.map → claude-pair-runtime-3MK5MUPN.js.map} +0 -0
  21. /package/dist/{persistent-session-ARKZDYMX.js.map → persistent-session-5HSYQBF7.js.map} +0 -0
  22. /package/dist/{responsiveness-probe-X2WXPIUI.js.map → responsiveness-probe-ZSB3DLLI.js.map} +0 -0
  23. /package/dist/{session-auth-dead-BLEV4AUJ.js.map → session-auth-dead-J7SQAYRR.js.map} +0 -0
@@ -38436,14 +38436,38 @@ var FLAG_REGISTRY = [
38436
38436
  },
38437
38437
  {
38438
38438
  key: "app-top-nav-shell",
38439
- description: "Global top-navigation shell redesign (ENG-8478 epic / ENG-8486). When ON, the dashboard chrome replaces the left sidebar with a top navigation bar (team switcher \xB7 destinations \xB7 command palette + account) so the left side is free for an agent-scoped rail; when OFF, the existing left sidebar is unchanged. Additive layout gate \u2014 no data-model change. Composes independently with agent-unified-screen (the two flags are reconciled in ENG-8488). Ships dark.",
38439
+ description: "Global top-navigation shell redesign (ENG-8478 epic / ENG-8486). When ON, the dashboard chrome replaces the left sidebar with a top navigation bar (team switcher \xB7 destinations \xB7 command palette + account) so the left side is free for an agent-scoped rail; when OFF, the existing left sidebar is unchanged. Additive layout gate \u2014 no data-model change. Composes independently with agent-unified-screen (the two flags are reconciled in ENG-8488). NO LONGER DARK: ENG-9831 cutover step 1 flipped the default to true, so an org with no override now gets the top-nav shell. The key survives only until cutover step 2 deletes it.",
38440
38440
  flagType: "boolean",
38441
- // Declared safe value is `false` = the current left sidebar. Fail-closed to the
38442
- // shell that ships today if the flag DB is unreachable.
38443
- defaultValue: false,
38444
- // Read CLIENT-SIDE by the dashboard layout + sidebar ("use client") via
38445
- // usePublicBooleanFlag, so the key must be in the browser-exposed public map.
38446
- // Additive layout gate not sensitive.
38441
+ // ENG-9831 (cutover step 1): flipped `false` -> `true`. The comment this
38442
+ // replaces called `false` the fail-closed direction — "the shell that ships
38443
+ // today". That was true while the sidebar was the shell that shipped; the
38444
+ // top nav is now the one being cut over to, so `false` points at the layout
38445
+ // being retired. The old rationale is recorded rather than deleted because
38446
+ // it was correct under a premise that has expired.
38447
+ //
38448
+ // NOTE the same split as ninjafy-brand below: this value is consulted by the
38449
+ // API evaluator when building the `GET /flags` map for an org with no
38450
+ // override. It is NOT the fallback the webapp uses on an outage — that is
38451
+ // the argument passed at the call site. Four call sites carry `true` to
38452
+ // match: (dashboard)/layout.tsx and the three legacy redirect hubs
38453
+ // (settings, team, organization/settings). Flipping the registry alone
38454
+ // leaves the cutover half-applied.
38455
+ defaultValue: true,
38456
+ // ENG-9831: NO LONGER read client-side. It was — via usePublicBooleanFlag in
38457
+ // sidebar.tsx (twice) and top-nav.tsx — and that is precisely what this
38458
+ // slice removed: a client hook starts at its default and corrects after an
38459
+ // async GET /flags, so the console painted the sidebar and then replaced the
38460
+ // WHOLE dashboard chrome after hydration. The ENG-8858/ENG-9227 flash at
38461
+ // layout scale. It is now resolved once server-side in (dashboard)/
38462
+ // layout.tsx and passed to both shells as a required prop.
38463
+ //
38464
+ // `public` MUST STAY ANYWAY — the same trap documented on ninjafy-brand.
38465
+ // getPublicBooleanFlagServer resolves against the very same public-filtered
38466
+ // `GET /flags` the browser uses (routes/flags.ts filters to
38467
+ // listPublicFlagKeys()). Drop `public` and the key is simply absent from the
38468
+ // map, the server helper falls through to its default forever, and every org
38469
+ // silently gets whatever that default happens to be with no error anywhere.
38470
+ // `public` means "readable through the public map", not "read by a browser".
38447
38471
  public: true
38448
38472
  },
38449
38473
  {
@@ -62,8 +62,8 @@ import {
62
62
  writeDirectChatSessionState,
63
63
  writeEgressAllowlist,
64
64
  writePersistentClaudeWrapper
65
- } from "./chunk-WMJBXN6N.js";
66
- import "./chunk-FZ6KIIYX.js";
65
+ } from "./chunk-RAEBKUW2.js";
66
+ import "./chunk-5464FJVN.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-ARKZDYMX.js.map
133
+ //# sourceMappingURL=persistent-session-5HSYQBF7.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-WMJBXN6N.js";
4
- import "./chunk-FZ6KIIYX.js";
3
+ } from "./chunk-RAEBKUW2.js";
4
+ import "./chunk-5464FJVN.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-X2WXPIUI.js.map
767
+ //# sourceMappingURL=responsiveness-probe-ZSB3DLLI.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  sessionTranscriptDir
3
- } from "./chunk-FZ6KIIYX.js";
3
+ } from "./chunk-5464FJVN.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-BLEV4AUJ.js.map
206
+ //# sourceMappingURL=session-auth-dead-J7SQAYRR.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.892",
3
+ "version": "0.28.894",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {