@integrity-labs/agt-cli 0.28.180 → 0.28.182
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-CA2WJ2CM.js → chunk-GF5CAKEY.js} +14 -8
- package/dist/chunk-GF5CAKEY.js.map +1 -0
- package/dist/{chunk-4LMNQ2V7.js → chunk-IQWTBKND.js} +2 -2
- package/dist/{chunk-ODMNVKDO.js → chunk-K362KMGY.js} +9 -2
- package/dist/chunk-K362KMGY.js.map +1 -0
- package/dist/{claude-pair-runtime-SPP3GKYK.js → claude-pair-runtime-7YQEUJFL.js} +2 -2
- package/dist/lib/manager-worker.js +8 -8
- package/dist/mcp/slack-channel.js +286 -91
- package/dist/mcp/teams-channel.js +288 -56
- package/dist/mcp/telegram-channel.js +258 -63
- package/dist/{persistent-session-OBWYOJP7.js → persistent-session-B5MUD4ER.js} +3 -3
- package/dist/{responsiveness-probe-6AKUEVIG.js → responsiveness-probe-H4KS4QDK.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-CA2WJ2CM.js.map +0 -1
- package/dist/chunk-ODMNVKDO.js.map +0 -1
- /package/dist/{chunk-4LMNQ2V7.js.map → chunk-IQWTBKND.js.map} +0 -0
- /package/dist/{claude-pair-runtime-SPP3GKYK.js.map → claude-pair-runtime-7YQEUJFL.js.map} +0 -0
- /package/dist/{persistent-session-OBWYOJP7.js.map → persistent-session-B5MUD4ER.js.map} +0 -0
- /package/dist/{responsiveness-probe-6AKUEVIG.js.map → responsiveness-probe-H4KS4QDK.js.map} +0 -0
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
formatMissingVar,
|
|
4
4
|
isClaudeFastMode,
|
|
5
5
|
probeMcpEnvSubstitution
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-K362KMGY.js";
|
|
7
7
|
import {
|
|
8
8
|
reapOrphanChannelMcps
|
|
9
9
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -1588,4 +1588,4 @@ export {
|
|
|
1588
1588
|
stopAllSessionsAndWait,
|
|
1589
1589
|
getProjectDir
|
|
1590
1590
|
};
|
|
1591
|
-
//# sourceMappingURL=chunk-
|
|
1591
|
+
//# sourceMappingURL=chunk-IQWTBKND.js.map
|
|
@@ -1519,6 +1519,13 @@ var FLAG_REGISTRY = [
|
|
|
1519
1519
|
// flipping it (esp. beyond the canary host) is worth an explicit confirm.
|
|
1520
1520
|
sensitive: true
|
|
1521
1521
|
},
|
|
1522
|
+
{
|
|
1523
|
+
key: "ghost-reply-intent-classifier",
|
|
1524
|
+
description: "Intentional-non-reply suppression on the ghost-reply RECOVERY path (ENG-7096). The recovery-outbox consumer in the channel MCP only ever fires for turns where the agent ended with text but did NOT call the matching reply tool for that conversation - a set that includes DELIBERATE non-replies (e.g. the agent narrating that the humans in the thread are talking among themselves and it is staying out). When ON, the consumer asks a cheap model (the conversation-eval backend, AGT_CONV_EVAL_*) whether the recovered text is a real message for the user (deliver) or an internal not-replying note (suppress), biased to DELIVER and fail-open, so a classifier outage degrades to today's behaviour, never to a dropped real reply. Boolean gate; ships dark. When OFF the consumer posts every recovered reply exactly as today.",
|
|
1525
|
+
flagType: "boolean",
|
|
1526
|
+
defaultValue: false,
|
|
1527
|
+
envVar: "AGT_GHOST_REPLY_INTENT_CLASSIFIER_ENABLED"
|
|
1528
|
+
},
|
|
1522
1529
|
{
|
|
1523
1530
|
key: "channel-live-progress",
|
|
1524
1531
|
description: 'Live in-channel progress indicator (ENG-6567 Phase 2): while an agent is mid-task on a pending channel inbound, the channel server maintains a slimline Block Kit "\u23F3 working\u2026 (last: <step>)" context message on the thread, driven by a throttled PostToolUse heartbeat, and clears it the moment the final reply lands. Answers "is it still working or done?" without the agent having to narrate. Boolean gate; ships dark \u2014 canary per host before any fleet flip. When OFF the heartbeat is still written (cheap, local) but nothing is ever posted, so behaviour is exactly as today.',
|
|
@@ -1819,7 +1826,7 @@ var FLAG_REGISTRY = [
|
|
|
1819
1826
|
},
|
|
1820
1827
|
{
|
|
1821
1828
|
key: "augmented-support-auto-provision",
|
|
1822
|
-
description: 'Org-create auto-provision of the per-org system_support concierge agent ("
|
|
1829
|
+
description: 'Org-create auto-provision of the per-org system_support concierge agent ("Sherlock") (ENG-7026, ADR-0032 \xA77). This is the FINAL rollout stage: when on, every newly created organization gets a support agent provisioned (in draft - arming still needs first-run consent) by a best-effort hook in the org-create handler. The earlier rollout stages (dogfood Integrity Labs, then design partners) are driven by the explicit admin command (provision-support --org <slug>), NOT this flag. Ships dark: default OFF means the hook is inert, so there is no fleet-wide first deploy - existing orgs are never touched and new orgs get nothing until this is flipped on. The DB stage value is the control (no env override).',
|
|
1823
1830
|
flagType: "boolean",
|
|
1824
1831
|
// Declared safe value is `false`: the fail-safe / absent-flag direction is
|
|
1825
1832
|
// "no org auto-provisions a support agent", so a misread can never silently
|
|
@@ -6574,4 +6581,4 @@ export {
|
|
|
6574
6581
|
parseEnvIntegrations,
|
|
6575
6582
|
probeMcpEnvSubstitution
|
|
6576
6583
|
};
|
|
6577
|
-
//# sourceMappingURL=chunk-
|
|
6584
|
+
//# sourceMappingURL=chunk-K362KMGY.js.map
|