@integrity-labs/agt-cli 0.28.150 → 0.28.151
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-LCKA5XPX.js → chunk-SZX4F3O5.js} +54 -10
- package/dist/chunk-SZX4F3O5.js.map +1 -0
- package/dist/lib/manager-worker.js +8 -3
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/remote-oauth-proxy.js +168 -0
- package/package.json +2 -2
- package/dist/chunk-LCKA5XPX.js.map +0 -1
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
requireHost,
|
|
29
29
|
safeWriteJsonAtomic,
|
|
30
30
|
setConfigHash
|
|
31
|
-
} from "../chunk-
|
|
31
|
+
} from "../chunk-SZX4F3O5.js";
|
|
32
32
|
import {
|
|
33
33
|
getProjectDir as getProjectDir2,
|
|
34
34
|
getReadyTasks,
|
|
@@ -6949,7 +6949,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
|
|
|
6949
6949
|
var lastVersionCheckAt = 0;
|
|
6950
6950
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
6951
6951
|
var lastResponsivenessProbeAt = 0;
|
|
6952
|
-
var agtCliVersion = true ? "0.28.
|
|
6952
|
+
var agtCliVersion = true ? "0.28.151" : "dev";
|
|
6953
6953
|
function resolveBrewPath(execFileSync4) {
|
|
6954
6954
|
try {
|
|
6955
6955
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -12669,7 +12669,12 @@ function deployMcpAssets() {
|
|
|
12669
12669
|
// so it doesn't drive the channel-restart path; the mcp-presence-reaper
|
|
12670
12670
|
// (re)starts it with the session, and a bundle update applies on the next
|
|
12671
12671
|
// natural session restart.
|
|
12672
|
-
"augmented-admin.js"
|
|
12672
|
+
"augmented-admin.js",
|
|
12673
|
+
// ENG-6859: the remote OAuth MCP proxy (brand-ninja, granola). NOT in
|
|
12674
|
+
// RESTARTABLE_CHANNEL_FILES - it's not a channel; a bundle update applies on
|
|
12675
|
+
// the next natural session restart. It re-reads the token from the secrets
|
|
12676
|
+
// file per request, so it never needs restarting just to pick up a rotation.
|
|
12677
|
+
"remote-oauth-proxy.js"
|
|
12673
12678
|
]) {
|
|
12674
12679
|
const src = join16(mcpSourceDir, file);
|
|
12675
12680
|
const dst = join16(targetDir, file);
|