@integrity-labs/agt-cli 0.28.457 → 0.28.458
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 +4 -4
- package/dist/{chunk-QFBCK4ZH.js → chunk-KAIH24HZ.js} +31 -4
- package/dist/chunk-KAIH24HZ.js.map +1 -0
- package/dist/{chunk-WMGMLOPB.js → chunk-QIQQ46NH.js} +60 -22
- package/dist/{chunk-WMGMLOPB.js.map → chunk-QIQQ46NH.js.map} +1 -1
- package/dist/{claude-pair-runtime-QNOUSTW3.js → claude-pair-runtime-CVCPBJOZ.js} +2 -2
- package/dist/lib/manager-worker.js +18 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +16 -0
- package/dist/mcp/origami.js +16 -0
- package/dist/mcp/slack-channel.js +16 -0
- package/dist/mcp/telegram-channel.js +16 -0
- package/dist/{persistent-session-LEWM6BKO.js → persistent-session-EVLWDI3I.js} +2 -2
- package/dist/{responsiveness-probe-U6DPVIDD.js → responsiveness-probe-EGP2F3WD.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-QFBCK4ZH.js.map +0 -1
- /package/dist/{claude-pair-runtime-QNOUSTW3.js.map → claude-pair-runtime-CVCPBJOZ.js.map} +0 -0
- /package/dist/{persistent-session-LEWM6BKO.js.map → persistent-session-EVLWDI3I.js.map} +0 -0
- /package/dist/{responsiveness-probe-U6DPVIDD.js.map → responsiveness-probe-EGP2F3WD.js.map} +0 -0
|
@@ -35794,6 +35794,22 @@ var FLAG_REGISTRY = [
|
|
|
35794
35794
|
// registry-only (ADR-0022). NOT `public`: it is resolved server-side only, so it
|
|
35795
35795
|
// must never be serialized into the browser map.
|
|
35796
35796
|
defaultValue: false
|
|
35797
|
+
},
|
|
35798
|
+
{
|
|
35799
|
+
key: "ninjafy-brand",
|
|
35800
|
+
description: 'Present the product under the Ninjafy brand instead of Augmented Team (ENG-8250). This is the UMBRELLA brand gate, not a one-off nav toggle: every subsequent rebrand surface (page titles, email templates, marketing-facing copy) reads THIS key rather than adding its own flag, so the whole rebrand keeps a single kill switch. First surface is the left-hand nav wordmark \u2014 ON replaces the human+robot mark and the "augmented.team" text with italic lowercase "ninjafy"; OFF renders exactly what shipped before. Scope is USER-FACING BRAND TEXT ONLY: it must never gate a code identifier, package name, env var or CLI name, which stay `Augmented`/`agt` per the CLAUDE.md naming contract (the deep code rename is workstream C of docs/runbooks/rebrand-ninjafy-migration.md and is out of scope here). Set the stage-wide default to flip a whole environment, or add a feature_flag_overrides row to pilot one organization while every other org still sees Augmented. Ships dark.',
|
|
35801
|
+
flagType: "boolean",
|
|
35802
|
+
// Declared safe value is `false`: the pre-rebrand brand. `false` is also the
|
|
35803
|
+
// fail-closed direction — if the flag DB is unreachable we must show the brand
|
|
35804
|
+
// that is currently live and contractually correct, never leak an unannounced
|
|
35805
|
+
// rebrand to every customer at once.
|
|
35806
|
+
defaultValue: false,
|
|
35807
|
+
// Read CLIENT-SIDE: sidebar.tsx is a "use client" component and resolves this
|
|
35808
|
+
// via usePublicBooleanFlag, so the key must be in the browser-exposed public
|
|
35809
|
+
// map. Unlike onboarding-msteams-channel above there is no wrong-org hazard —
|
|
35810
|
+
// the sidebar renders inside the active-org cookie's scope, which is exactly
|
|
35811
|
+
// the org whose brand should be shown.
|
|
35812
|
+
public: true
|
|
35797
35813
|
}
|
|
35798
35814
|
];
|
|
35799
35815
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
package/dist/mcp/origami.js
CHANGED
|
@@ -41206,6 +41206,22 @@ var FLAG_REGISTRY = [
|
|
|
41206
41206
|
// registry-only (ADR-0022). NOT `public`: it is resolved server-side only, so it
|
|
41207
41207
|
// must never be serialized into the browser map.
|
|
41208
41208
|
defaultValue: false
|
|
41209
|
+
},
|
|
41210
|
+
{
|
|
41211
|
+
key: "ninjafy-brand",
|
|
41212
|
+
description: 'Present the product under the Ninjafy brand instead of Augmented Team (ENG-8250). This is the UMBRELLA brand gate, not a one-off nav toggle: every subsequent rebrand surface (page titles, email templates, marketing-facing copy) reads THIS key rather than adding its own flag, so the whole rebrand keeps a single kill switch. First surface is the left-hand nav wordmark \u2014 ON replaces the human+robot mark and the "augmented.team" text with italic lowercase "ninjafy"; OFF renders exactly what shipped before. Scope is USER-FACING BRAND TEXT ONLY: it must never gate a code identifier, package name, env var or CLI name, which stay `Augmented`/`agt` per the CLAUDE.md naming contract (the deep code rename is workstream C of docs/runbooks/rebrand-ninjafy-migration.md and is out of scope here). Set the stage-wide default to flip a whole environment, or add a feature_flag_overrides row to pilot one organization while every other org still sees Augmented. Ships dark.',
|
|
41213
|
+
flagType: "boolean",
|
|
41214
|
+
// Declared safe value is `false`: the pre-rebrand brand. `false` is also the
|
|
41215
|
+
// fail-closed direction — if the flag DB is unreachable we must show the brand
|
|
41216
|
+
// that is currently live and contractually correct, never leak an unannounced
|
|
41217
|
+
// rebrand to every customer at once.
|
|
41218
|
+
defaultValue: false,
|
|
41219
|
+
// Read CLIENT-SIDE: sidebar.tsx is a "use client" component and resolves this
|
|
41220
|
+
// via usePublicBooleanFlag, so the key must be in the browser-exposed public
|
|
41221
|
+
// map. Unlike onboarding-msteams-channel above there is no wrong-org hazard —
|
|
41222
|
+
// the sidebar renders inside the active-org cookie's scope, which is exactly
|
|
41223
|
+
// the org whose brand should be shown.
|
|
41224
|
+
public: true
|
|
41209
41225
|
}
|
|
41210
41226
|
];
|
|
41211
41227
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -35402,6 +35402,22 @@ var FLAG_REGISTRY = [
|
|
|
35402
35402
|
// registry-only (ADR-0022). NOT `public`: it is resolved server-side only, so it
|
|
35403
35403
|
// must never be serialized into the browser map.
|
|
35404
35404
|
defaultValue: false
|
|
35405
|
+
},
|
|
35406
|
+
{
|
|
35407
|
+
key: "ninjafy-brand",
|
|
35408
|
+
description: 'Present the product under the Ninjafy brand instead of Augmented Team (ENG-8250). This is the UMBRELLA brand gate, not a one-off nav toggle: every subsequent rebrand surface (page titles, email templates, marketing-facing copy) reads THIS key rather than adding its own flag, so the whole rebrand keeps a single kill switch. First surface is the left-hand nav wordmark \u2014 ON replaces the human+robot mark and the "augmented.team" text with italic lowercase "ninjafy"; OFF renders exactly what shipped before. Scope is USER-FACING BRAND TEXT ONLY: it must never gate a code identifier, package name, env var or CLI name, which stay `Augmented`/`agt` per the CLAUDE.md naming contract (the deep code rename is workstream C of docs/runbooks/rebrand-ninjafy-migration.md and is out of scope here). Set the stage-wide default to flip a whole environment, or add a feature_flag_overrides row to pilot one organization while every other org still sees Augmented. Ships dark.',
|
|
35409
|
+
flagType: "boolean",
|
|
35410
|
+
// Declared safe value is `false`: the pre-rebrand brand. `false` is also the
|
|
35411
|
+
// fail-closed direction — if the flag DB is unreachable we must show the brand
|
|
35412
|
+
// that is currently live and contractually correct, never leak an unannounced
|
|
35413
|
+
// rebrand to every customer at once.
|
|
35414
|
+
defaultValue: false,
|
|
35415
|
+
// Read CLIENT-SIDE: sidebar.tsx is a "use client" component and resolves this
|
|
35416
|
+
// via usePublicBooleanFlag, so the key must be in the browser-exposed public
|
|
35417
|
+
// map. Unlike onboarding-msteams-channel above there is no wrong-org hazard —
|
|
35418
|
+
// the sidebar renders inside the active-org cookie's scope, which is exactly
|
|
35419
|
+
// the org whose brand should be shown.
|
|
35420
|
+
public: true
|
|
35405
35421
|
}
|
|
35406
35422
|
];
|
|
35407
35423
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -35704,6 +35704,22 @@ var FLAG_REGISTRY = [
|
|
|
35704
35704
|
// registry-only (ADR-0022). NOT `public`: it is resolved server-side only, so it
|
|
35705
35705
|
// must never be serialized into the browser map.
|
|
35706
35706
|
defaultValue: false
|
|
35707
|
+
},
|
|
35708
|
+
{
|
|
35709
|
+
key: "ninjafy-brand",
|
|
35710
|
+
description: 'Present the product under the Ninjafy brand instead of Augmented Team (ENG-8250). This is the UMBRELLA brand gate, not a one-off nav toggle: every subsequent rebrand surface (page titles, email templates, marketing-facing copy) reads THIS key rather than adding its own flag, so the whole rebrand keeps a single kill switch. First surface is the left-hand nav wordmark \u2014 ON replaces the human+robot mark and the "augmented.team" text with italic lowercase "ninjafy"; OFF renders exactly what shipped before. Scope is USER-FACING BRAND TEXT ONLY: it must never gate a code identifier, package name, env var or CLI name, which stay `Augmented`/`agt` per the CLAUDE.md naming contract (the deep code rename is workstream C of docs/runbooks/rebrand-ninjafy-migration.md and is out of scope here). Set the stage-wide default to flip a whole environment, or add a feature_flag_overrides row to pilot one organization while every other org still sees Augmented. Ships dark.',
|
|
35711
|
+
flagType: "boolean",
|
|
35712
|
+
// Declared safe value is `false`: the pre-rebrand brand. `false` is also the
|
|
35713
|
+
// fail-closed direction — if the flag DB is unreachable we must show the brand
|
|
35714
|
+
// that is currently live and contractually correct, never leak an unannounced
|
|
35715
|
+
// rebrand to every customer at once.
|
|
35716
|
+
defaultValue: false,
|
|
35717
|
+
// Read CLIENT-SIDE: sidebar.tsx is a "use client" component and resolves this
|
|
35718
|
+
// via usePublicBooleanFlag, so the key must be in the browser-exposed public
|
|
35719
|
+
// map. Unlike onboarding-msteams-channel above there is no wrong-org hazard —
|
|
35720
|
+
// the sidebar renders inside the active-org cookie's scope, which is exactly
|
|
35721
|
+
// the org whose brand should be shown.
|
|
35722
|
+
public: true
|
|
35707
35723
|
}
|
|
35708
35724
|
];
|
|
35709
35725
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
writeDirectChatSessionState,
|
|
37
37
|
writeEgressAllowlist,
|
|
38
38
|
writePersistentClaudeWrapper
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-KAIH24HZ.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-
|
|
80
|
+
//# sourceMappingURL=persistent-session-EVLWDI3I.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-KAIH24HZ.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-
|
|
531
|
+
//# sourceMappingURL=responsiveness-probe-EGP2F3WD.js.map
|