@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.
- package/dist/bin/agt.js +5 -5
- package/dist/{chunk-WGMIKXTX.js → chunk-2IVLMJXQ.js} +4 -4
- package/dist/{chunk-FHJLOWU2.js → chunk-BH5RFBUM.js} +32 -8
- package/dist/{chunk-FHJLOWU2.js.map → chunk-BH5RFBUM.js.map} +1 -1
- package/dist/{chunk-AQM4A5JF.js → chunk-SXYTFXPO.js} +2 -2
- package/dist/{claude-pair-runtime-XSOXRHGZ.js → claude-pair-runtime-TCDKO2CZ.js} +2 -2
- package/dist/lib/manager-worker.js +14 -14
- package/dist/mcp/direct-chat-channel.js +31 -7
- package/dist/mcp/index.js +1384 -1345
- package/dist/mcp/origami.js +31 -7
- package/dist/mcp/slack-channel.js +31 -7
- package/dist/mcp/telegram-channel.js +31 -7
- package/dist/{persistent-session-DVG5WKZZ.js → persistent-session-ZDZSEODJ.js} +3 -3
- package/dist/{responsiveness-probe-PPI3AFQG.js → responsiveness-probe-7CY5VZMG.js} +3 -3
- package/dist/{session-auth-dead-L7TAICNC.js → session-auth-dead-65TG2DLW.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-WGMIKXTX.js.map → chunk-2IVLMJXQ.js.map} +0 -0
- /package/dist/{chunk-AQM4A5JF.js.map → chunk-SXYTFXPO.js.map} +0 -0
- /package/dist/{claude-pair-runtime-XSOXRHGZ.js.map → claude-pair-runtime-TCDKO2CZ.js.map} +0 -0
- /package/dist/{persistent-session-DVG5WKZZ.js.map → persistent-session-ZDZSEODJ.js.map} +0 -0
- /package/dist/{responsiveness-probe-PPI3AFQG.js.map → responsiveness-probe-7CY5VZMG.js.map} +0 -0
- /package/dist/{session-auth-dead-L7TAICNC.js.map → session-auth-dead-65TG2DLW.js.map} +0 -0
package/dist/mcp/origami.js
CHANGED
|
@@ -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).
|
|
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
|
-
//
|
|
43713
|
-
//
|
|
43714
|
-
|
|
43715
|
-
//
|
|
43716
|
-
// so
|
|
43717
|
-
//
|
|
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).
|
|
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
|
-
//
|
|
38350
|
-
//
|
|
38351
|
-
|
|
38352
|
-
//
|
|
38353
|
-
// so
|
|
38354
|
-
//
|
|
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).
|
|
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
|
-
//
|
|
38400
|
-
//
|
|
38401
|
-
|
|
38402
|
-
//
|
|
38403
|
-
// so
|
|
38404
|
-
//
|
|
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-
|
|
66
|
-
import "./chunk-
|
|
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-
|
|
133
|
+
//# sourceMappingURL=persistent-session-ZDZSEODJ.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
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-
|
|
767
|
+
//# sourceMappingURL=responsiveness-probe-7CY5VZMG.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
sessionTranscriptDir
|
|
3
|
-
} from "./chunk-
|
|
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-
|
|
206
|
+
//# sourceMappingURL=session-auth-dead-65TG2DLW.js.map
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|