@integrity-labs/agt-cli 0.28.160 → 0.28.162
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-23U3HSVH.js → chunk-G6NDQYBC.js} +19 -3
- package/dist/{chunk-23U3HSVH.js.map → chunk-G6NDQYBC.js.map} +1 -1
- package/dist/{chunk-GZG5JRRX.js → chunk-MNW2HVGO.js} +2 -2
- package/dist/{chunk-65FVM2UA.js → chunk-U6HS4U7L.js} +23 -1
- package/dist/chunk-U6HS4U7L.js.map +1 -0
- package/dist/{claude-pair-runtime-HN3PEIZ2.js → claude-pair-runtime-PJ4OZ3DE.js} +2 -2
- package/dist/lib/manager-worker.js +8 -8
- package/dist/mcp/index.js +14 -4
- package/dist/mcp/slack-channel.js +70 -1
- package/dist/mcp/telegram-channel.js +63 -1
- package/dist/{persistent-session-TSVRKR7F.js → persistent-session-T7Q53HW5.js} +3 -3
- package/dist/{responsiveness-probe-DXPMUSVR.js → responsiveness-probe-K4Y7BXRH.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-65FVM2UA.js.map +0 -1
- /package/dist/{chunk-GZG5JRRX.js.map → chunk-MNW2HVGO.js.map} +0 -0
- /package/dist/{claude-pair-runtime-HN3PEIZ2.js.map → claude-pair-runtime-PJ4OZ3DE.js.map} +0 -0
- /package/dist/{persistent-session-TSVRKR7F.js.map → persistent-session-T7Q53HW5.js.map} +0 -0
- /package/dist/{responsiveness-probe-DXPMUSVR.js.map → responsiveness-probe-K4Y7BXRH.js.map} +0 -0
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
formatMissingVar,
|
|
4
4
|
isClaudeFastMode,
|
|
5
5
|
probeMcpEnvSubstitution
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-U6HS4U7L.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-MNW2HVGO.js.map
|
|
@@ -573,6 +573,18 @@ function generateSlackAppManifest(input) {
|
|
|
573
573
|
description: "This agent's model, session origin, uptime + connectivity.",
|
|
574
574
|
should_escape: false
|
|
575
575
|
},
|
|
576
|
+
// ENG-6931: /ping-<code> - a connectivity check. The agent posts a
|
|
577
|
+
// visible pong via the normal chat.postMessage reply path, proving
|
|
578
|
+
// the channel can actually deliver. Routed by the slash_commands
|
|
579
|
+
// envelope handler in packages/mcp/src/slack-channel.ts; gated on the
|
|
580
|
+
// ping allowlist (team members + reports-to manager) materialized as
|
|
581
|
+
// SLACK_PING_ALLOWED_USERS.
|
|
582
|
+
{
|
|
583
|
+
command: agentSlashCommand("/ping", agent_code_name),
|
|
584
|
+
url: slash_command_url,
|
|
585
|
+
description: "Ping this agent to confirm its channel is connected (team + manager only).",
|
|
586
|
+
should_escape: false
|
|
587
|
+
},
|
|
576
588
|
// ENG-6233: per-agent /help-<code>. Bare `/help` is Slack-reserved,
|
|
577
589
|
// so register ONLY when a valid code name actually suffixes it
|
|
578
590
|
// (agentSlashCommand returns the bare base when it can't suffix —
|
|
@@ -1785,6 +1797,16 @@ var FLAG_REGISTRY = [
|
|
|
1785
1797
|
// host-side override.
|
|
1786
1798
|
defaultValue: false,
|
|
1787
1799
|
public: true
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
key: "cross-team-kanban-assign",
|
|
1803
|
+
description: "Allow an agent to assign a kanban task to an agent on a DIFFERENT team in the same organization (ENG-6906), reusing the cross-team peer-messaging consent model: an org set to `unrestricted` needs no grant, an org set to `consent_required` needs a live cross_team_peer_grant. Off = the assign route refuses any cross-team target (same-team kanban_assign is unaffected), so no agent can place a card on another team. Per-org activation gate; ships dark.",
|
|
1804
|
+
flagType: "boolean",
|
|
1805
|
+
// Declared safe value is `false`: cross-team assignment is a net-new
|
|
1806
|
+
// capability that crosses a team trust boundary, so the fail-safe / absent-
|
|
1807
|
+
// flag direction is "no cross-team assignment". No envVar — net-new control
|
|
1808
|
+
// with no pre-flags env gate to migrate.
|
|
1809
|
+
defaultValue: false
|
|
1788
1810
|
}
|
|
1789
1811
|
];
|
|
1790
1812
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -6474,4 +6496,4 @@ export {
|
|
|
6474
6496
|
parseEnvIntegrations,
|
|
6475
6497
|
probeMcpEnvSubstitution
|
|
6476
6498
|
};
|
|
6477
|
-
//# sourceMappingURL=chunk-
|
|
6499
|
+
//# sourceMappingURL=chunk-U6HS4U7L.js.map
|