@integrity-labs/agt-cli 0.27.135 → 0.27.137
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-KZGU4X3A.js → chunk-TDMOEMDM.js} +2 -2
- package/dist/chunk-TDMOEMDM.js.map +1 -0
- package/dist/{chunk-HC7B2OVZ.js → chunk-UIRCFCED.js} +8 -2
- package/dist/{chunk-HC7B2OVZ.js.map → chunk-UIRCFCED.js.map} +1 -1
- package/dist/{chunk-XKX2HEQY.js → chunk-YJOFVGD2.js} +17 -2
- package/dist/{chunk-XKX2HEQY.js.map → chunk-YJOFVGD2.js.map} +1 -1
- package/dist/{claude-pair-runtime-I7SKUE2Q.js → claude-pair-runtime-ZOHU673W.js} +2 -2
- package/dist/lib/manager-worker.js +47 -18
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/index.js +67 -1
- package/dist/{persistent-session-56AY3LH6.js → persistent-session-NSN62HZN.js} +3 -3
- package/dist/{responsiveness-probe-L6B7WINR.js → responsiveness-probe-RF5ZCTE7.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-KZGU4X3A.js.map +0 -1
- /package/dist/{claude-pair-runtime-I7SKUE2Q.js.map → claude-pair-runtime-ZOHU673W.js.map} +0 -0
- /package/dist/{persistent-session-56AY3LH6.js.map → persistent-session-NSN62HZN.js.map} +0 -0
- /package/dist/{responsiveness-probe-L6B7WINR.js.map → responsiveness-probe-RF5ZCTE7.js.map} +0 -0
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
parseDeliveryTarget,
|
|
10
10
|
registerFramework,
|
|
11
11
|
wrapScheduledTaskPrompt
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-TDMOEMDM.js";
|
|
13
13
|
|
|
14
14
|
// ../../packages/core/dist/integrations/registry.js
|
|
15
15
|
var INTEGRATION_REGISTRY = [
|
|
@@ -5054,6 +5054,12 @@ function buildMcpJson(input) {
|
|
|
5054
5054
|
// dashboard links) in tool replies. Falls back to NEXT_PUBLIC_APP_URL
|
|
5055
5055
|
// / AGT_CONSOLE_URL — same chain consoleUrl uses for kanban links.
|
|
5056
5056
|
AGT_APP_URL: process.env["AGT_APP_URL"] ?? process.env["NEXT_PUBLIC_APP_URL"] ?? process.env["AGT_CONSOLE_URL"] ?? "",
|
|
5057
|
+
// ENG-6229: arms the in-session `request_restart` self-restart tool.
|
|
5058
|
+
// Read at provision time from the manager's env (like AGT_HOST above),
|
|
5059
|
+
// NOT a per-spawn `${...}` template — it's a host-level gate. Empty by
|
|
5060
|
+
// default ⇒ the tool isn't registered at all (ships dark). When an
|
|
5061
|
+
// operator sets it on the host, the next /host/refresh bakes it in.
|
|
5062
|
+
AGT_AGENT_SELF_RESTART_ENABLED: process.env["AGT_AGENT_SELF_RESTART_ENABLED"] ?? "",
|
|
5057
5063
|
// Include PATH/HOME so the MCP subprocess can resolve binaries
|
|
5058
5064
|
PATH: process.env["PATH"] ?? "",
|
|
5059
5065
|
HOME: process.env["HOME"] ?? ""
|
|
@@ -7725,4 +7731,4 @@ export {
|
|
|
7725
7731
|
managerInstallSystemUnitCommand,
|
|
7726
7732
|
managerUninstallSystemUnitCommand
|
|
7727
7733
|
};
|
|
7728
|
-
//# sourceMappingURL=chunk-
|
|
7734
|
+
//# sourceMappingURL=chunk-UIRCFCED.js.map
|