@integrity-labs/agt-cli 0.28.274 → 0.28.275
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 +3 -3
- package/dist/{chunk-73NA6BKT.js → chunk-5CEKL35C.js} +8 -6
- package/dist/chunk-5CEKL35C.js.map +1 -0
- package/dist/lib/manager-worker.js +14 -3
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/xero.js +120573 -0
- package/package.json +3 -2
- package/dist/chunk-73NA6BKT.js.map +0 -1
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
requireHost,
|
|
39
39
|
safeWriteJsonAtomic,
|
|
40
40
|
setConfigHash
|
|
41
|
-
} from "../chunk-
|
|
41
|
+
} from "../chunk-5CEKL35C.js";
|
|
42
42
|
import {
|
|
43
43
|
getProjectDir as getProjectDir2,
|
|
44
44
|
getReadyTasks,
|
|
@@ -6788,7 +6788,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
|
|
|
6788
6788
|
var lastVersionCheckAt = 0;
|
|
6789
6789
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
6790
6790
|
var lastResponsivenessProbeAt = 0;
|
|
6791
|
-
var agtCliVersion = true ? "0.28.
|
|
6791
|
+
var agtCliVersion = true ? "0.28.275" : "dev";
|
|
6792
6792
|
function resolveBrewPath(execFileSync2) {
|
|
6793
6793
|
try {
|
|
6794
6794
|
const out = execFileSync2("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -12067,7 +12067,18 @@ function deployMcpAssets() {
|
|
|
12067
12067
|
// with the session and a bundle update applies on the next natural
|
|
12068
12068
|
// session restart. It fetches its credential + identity per call, so it
|
|
12069
12069
|
// never needs restarting to pick up a key rotation either.
|
|
12070
|
-
"origami.js"
|
|
12070
|
+
"origami.js",
|
|
12071
|
+
// ENG-7579: the Xero vendor MCP (our @integrity-labs/xero-mcp-server fork),
|
|
12072
|
+
// now bundled with the CLI instead of resolved at runtime via
|
|
12073
|
+
// `npx @integrity-labs/xero-mcp-server@latest`. The npx form required a
|
|
12074
|
+
// manual npm publish on every change and silently stranded the fleet on the
|
|
12075
|
+
// last-published version (CS-1440's attachment tool shipped in 0.0.21 but
|
|
12076
|
+
// npm @latest stayed at 0.0.20). Same treatment as origami - NOT a channel,
|
|
12077
|
+
// so not in RESTARTABLE_CHANNEL_FILES; the reaper (re)starts it with the
|
|
12078
|
+
// session and a bundle update applies on the next natural session restart.
|
|
12079
|
+
// In broker mode it fetches the freshest access_token per call, so it never
|
|
12080
|
+
// needs restarting to pick up a token rotation.
|
|
12081
|
+
"xero.js"
|
|
12071
12082
|
]) {
|
|
12072
12083
|
const src = join17(mcpSourceDir, file);
|
|
12073
12084
|
const dst = join17(targetDir, file);
|