@integrity-labs/agt-cli 0.28.508 → 0.28.510
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-LNPJI2AE.js → chunk-7DZNVMMX.js} +53 -22
- package/dist/{chunk-LNPJI2AE.js.map → chunk-7DZNVMMX.js.map} +1 -1
- package/dist/{chunk-GK3TSZ4S.js → chunk-EQW3EHDQ.js} +15 -3
- package/dist/{chunk-GK3TSZ4S.js.map → chunk-EQW3EHDQ.js.map} +1 -1
- package/dist/{claude-pair-runtime-YQ7V5TS6.js → claude-pair-runtime-4CYSUXLF.js} +2 -2
- package/dist/lib/manager-worker.js +23 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +52 -21
- package/dist/mcp/index.js +10 -0
- package/dist/mcp/origami.js +52 -21
- package/dist/mcp/slack-channel.js +52 -21
- package/dist/mcp/telegram-channel.js +52 -21
- package/dist/{persistent-session-VX37ESOS.js → persistent-session-4VF7V4HB.js} +2 -2
- package/dist/{responsiveness-probe-5MEW5XNI.js → responsiveness-probe-PWS3FIRF.js} +2 -2
- package/package.json +1 -1
- /package/dist/{claude-pair-runtime-YQ7V5TS6.js.map → claude-pair-runtime-4CYSUXLF.js.map} +0 -0
- /package/dist/{persistent-session-VX37ESOS.js.map → persistent-session-4VF7V4HB.js.map} +0 -0
- /package/dist/{responsiveness-probe-5MEW5XNI.js.map → responsiveness-probe-PWS3FIRF.js.map} +0 -0
|
@@ -43,7 +43,7 @@ import {
|
|
|
43
43
|
resolveConnectivityProbe,
|
|
44
44
|
worseConnectivityOutcome,
|
|
45
45
|
wrapScheduledTaskPrompt
|
|
46
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-7DZNVMMX.js";
|
|
47
47
|
import {
|
|
48
48
|
parsePsRows
|
|
49
49
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -4790,6 +4790,18 @@ ${sections}`
|
|
|
4790
4790
|
// that removing the integration OR flipping the catalog stdio_mcp
|
|
4791
4791
|
// flag back (rollback) prunes the entry symmetrically.
|
|
4792
4792
|
"origami",
|
|
4793
|
+
// ENG-8421 retirement tombstone. Vercel moved from a remote MCP
|
|
4794
|
+
// (`https://mcp.vercel.com`) to an api_key Direct HTTP integration, so
|
|
4795
|
+
// its registry entry no longer carries `remoteMcp` — which means it no
|
|
4796
|
+
// longer contributes to `registryRemoteMcpKeys` above. Without this
|
|
4797
|
+
// literal, a host that installed the MCP variant would keep its
|
|
4798
|
+
// `vercel` entry in `.mcp.json` FOREVER: nothing declares it any more,
|
|
4799
|
+
// and the prune can only remove keys it knows about. The stale server
|
|
4800
|
+
// would keep resolving against Claude Code's still-valid stored OAuth
|
|
4801
|
+
// grant, so the agent would see the retired MCP tools AND the new
|
|
4802
|
+
// Direct HTTP ones at once. Inert on a host that never had the MCP
|
|
4803
|
+
// variant; keep until the fleet has refreshed past the retirement.
|
|
4804
|
+
"vercel",
|
|
4793
4805
|
...nativeMcpKeys,
|
|
4794
4806
|
...registryRemoteMcpKeys,
|
|
4795
4807
|
...Object.entries(OAUTH_PROVIDERS).filter(([, provider]) => Boolean(provider.mcpUrl)).map(([id]) => id)
|
|
@@ -5302,7 +5314,7 @@ function exchangeFailureKind(err) {
|
|
|
5302
5314
|
}
|
|
5303
5315
|
|
|
5304
5316
|
// src/lib/api-client.ts
|
|
5305
|
-
var agtCliVersion = true ? "0.28.
|
|
5317
|
+
var agtCliVersion = true ? "0.28.510" : "dev";
|
|
5306
5318
|
var lastConfigHash = null;
|
|
5307
5319
|
function setConfigHash(hash) {
|
|
5308
5320
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -8608,4 +8620,4 @@ export {
|
|
|
8608
8620
|
managerInstallSystemUnitCommand,
|
|
8609
8621
|
managerUninstallSystemUnitCommand
|
|
8610
8622
|
};
|
|
8611
|
-
//# sourceMappingURL=chunk-
|
|
8623
|
+
//# sourceMappingURL=chunk-EQW3EHDQ.js.map
|