@integrity-labs/agt-cli 0.28.264 → 0.28.265
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-E45AAMBQ.js → chunk-MWKR6B3T.js} +8 -1
- package/dist/{chunk-E45AAMBQ.js.map → chunk-MWKR6B3T.js.map} +1 -1
- package/dist/{chunk-MQ5S642N.js → chunk-PDE3XSVC.js} +3 -3
- package/dist/{claude-pair-runtime-X5NJYZSK.js → claude-pair-runtime-YZ2PGUW3.js} +2 -2
- package/dist/lib/manager-worker.js +10 -10
- package/dist/mcp/index.js +74 -0
- package/dist/mcp/origami.js +7 -0
- package/dist/{persistent-session-OP4TXILO.js → persistent-session-K5RJ4BVF.js} +2 -2
- package/dist/{responsiveness-probe-K2RGVZCR.js → responsiveness-probe-2PHY7QKJ.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-MQ5S642N.js.map → chunk-PDE3XSVC.js.map} +0 -0
- /package/dist/{claude-pair-runtime-X5NJYZSK.js.map → claude-pair-runtime-YZ2PGUW3.js.map} +0 -0
- /package/dist/{persistent-session-OP4TXILO.js.map → persistent-session-K5RJ4BVF.js.map} +0 -0
- /package/dist/{responsiveness-probe-K2RGVZCR.js.map → responsiveness-probe-2PHY7QKJ.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
success,
|
|
39
39
|
table,
|
|
40
40
|
warn
|
|
41
|
-
} from "../chunk-
|
|
41
|
+
} from "../chunk-PDE3XSVC.js";
|
|
42
42
|
import {
|
|
43
43
|
CHANNEL_REGISTRY,
|
|
44
44
|
DEFAULT_FRAMEWORK,
|
|
@@ -67,7 +67,7 @@ import {
|
|
|
67
67
|
renderTemplate,
|
|
68
68
|
resolveChannels,
|
|
69
69
|
serializeManifestForSlackCli
|
|
70
|
-
} from "../chunk-
|
|
70
|
+
} from "../chunk-MWKR6B3T.js";
|
|
71
71
|
import "../chunk-XWVM4KPK.js";
|
|
72
72
|
|
|
73
73
|
// src/bin/agt.ts
|
|
@@ -4826,7 +4826,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4826
4826
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4827
4827
|
import chalk18 from "chalk";
|
|
4828
4828
|
import ora16 from "ora";
|
|
4829
|
-
var cliVersion = true ? "0.28.
|
|
4829
|
+
var cliVersion = true ? "0.28.265" : "dev";
|
|
4830
4830
|
async function fetchLatestVersion() {
|
|
4831
4831
|
const host2 = getHost();
|
|
4832
4832
|
if (!host2) return null;
|
|
@@ -5840,7 +5840,7 @@ function handleError(err) {
|
|
|
5840
5840
|
}
|
|
5841
5841
|
|
|
5842
5842
|
// src/bin/agt.ts
|
|
5843
|
-
var cliVersion2 = true ? "0.28.
|
|
5843
|
+
var cliVersion2 = true ? "0.28.265" : "dev";
|
|
5844
5844
|
var program = new Command();
|
|
5845
5845
|
program.name("agt").description("Augmented CLI \u2014 agent provisioning and management").version(cliVersion2).option("--json", "Emit machine-readable JSON output (suppress spinners and colors)").option("--skip-update-check", "Skip the automatic update check on startup");
|
|
5846
5846
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -7181,6 +7181,13 @@ var FLAG_REGISTRY = [
|
|
|
7181
7181
|
defaultValue: false,
|
|
7182
7182
|
envVar: "AGT_MANAGER_FAILURE_NOTIFY_ENABLED"
|
|
7183
7183
|
},
|
|
7184
|
+
{
|
|
7185
|
+
key: "agent-request-reconnect",
|
|
7186
|
+
description: "Agent-facing `request_reconnect` MCP tool (ENG-7495). When ON, POST /host/request-reconnect accepts an agent's report that one of its integrations is failing auth, validates it against the shared needsReconnect predicate, and notifies the agent's human manager with a reconnect deep link (preferred channel; falls back to the team alert channel, then owner/admin email). OFF returns a soft \"not enabled\" result to the agent. Boolean gate; ships dark.",
|
|
7187
|
+
flagType: "boolean",
|
|
7188
|
+
defaultValue: false,
|
|
7189
|
+
envVar: "AGT_AGENT_REQUEST_RECONNECT_ENABLED"
|
|
7190
|
+
},
|
|
7184
7191
|
{
|
|
7185
7192
|
key: "model-api-error-reporting",
|
|
7186
7193
|
description: "Manager reports model-API failures (529 overloaded, 429 rate-limit, 5xx, timeouts) from spawned-agent output and its own eval/memory backend calls to the AGT API, which persists them and opens a threshold alert for early warning of provider incidents (ENG-7363). Boolean gate; ships dark. Materialized to the host flags-cache.",
|
|
@@ -9229,4 +9236,4 @@ export {
|
|
|
9229
9236
|
stopAllSessionsAndWait,
|
|
9230
9237
|
getProjectDir
|
|
9231
9238
|
};
|
|
9232
|
-
//# sourceMappingURL=chunk-
|
|
9239
|
+
//# sourceMappingURL=chunk-MWKR6B3T.js.map
|