@integrity-labs/agt-cli 0.27.105 → 0.27.106
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-ZFJTCUVZ.js → chunk-4WI2ACNG.js} +2 -2
- package/dist/{chunk-S5RULZFY.js → chunk-GKRVSTYY.js} +7 -3
- package/dist/chunk-GKRVSTYY.js.map +1 -0
- package/dist/{chunk-VCDQUERH.js → chunk-SKKWVNUY.js} +2 -2
- package/dist/{claude-pair-runtime-EGHRQJRW.js → claude-pair-runtime-Q4FKQLMQ.js} +2 -2
- package/dist/lib/manager-worker.js +18 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/{persistent-session-HGJ6THYI.js → persistent-session-4O56FXQX.js} +3 -3
- package/dist/{responsiveness-probe-HH5V6RUN.js → responsiveness-probe-I4XS2KCA.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-S5RULZFY.js.map +0 -1
- /package/dist/{chunk-ZFJTCUVZ.js.map → chunk-4WI2ACNG.js.map} +0 -0
- /package/dist/{chunk-VCDQUERH.js.map → chunk-SKKWVNUY.js.map} +0 -0
- /package/dist/{claude-pair-runtime-EGHRQJRW.js.map → claude-pair-runtime-Q4FKQLMQ.js.map} +0 -0
- /package/dist/{persistent-session-HGJ6THYI.js.map → persistent-session-4O56FXQX.js.map} +0 -0
- /package/dist/{responsiveness-probe-HH5V6RUN.js.map → responsiveness-probe-I4XS2KCA.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-4WI2ACNG.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-GKRVSTYY.js";
|
|
58
58
|
|
|
59
59
|
// src/bin/agt.ts
|
|
60
60
|
import { join as join20 } from "path";
|
|
@@ -4934,7 +4934,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4934
4934
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4935
4935
|
import chalk18 from "chalk";
|
|
4936
4936
|
import ora16 from "ora";
|
|
4937
|
-
var cliVersion = true ? "0.27.
|
|
4937
|
+
var cliVersion = true ? "0.27.106" : "dev";
|
|
4938
4938
|
async function fetchLatestVersion() {
|
|
4939
4939
|
const host2 = getHost();
|
|
4940
4940
|
if (!host2) return null;
|
|
@@ -5857,7 +5857,7 @@ function handleError(err) {
|
|
|
5857
5857
|
}
|
|
5858
5858
|
|
|
5859
5859
|
// src/bin/agt.ts
|
|
5860
|
-
var cliVersion2 = true ? "0.27.
|
|
5860
|
+
var cliVersion2 = true ? "0.27.106" : "dev";
|
|
5861
5861
|
var program = new Command();
|
|
5862
5862
|
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");
|
|
5863
5863
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
parseDeliveryTarget,
|
|
10
10
|
registerFramework,
|
|
11
11
|
wrapScheduledTaskPrompt
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-GKRVSTYY.js";
|
|
13
13
|
|
|
14
14
|
// ../../packages/core/dist/integrations/registry.js
|
|
15
15
|
var INTEGRATION_REGISTRY = [
|
|
@@ -7586,4 +7586,4 @@ export {
|
|
|
7586
7586
|
managerInstallSystemUnitCommand,
|
|
7587
7587
|
managerUninstallSystemUnitCommand
|
|
7588
7588
|
};
|
|
7589
|
-
//# sourceMappingURL=chunk-
|
|
7589
|
+
//# sourceMappingURL=chunk-4WI2ACNG.js.map
|
|
@@ -1269,7 +1269,7 @@ var KNOWN_PRICING_REGIONS = Object.keys(HOURLY_BY_REGION);
|
|
|
1269
1269
|
|
|
1270
1270
|
// ../../packages/core/dist/scheduled-tasks/suppress.js
|
|
1271
1271
|
var SUPPRESS_SENTINEL = "<no-delivery/>";
|
|
1272
|
-
var SENTINEL_REGEX =
|
|
1272
|
+
var SENTINEL_REGEX = /`{0,3}<no-delivery\/>`{0,3}/g;
|
|
1273
1273
|
function classifyOutput(output) {
|
|
1274
1274
|
if (output == null) {
|
|
1275
1275
|
return { action: "suppress", deliverable: "", suppressedNotes: "" };
|
|
@@ -1300,7 +1300,11 @@ var NON_DELIVERABLE_REMAINDER_PATTERNS = [
|
|
|
1300
1300
|
// Default delivery-pipeline footer.
|
|
1301
1301
|
/^sent (?:from|via)\b/i,
|
|
1302
1302
|
// Mobile-style signatures.
|
|
1303
|
-
/^—?\s*automated (?:brief|report|message)\b/i
|
|
1303
|
+
/^—?\s*automated (?:brief|report|message)\b/i,
|
|
1304
|
+
// ENG-6084: stray code-fence lines left behind when the agent wrapped the
|
|
1305
|
+
// sentinel in a fenced block (```\n<no-delivery/>\n```) — the fence lines
|
|
1306
|
+
// are formatting residue, not a deliverable.
|
|
1307
|
+
/^`{1,3}\w*$/
|
|
1304
1308
|
];
|
|
1305
1309
|
function looksLikeNotesOnly(remainder) {
|
|
1306
1310
|
const lines = remainder.split("\n").map((l) => l.trim()).filter((l) => l.length > 0);
|
|
@@ -4281,4 +4285,4 @@ export {
|
|
|
4281
4285
|
attributeTranscriptUsageByRun,
|
|
4282
4286
|
KANBAN_CHECK_COMMAND
|
|
4283
4287
|
};
|
|
4284
|
-
//# sourceMappingURL=chunk-
|
|
4288
|
+
//# sourceMappingURL=chunk-GKRVSTYY.js.map
|