@integrity-labs/agt-cli 0.28.220 → 0.28.222
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-M2PGJQP3.js → chunk-B3E4B7JF.js} +8 -1
- package/dist/{chunk-M2PGJQP3.js.map → chunk-B3E4B7JF.js.map} +1 -1
- package/dist/{chunk-QLNXRQAV.js → chunk-XNMPRL76.js} +3 -3
- package/dist/{claude-pair-runtime-U3ZFSZA2.js → claude-pair-runtime-AEPVKQNP.js} +2 -2
- package/dist/lib/manager-worker.js +106 -9
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +342 -1
- package/dist/{persistent-session-S2REZDHF.js → persistent-session-M4ZTLCDP.js} +2 -2
- package/dist/{responsiveness-probe-BHFLFXY5.js → responsiveness-probe-E25HFGJL.js} +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-QLNXRQAV.js.map → chunk-XNMPRL76.js.map} +0 -0
- /package/dist/{claude-pair-runtime-U3ZFSZA2.js.map → claude-pair-runtime-AEPVKQNP.js.map} +0 -0
- /package/dist/{persistent-session-S2REZDHF.js.map → persistent-session-M4ZTLCDP.js.map} +0 -0
- /package/dist/{responsiveness-probe-BHFLFXY5.js.map → responsiveness-probe-E25HFGJL.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-XNMPRL76.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-B3E4B7JF.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.222" : "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.222" : "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) => {
|
|
@@ -6862,6 +6862,13 @@ var FLAG_REGISTRY = [
|
|
|
6862
6862
|
defaultValue: true,
|
|
6863
6863
|
envVar: "AGT_CHANNEL_REPLAY_ENABLED"
|
|
6864
6864
|
},
|
|
6865
|
+
{
|
|
6866
|
+
key: "restart-doorbell",
|
|
6867
|
+
description: "Fast agent-restart lane (ENG-7335): when ON, the manager subscribes to host_agents restart_requested_at changes over its existing Realtime channel and services a dashboard-issued restart on a narrow per-agent lane (kill + respawn the one agent) within a few seconds, instead of waiting up to 50-110s for the next full poll cycle to notice it. The slow poll remains the durable backstop, so a missed doorbell only costs latency, never correctness. Ships dark (default off); staged on the agt-aws-1 canary before fleet enable. The AGT_RESTART_DOORBELL_ENABLED env override is the per-host escape hatch and kill switch; precedence is env override > flag value > this default.",
|
|
6868
|
+
flagType: "boolean",
|
|
6869
|
+
defaultValue: false,
|
|
6870
|
+
envVar: "AGT_RESTART_DOORBELL_ENABLED"
|
|
6871
|
+
},
|
|
6865
6872
|
{
|
|
6866
6873
|
key: "channel-silent-loss-alarm",
|
|
6867
6874
|
description: "Channel silent-loss alarm (ENG-6728): when ON, the responsiveness-probe route creates a per-agent CloudWatch alarm that pages on a `ChannelDeflections` Cause=replay_orphaned datapoint (a recoverable inbound aged out without delivery). Observe-first rollout gate, flipped stage-wide from the admin Feature Flags page; the underlying metric ships since ENG-6355. The AUGMENTED_CHANNEL_SILENT_LOSS_ALARM_ENABLED env var is retained as the highest-precedence operator override; precedence is env override > flag value > this default.",
|
|
@@ -8964,4 +8971,4 @@ export {
|
|
|
8964
8971
|
stopAllSessionsAndWait,
|
|
8965
8972
|
getProjectDir
|
|
8966
8973
|
};
|
|
8967
|
-
//# sourceMappingURL=chunk-
|
|
8974
|
+
//# sourceMappingURL=chunk-B3E4B7JF.js.map
|