@integrity-labs/agt-cli 0.28.570 → 0.28.572
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-6XCGZUSS.js → chunk-72K46XUZ.js} +3 -3
- package/dist/{chunk-6XCGZUSS.js.map → chunk-72K46XUZ.js.map} +1 -1
- package/dist/{chunk-LNLLMDJJ.js → chunk-NG2MFOSH.js} +3 -3
- package/dist/{claude-pair-runtime-NSIF6AYH.js → claude-pair-runtime-XTRJNDP2.js} +2 -2
- package/dist/lib/manager-worker.js +94 -22
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +2 -2
- package/dist/mcp/origami.js +2 -2
- package/dist/mcp/slack-channel.js +63 -9
- package/dist/mcp/telegram-channel.js +2 -2
- package/dist/{persistent-session-HY6GUPBQ.js → persistent-session-74MH2XTM.js} +2 -2
- package/dist/{responsiveness-probe-6EEZKJVV.js → responsiveness-probe-5VNQQZNJ.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-LNLLMDJJ.js.map → chunk-NG2MFOSH.js.map} +0 -0
- /package/dist/{claude-pair-runtime-NSIF6AYH.js.map → claude-pair-runtime-XTRJNDP2.js.map} +0 -0
- /package/dist/{persistent-session-HY6GUPBQ.js.map → persistent-session-74MH2XTM.js.map} +0 -0
- /package/dist/{responsiveness-probe-6EEZKJVV.js.map → responsiveness-probe-5VNQQZNJ.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -40,7 +40,7 @@ import {
|
|
|
40
40
|
success,
|
|
41
41
|
table,
|
|
42
42
|
warn
|
|
43
|
-
} from "../chunk-
|
|
43
|
+
} from "../chunk-NG2MFOSH.js";
|
|
44
44
|
import {
|
|
45
45
|
AnchorSessionClient,
|
|
46
46
|
CHANNEL_REGISTRY,
|
|
@@ -71,7 +71,7 @@ import {
|
|
|
71
71
|
requiredMcpWildcard,
|
|
72
72
|
resolveChannels,
|
|
73
73
|
serializeManifestForSlackCli
|
|
74
|
-
} from "../chunk-
|
|
74
|
+
} from "../chunk-72K46XUZ.js";
|
|
75
75
|
import "../chunk-XWVM4KPK.js";
|
|
76
76
|
|
|
77
77
|
// src/bin/agt.ts
|
|
@@ -4853,7 +4853,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4853
4853
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4854
4854
|
import chalk18 from "chalk";
|
|
4855
4855
|
import ora16 from "ora";
|
|
4856
|
-
var cliVersion = true ? "0.28.
|
|
4856
|
+
var cliVersion = true ? "0.28.572" : "dev";
|
|
4857
4857
|
async function fetchLatestVersion() {
|
|
4858
4858
|
const host2 = getHost();
|
|
4859
4859
|
if (!host2) return null;
|
|
@@ -6028,7 +6028,7 @@ function handleError(err) {
|
|
|
6028
6028
|
}
|
|
6029
6029
|
|
|
6030
6030
|
// src/bin/agt.ts
|
|
6031
|
-
var cliVersion2 = true ? "0.28.
|
|
6031
|
+
var cliVersion2 = true ? "0.28.572" : "dev";
|
|
6032
6032
|
var program = new Command();
|
|
6033
6033
|
program.name("agt").description("Augmented CLI \u2014 agent provisioning and management").version(cliVersion2).option("--json", "Emit machine-readable JSON output (suppress spinners and colors)").option("--skip-update-check", "Skip the automatic update check on startup");
|
|
6034
6034
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -10947,9 +10947,9 @@ var FLAG_REGISTRY = [
|
|
|
10947
10947
|
},
|
|
10948
10948
|
{
|
|
10949
10949
|
key: "notify-dispatch",
|
|
10950
|
-
description:
|
|
10950
|
+
description: `Membership-based channel-notify dispatch (ENG-7682 / notify Slice 1). off = today's behaviour: a non-@mention top-level channel message is dropped by the mention_only engagement gate (SLACK_CHANNEL_RESPONSE_MODE). membership = the agent's Slack MCP ADMITS non-@mention channel messages in channels its bot is a member of (the Socket Mode websocket already receives them), waking the agent in-thread via the SAME existing wake path used for @mentions/DMs. Only the mention_only engagement gate is relaxed - the echo/dedup, bot_id/self, and peer-classifier safety leaves still apply, so this never opens a bot-to-bot wake loop. The channel server can't evaluate flags, so the manager materializes the resolved value into the AGT_NOTIFY_DISPATCH spawn env (operator/canary override, ADR-0022). filter = like membership (opt-out) but honours a per-channel mute list: a member-channel message wakes the agent UNLESS the user muted that channel via the /notify slash command. The manager materializes the muted set into AGT_NOTIFY_MUTED_CHANNELS from agent_notify_channel_prefs (ENG-7682 Slice 2). addressed = like filter (same per-channel mute, checked FIRST so a mute outranks being named), but a member-channel message additionally has to address THIS agent to wake it: a real Slack mention of its bot user id, \`@<code_name>\` typed verbatim, or the code name used as a vocative at the start of the message ("koda:", "hey koda"). @team / @everyone still wake everyone. This is the fix for one named agent waking every agent in a shared channel (ENG-8657); matching is deliberately conservative, so a name mentioned mid-sentence does NOT wake, and an agent whose identity is unknown to the channel server stays asleep rather than waking on everything. Ships dark (default off).`,
|
|
10951
10951
|
flagType: "enum",
|
|
10952
|
-
allowedValues: ["off", "membership", "filter"],
|
|
10952
|
+
allowedValues: ["off", "membership", "filter", "addressed"],
|
|
10953
10953
|
// Declared safe value is `off`: the mention_only gate stays in force, byte-
|
|
10954
10954
|
// identical to today. membership is the deliberate, per-agent flip that
|
|
10955
10955
|
// widens what wakes the agent.
|
|
@@ -15832,4 +15832,4 @@ export {
|
|
|
15832
15832
|
stopAllSessionsAndWait,
|
|
15833
15833
|
getProjectDir
|
|
15834
15834
|
};
|
|
15835
|
-
//# sourceMappingURL=chunk-
|
|
15835
|
+
//# sourceMappingURL=chunk-72K46XUZ.js.map
|