@integrity-labs/agt-cli 0.28.421 → 0.28.422
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-HVVEMQWZ.js → chunk-6JC5YLU5.js} +22 -6
- package/dist/chunk-6JC5YLU5.js.map +1 -0
- package/dist/{chunk-B4NX2T2H.js → chunk-XFC7YVGS.js} +20 -2
- package/dist/{chunk-B4NX2T2H.js.map → chunk-XFC7YVGS.js.map} +1 -1
- package/dist/{claude-pair-runtime-ZTZR3VCN.js → claude-pair-runtime-3JHCWZZD.js} +2 -2
- package/dist/lib/manager-worker.js +10 -10
- package/dist/mcp/direct-chat-channel.js +19 -1
- package/dist/mcp/origami.js +19 -1
- package/dist/mcp/slack-channel.js +19 -1
- package/dist/mcp/telegram-channel.js +19 -1
- package/dist/{persistent-session-2OYYXMM7.js → persistent-session-HWCKGPYF.js} +2 -2
- package/dist/{responsiveness-probe-7OOA57BP.js → responsiveness-probe-4CGMUXOH.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-HVVEMQWZ.js.map +0 -1
- /package/dist/{claude-pair-runtime-ZTZR3VCN.js.map → claude-pair-runtime-3JHCWZZD.js.map} +0 -0
- /package/dist/{persistent-session-2OYYXMM7.js.map → persistent-session-HWCKGPYF.js.map} +0 -0
- /package/dist/{responsiveness-probe-7OOA57BP.js.map → responsiveness-probe-4CGMUXOH.js.map} +0 -0
|
@@ -8068,7 +8068,14 @@ var FLAG_REGISTRY = [
|
|
|
8068
8068
|
envVar: "AGT_SLACK_SCHEDULED_CHANNEL_GUARD_MODE",
|
|
8069
8069
|
// enforce REFUSES a send the agent asked to make - a visible availability
|
|
8070
8070
|
// change, so flipping toward it is deliberate (ADR-0022 sensitive-flag confirm).
|
|
8071
|
-
sensitive: true
|
|
8071
|
+
sensitive: true,
|
|
8072
|
+
// ENG-8149: the agt-cli that first carries resolveSlackScheduledChannelGuardMode
|
|
8073
|
+
// (published from the ENG-8137 merge c6ff71cd). Without this the flip-reach modal
|
|
8074
|
+
// reports FULL reach, because an undefined `since` means "every host can honour
|
|
8075
|
+
// it" - true for flags that predate the reach work, wrong for a NEW host-read
|
|
8076
|
+
// flag whose reader older hosts simply do not have. Excluded from
|
|
8077
|
+
// projectDefinition, so setting it does not roll FLAGS_SCHEMA_VERSION.
|
|
8078
|
+
since: "0.28.421"
|
|
8072
8079
|
},
|
|
8073
8080
|
{
|
|
8074
8081
|
key: "slack-hot-thread-guard",
|
|
@@ -8680,6 +8687,17 @@ var FLAG_REGISTRY = [
|
|
|
8680
8687
|
// direction - a flag-DB read error must not resurrect the mis-threading/noise the kill
|
|
8681
8688
|
// fixes. Net-new gate, registry-only (ADR-0022); API-evaluated, no env materialization.
|
|
8682
8689
|
defaultValue: false
|
|
8690
|
+
},
|
|
8691
|
+
{
|
|
8692
|
+
key: "onboarding-msteams-channel",
|
|
8693
|
+
description: `Offer Microsoft Teams as a selectable channel on onboarding step 3 ("which channels should your org use?", ENG-8146). OFF (default) hides the Teams option entirely: it is not rendered, not selectable, and not named in the plan-upgrade note. Turn it ON per org to restore the option for a customer who genuinely runs on Teams. Resolved SERVER-SIDE in the step-3 server component for the URL's orgId (webapp lib/feature-flags-org-server.ts), NOT via the browser public map \u2014 the client flag path evaluates at the active-org cookie, which onboarding deliberately does not pin to the org being onboarded, so a client read would resolve the wrong org for a multi-org user. Hiding the option never revokes a channel: an org that already saved msteams keeps it (step 3 carries hidden-but-saved channels through the write). Ships dark.`,
|
|
8694
|
+
flagType: "boolean",
|
|
8695
|
+
// Declared safe value is `false`: Teams hidden. `false` is also the fail-closed
|
|
8696
|
+
// direction - a flag-DB read error must show the narrower channel set, never
|
|
8697
|
+
// surface an option the operator has not deliberately turned on. Net-new gate,
|
|
8698
|
+
// registry-only (ADR-0022). NOT `public`: it is resolved server-side only, so it
|
|
8699
|
+
// must never be serialized into the browser map.
|
|
8700
|
+
defaultValue: false
|
|
8683
8701
|
}
|
|
8684
8702
|
];
|
|
8685
8703
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -12727,4 +12745,4 @@ export {
|
|
|
12727
12745
|
stopAllSessionsAndWait,
|
|
12728
12746
|
getProjectDir
|
|
12729
12747
|
};
|
|
12730
|
-
//# sourceMappingURL=chunk-
|
|
12748
|
+
//# sourceMappingURL=chunk-XFC7YVGS.js.map
|