@integrity-labs/agt-cli 0.28.14 → 0.28.16
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-7BWFZ7LX.js → chunk-F3RMS762.js} +2 -2
- package/dist/{chunk-CHUL4CPY.js → chunk-FW5TXDQC.js} +11 -1
- package/dist/{chunk-CHUL4CPY.js.map → chunk-FW5TXDQC.js.map} +1 -1
- package/dist/{chunk-REFMPKKL.js → chunk-L2OZHCOH.js} +2 -2
- package/dist/{claude-pair-runtime-AVIWH62D.js → claude-pair-runtime-VQWI5YXW.js} +2 -2
- package/dist/lib/manager-worker.js +8 -8
- package/dist/mcp/index.js +74 -4
- package/dist/{persistent-session-EO6TNQK2.js → persistent-session-MIRJWKG7.js} +3 -3
- package/dist/{responsiveness-probe-SV6QQHRW.js → responsiveness-probe-3G7C4AP4.js} +3 -3
- package/package.json +1 -1
- /package/dist/{chunk-7BWFZ7LX.js.map → chunk-F3RMS762.js.map} +0 -0
- /package/dist/{chunk-REFMPKKL.js.map → chunk-L2OZHCOH.js.map} +0 -0
- /package/dist/{claude-pair-runtime-AVIWH62D.js.map → claude-pair-runtime-VQWI5YXW.js.map} +0 -0
- /package/dist/{persistent-session-EO6TNQK2.js.map → persistent-session-MIRJWKG7.js.map} +0 -0
- /package/dist/{responsiveness-probe-SV6QQHRW.js.map → responsiveness-probe-3G7C4AP4.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -33,7 +33,7 @@ import {
|
|
|
33
33
|
success,
|
|
34
34
|
table,
|
|
35
35
|
warn
|
|
36
|
-
} from "../chunk-
|
|
36
|
+
} from "../chunk-L2OZHCOH.js";
|
|
37
37
|
import {
|
|
38
38
|
CHANNEL_REGISTRY,
|
|
39
39
|
DEPLOYMENT_TEMPLATES,
|
|
@@ -60,7 +60,7 @@ import {
|
|
|
60
60
|
renderTemplate,
|
|
61
61
|
resolveChannels,
|
|
62
62
|
serializeManifestForSlackCli
|
|
63
|
-
} from "../chunk-
|
|
63
|
+
} from "../chunk-FW5TXDQC.js";
|
|
64
64
|
|
|
65
65
|
// src/bin/agt.ts
|
|
66
66
|
import { join as join21 } from "path";
|
|
@@ -4773,7 +4773,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4773
4773
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4774
4774
|
import chalk18 from "chalk";
|
|
4775
4775
|
import ora16 from "ora";
|
|
4776
|
-
var cliVersion = true ? "0.28.
|
|
4776
|
+
var cliVersion = true ? "0.28.16" : "dev";
|
|
4777
4777
|
async function fetchLatestVersion() {
|
|
4778
4778
|
const host2 = getHost();
|
|
4779
4779
|
if (!host2) return null;
|
|
@@ -5696,7 +5696,7 @@ function handleError(err) {
|
|
|
5696
5696
|
}
|
|
5697
5697
|
|
|
5698
5698
|
// src/bin/agt.ts
|
|
5699
|
-
var cliVersion2 = true ? "0.28.
|
|
5699
|
+
var cliVersion2 = true ? "0.28.16" : "dev";
|
|
5700
5700
|
var program = new Command();
|
|
5701
5701
|
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");
|
|
5702
5702
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
claudeModelAlias,
|
|
3
3
|
isClaudeFastMode
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-FW5TXDQC.js";
|
|
5
5
|
import {
|
|
6
6
|
reapOrphanChannelMcps
|
|
7
7
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -1487,4 +1487,4 @@ export {
|
|
|
1487
1487
|
stopAllSessionsAndWait,
|
|
1488
1488
|
getProjectDir
|
|
1489
1489
|
};
|
|
1490
|
-
//# sourceMappingURL=chunk-
|
|
1490
|
+
//# sourceMappingURL=chunk-F3RMS762.js.map
|
|
@@ -2392,6 +2392,16 @@ var FLAG_REGISTRY = [
|
|
|
2392
2392
|
defaultValue: false,
|
|
2393
2393
|
envVar: "AGT_CHANNEL_BUSY_ACK_ENABLED"
|
|
2394
2394
|
},
|
|
2395
|
+
{
|
|
2396
|
+
key: "agent-restart-approval",
|
|
2397
|
+
description: "Route an agent's self-restart request (ENG-6373) through HITL approval to its Manager instead of the local-confirm + flag fast path. Idle requests auto-approve + notify; requests with active in-flight work page the Manager. Boolean gate; ships dark. When OFF the request_restart tool falls back to the legacy local-flag behaviour.",
|
|
2398
|
+
flagType: "boolean",
|
|
2399
|
+
defaultValue: false,
|
|
2400
|
+
envVar: "AGT_AGENT_RESTART_APPROVAL_ENABLED",
|
|
2401
|
+
// Enabling lets a (possibly prompt-injected) agent file Manager-facing
|
|
2402
|
+
// approval requests; flipping it is a capability change worth confirming.
|
|
2403
|
+
sensitive: true
|
|
2404
|
+
},
|
|
2395
2405
|
{
|
|
2396
2406
|
key: "direct-chat-doorbell",
|
|
2397
2407
|
description: "Direct-chat doorbell + pull-cursor delivery (ENG-5927, ADR-0020): the manager rings a content-free doorbell and the agent's in-session MCP pulls via the capped /host/direct-chat/poll claim, replacing send-keys/one-shot delivery. Boolean gate; ships dark.",
|
|
@@ -5156,4 +5166,4 @@ export {
|
|
|
5156
5166
|
coerceEnvValue,
|
|
5157
5167
|
FLAGS_SCHEMA_VERSION
|
|
5158
5168
|
};
|
|
5159
|
-
//# sourceMappingURL=chunk-
|
|
5169
|
+
//# sourceMappingURL=chunk-FW5TXDQC.js.map
|