@integrity-labs/agt-cli 0.27.155 → 0.27.157
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-3X6V4SVW.js → chunk-5E5B4T7K.js} +28 -1
- package/dist/chunk-5E5B4T7K.js.map +1 -0
- package/dist/{chunk-FR2MNN2P.js → chunk-OXDE5AVS.js} +2 -2
- package/dist/{chunk-MYKK5OHT.js → chunk-R2ILRTGB.js} +59 -14
- package/dist/chunk-R2ILRTGB.js.map +1 -0
- package/dist/{claude-pair-runtime-UQFPB2BE.js → claude-pair-runtime-JOQXPPJL.js} +2 -2
- package/dist/lib/manager-worker.js +19 -13
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/{persistent-session-AIM4U3AL.js → persistent-session-6UCKU43W.js} +3 -3
- package/dist/{responsiveness-probe-6L2XS27G.js → responsiveness-probe-2YT3RAY5.js} +48 -10
- package/dist/responsiveness-probe-2YT3RAY5.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-3X6V4SVW.js.map +0 -1
- package/dist/chunk-MYKK5OHT.js.map +0 -1
- package/dist/responsiveness-probe-6L2XS27G.js.map +0 -1
- /package/dist/{chunk-FR2MNN2P.js.map → chunk-OXDE5AVS.js.map} +0 -0
- /package/dist/{claude-pair-runtime-UQFPB2BE.js.map → claude-pair-runtime-JOQXPPJL.js.map} +0 -0
- /package/dist/{persistent-session-AIM4U3AL.js.map → persistent-session-6UCKU43W.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
success,
|
|
29
29
|
table,
|
|
30
30
|
warn
|
|
31
|
-
} from "../chunk-
|
|
31
|
+
} from "../chunk-R2ILRTGB.js";
|
|
32
32
|
import {
|
|
33
33
|
CHANNEL_REGISTRY,
|
|
34
34
|
DEPLOYMENT_TEMPLATES,
|
|
@@ -54,7 +54,7 @@ import {
|
|
|
54
54
|
renderTemplate,
|
|
55
55
|
resolveChannels,
|
|
56
56
|
serializeManifestForSlackCli
|
|
57
|
-
} from "../chunk-
|
|
57
|
+
} from "../chunk-5E5B4T7K.js";
|
|
58
58
|
|
|
59
59
|
// src/bin/agt.ts
|
|
60
60
|
import { join as join20 } from "path";
|
|
@@ -4941,7 +4941,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4941
4941
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4942
4942
|
import chalk18 from "chalk";
|
|
4943
4943
|
import ora16 from "ora";
|
|
4944
|
-
var cliVersion = true ? "0.27.
|
|
4944
|
+
var cliVersion = true ? "0.27.157" : "dev";
|
|
4945
4945
|
async function fetchLatestVersion() {
|
|
4946
4946
|
const host2 = getHost();
|
|
4947
4947
|
if (!host2) return null;
|
|
@@ -5864,7 +5864,7 @@ function handleError(err) {
|
|
|
5864
5864
|
}
|
|
5865
5865
|
|
|
5866
5866
|
// src/bin/agt.ts
|
|
5867
|
-
var cliVersion2 = true ? "0.27.
|
|
5867
|
+
var cliVersion2 = true ? "0.27.157" : "dev";
|
|
5868
5868
|
var program = new Command();
|
|
5869
5869
|
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");
|
|
5870
5870
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -4853,6 +4853,33 @@ var gdriveCommentsTriggerAdapter = {
|
|
|
4853
4853
|
};
|
|
4854
4854
|
registerTriggerSource(gdriveCommentsTriggerAdapter);
|
|
4855
4855
|
|
|
4856
|
+
// ../../packages/core/dist/feature-flags/registry.js
|
|
4857
|
+
var FLAG_REGISTRY = [
|
|
4858
|
+
{
|
|
4859
|
+
key: "auto-pause",
|
|
4860
|
+
description: "Auto-pause agents on sustained hourly-cost breach (ENG-5561). Boolean gate; ships dark.",
|
|
4861
|
+
flagType: "boolean",
|
|
4862
|
+
defaultValue: false,
|
|
4863
|
+
envVar: "AUGMENTED_AUTO_PAUSE_ENABLED"
|
|
4864
|
+
},
|
|
4865
|
+
{
|
|
4866
|
+
key: "channel-busy-ack",
|
|
4867
|
+
description: "Busy-but-alive ack notices when an agent is mid-task (ENG-6180). Boolean gate; ships dark.",
|
|
4868
|
+
flagType: "boolean",
|
|
4869
|
+
defaultValue: false,
|
|
4870
|
+
envVar: "AGT_CHANNEL_BUSY_ACK_ENABLED"
|
|
4871
|
+
},
|
|
4872
|
+
{
|
|
4873
|
+
key: "channel-quarantine-mode",
|
|
4874
|
+
description: "Optional-channel quarantine (ENG-5932): off = disabled, shadow = log matches only, enforce = quarantine.",
|
|
4875
|
+
flagType: "enum",
|
|
4876
|
+
allowedValues: ["off", "shadow", "enforce"],
|
|
4877
|
+
defaultValue: "off",
|
|
4878
|
+
envVar: "AGT_CHANNEL_QUARANTINE_MODE"
|
|
4879
|
+
}
|
|
4880
|
+
];
|
|
4881
|
+
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
4882
|
+
|
|
4856
4883
|
export {
|
|
4857
4884
|
wrapScheduledTaskPrompt,
|
|
4858
4885
|
parseDeliveryTarget,
|
|
@@ -4910,4 +4937,4 @@ export {
|
|
|
4910
4937
|
attributeTranscriptUsageByRun,
|
|
4911
4938
|
KANBAN_CHECK_COMMAND
|
|
4912
4939
|
};
|
|
4913
|
-
//# sourceMappingURL=chunk-
|
|
4940
|
+
//# sourceMappingURL=chunk-5E5B4T7K.js.map
|