@integrity-labs/agt-cli 0.27.169 → 0.28.1
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 -257
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-L2UTBXZS.js → chunk-I6QV3IE7.js} +20 -1
- package/dist/{chunk-L2UTBXZS.js.map → chunk-I6QV3IE7.js.map} +1 -1
- package/dist/{chunk-4ULNASXC.js → chunk-K2HIV5DB.js} +2 -177
- package/dist/chunk-K2HIV5DB.js.map +1 -0
- package/dist/{chunk-4DWE64OJ.js → chunk-PPCOPZTK.js} +2 -2
- package/dist/{claude-pair-runtime-MO75D7NS.js → claude-pair-runtime-H73LQ5AR.js} +2 -2
- package/dist/lib/manager-worker.js +10 -17
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +215 -53
- package/dist/mcp/telegram-channel.js +91 -27
- package/dist/{persistent-session-V7ZLGIRQ.js → persistent-session-QXLGGGO2.js} +3 -7
- package/dist/{responsiveness-probe-3QYT7HXT.js → responsiveness-probe-3BUUOZZO.js} +56 -5
- package/dist/responsiveness-probe-3BUUOZZO.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-4ULNASXC.js.map +0 -1
- package/dist/responsiveness-probe-3QYT7HXT.js.map +0 -1
- /package/dist/{chunk-4DWE64OJ.js.map → chunk-PPCOPZTK.js.map} +0 -0
- /package/dist/{claude-pair-runtime-MO75D7NS.js.map → claude-pair-runtime-H73LQ5AR.js.map} +0 -0
- /package/dist/{persistent-session-V7ZLGIRQ.js.map → persistent-session-QXLGGGO2.js.map} +0 -0
|
@@ -2392,6 +2392,13 @@ var FLAG_REGISTRY = [
|
|
|
2392
2392
|
defaultValue: false,
|
|
2393
2393
|
envVar: "AGT_CHANNEL_BUSY_ACK_ENABLED"
|
|
2394
2394
|
},
|
|
2395
|
+
{
|
|
2396
|
+
key: "manager-failure-notify",
|
|
2397
|
+
description: "Route terminal integration-failure notifications to the agent's human manager (reports_to \u2192 preferred channel) instead of only the agent's own direct-chat (ENG-6334). Boolean gate; ships dark.",
|
|
2398
|
+
flagType: "boolean",
|
|
2399
|
+
defaultValue: false,
|
|
2400
|
+
envVar: "AGT_MANAGER_FAILURE_NOTIFY_ENABLED"
|
|
2401
|
+
},
|
|
2395
2402
|
{
|
|
2396
2403
|
key: "channel-quarantine-mode",
|
|
2397
2404
|
description: "Optional-channel quarantine (ENG-5932): off = disabled, shadow = log matches only, enforce = quarantine.",
|
|
@@ -2409,6 +2416,18 @@ var FLAG_REGISTRY = [
|
|
|
2409
2416
|
// Enforcement gate: weakening it (enforce → shadow/off) drops a channel
|
|
2410
2417
|
// safety control, so mutations require explicit confirmation.
|
|
2411
2418
|
sensitive: true
|
|
2419
|
+
},
|
|
2420
|
+
{
|
|
2421
|
+
key: "projects-menu",
|
|
2422
|
+
description: "Show the Projects nav item in the webapp (ADR-0017 Projects soft launch, ENG-6342). Replaces the isAdmin/adminOnly gate with a per-org rollout flag.",
|
|
2423
|
+
flagType: "boolean",
|
|
2424
|
+
// PUBLIC (ADR-0022 §2): this is a UI-rollout flag the browser legitimately
|
|
2425
|
+
// needs, so it's the one flag serialized to the client via GET /flags.
|
|
2426
|
+
// Evaluated per the caller's active org — flip it on per-org from the admin
|
|
2427
|
+
// Feature Flags page to reveal Projects for that org. No env override (UI
|
|
2428
|
+
// flag, not an operator gate). Ships dark (default false).
|
|
2429
|
+
public: true,
|
|
2430
|
+
defaultValue: false
|
|
2412
2431
|
}
|
|
2413
2432
|
];
|
|
2414
2433
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -5113,4 +5132,4 @@ export {
|
|
|
5113
5132
|
coerceEnvValue,
|
|
5114
5133
|
FLAGS_SCHEMA_VERSION
|
|
5115
5134
|
};
|
|
5116
|
-
//# sourceMappingURL=chunk-
|
|
5135
|
+
//# sourceMappingURL=chunk-I6QV3IE7.js.map
|