@integrity-labs/agt-cli 0.28.569 → 0.28.571
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 +26 -7
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-7O2TXBWR.js → chunk-72K46XUZ.js} +27 -10
- package/dist/{chunk-7O2TXBWR.js.map → chunk-72K46XUZ.js.map} +1 -1
- package/dist/{chunk-JBOJC6PG.js → chunk-KXUYJUGI.js} +3 -3
- package/dist/{claude-pair-runtime-XVEJ7XLB.js → claude-pair-runtime-XTRJNDP2.js} +2 -2
- package/dist/lib/manager-worker.js +245 -203
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +26 -9
- package/dist/mcp/origami.js +26 -9
- package/dist/mcp/slack-channel.js +87 -16
- package/dist/mcp/telegram-channel.js +26 -9
- package/dist/{persistent-session-WUNZJXCI.js → persistent-session-74MH2XTM.js} +2 -2
- package/dist/{responsiveness-probe-V3P5TGBH.js → responsiveness-probe-5VNQQZNJ.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-JBOJC6PG.js.map → chunk-KXUYJUGI.js.map} +0 -0
- /package/dist/{claude-pair-runtime-XVEJ7XLB.js.map → claude-pair-runtime-XTRJNDP2.js.map} +0 -0
- /package/dist/{persistent-session-WUNZJXCI.js.map → persistent-session-74MH2XTM.js.map} +0 -0
- /package/dist/{responsiveness-probe-V3P5TGBH.js.map → responsiveness-probe-5VNQQZNJ.js.map} +0 -0
|
@@ -10619,13 +10619,30 @@ var FLAG_REGISTRY = [
|
|
|
10619
10619
|
// safe default — it resolves to `honors`, reporting every host as honouring
|
|
10620
10620
|
// the flip, including hosts whose agt-cli has no reader at all.
|
|
10621
10621
|
//
|
|
10622
|
-
//
|
|
10623
|
-
//
|
|
10624
|
-
//
|
|
10625
|
-
//
|
|
10626
|
-
//
|
|
10627
|
-
//
|
|
10628
|
-
|
|
10622
|
+
// WHAT THIS VERSION HAS TO MEAN. Not "the first build with a reader" — the
|
|
10623
|
+
// first build where flipping the flag does what the flag is documented to
|
|
10624
|
+
// do. Those diverged twice already, in the same direction:
|
|
10625
|
+
//
|
|
10626
|
+
// 0.28.566 (ENG-8575) — the first build with a reader. Pinned here and
|
|
10627
|
+
// correct on the day. It has the unbounded scan window and the coverage
|
|
10628
|
+
// rows that overstate (both ENG-8740), and no `logging_mode` enforcement
|
|
10629
|
+
// at all (ENG-8726) — so a hash-only agent on it emits plaintext
|
|
10630
|
+
// `argv0` / `url_host` / `mcp_tool`, which is precisely the governance
|
|
10631
|
+
// breach this epic exists to prevent.
|
|
10632
|
+
// 0.28.569 (ENG-8740) — bounded window, honest coverage intervals. Still
|
|
10633
|
+
// no hash-only enforcement. The pin was NOT moved at that merge and went
|
|
10634
|
+
// stale for a day; reach reported those hosts `honors`.
|
|
10635
|
+
// 0.28.570 (ENG-8726) — hash-only honoured at runtime. Current pin.
|
|
10636
|
+
//
|
|
10637
|
+
// MOVE THIS PIN whenever a change alters what arming the flag DOES on a
|
|
10638
|
+
// host, and verify it against the published tarball rather than inferring it
|
|
10639
|
+
// from the merge — `npm pack @integrity-labs/agt-cli@<v>` and grep
|
|
10640
|
+
// package/dist/lib/manager-worker.js (the manager is the actual reader; the
|
|
10641
|
+
// dist/mcp/* occurrences are bundling artifacts). For 0.28.570 the markers
|
|
10642
|
+
// are `readAgentLoggingMode` and `loggingModeWithholdsTargets`. Auto-publish
|
|
10643
|
+
// patch-bumps from whatever is on main, so if another CLI-touching PR lands
|
|
10644
|
+
// first the real cut is higher than this and the pin under-reports.
|
|
10645
|
+
since: "0.28.570"
|
|
10629
10646
|
},
|
|
10630
10647
|
{
|
|
10631
10648
|
key: "conversation-eval-backend",
|
|
@@ -10930,9 +10947,9 @@ var FLAG_REGISTRY = [
|
|
|
10930
10947
|
},
|
|
10931
10948
|
{
|
|
10932
10949
|
key: "notify-dispatch",
|
|
10933
|
-
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).`,
|
|
10934
10951
|
flagType: "enum",
|
|
10935
|
-
allowedValues: ["off", "membership", "filter"],
|
|
10952
|
+
allowedValues: ["off", "membership", "filter", "addressed"],
|
|
10936
10953
|
// Declared safe value is `off`: the mention_only gate stays in force, byte-
|
|
10937
10954
|
// identical to today. membership is the deliberate, per-agent flip that
|
|
10938
10955
|
// widens what wakes the agent.
|
|
@@ -15815,4 +15832,4 @@ export {
|
|
|
15815
15832
|
stopAllSessionsAndWait,
|
|
15816
15833
|
getProjectDir
|
|
15817
15834
|
};
|
|
15818
|
-
//# sourceMappingURL=chunk-
|
|
15835
|
+
//# sourceMappingURL=chunk-72K46XUZ.js.map
|