@integrity-labs/agt-cli 0.27.152 → 0.27.154
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 +3 -3
- package/dist/{chunk-CPXNNR4W.js → chunk-ELCLXTJI.js} +1 -1
- package/dist/lib/manager-worker.js +2 -8
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +25 -10
- package/package.json +1 -1
- /package/dist/{chunk-CPXNNR4W.js.map → chunk-ELCLXTJI.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-ELCLXTJI.js";
|
|
32
32
|
import {
|
|
33
33
|
CHANNEL_REGISTRY,
|
|
34
34
|
DEPLOYMENT_TEMPLATES,
|
|
@@ -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.154" : "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.154" : "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) => {
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
provisionStopHook,
|
|
20
20
|
requireHost,
|
|
21
21
|
safeWriteJsonAtomic
|
|
22
|
-
} from "../chunk-
|
|
22
|
+
} from "../chunk-ELCLXTJI.js";
|
|
23
23
|
import {
|
|
24
24
|
getProjectDir as getProjectDir2,
|
|
25
25
|
getReadyTasks,
|
|
@@ -1690,12 +1690,7 @@ var DirectChatSpawnGate = class {
|
|
|
1690
1690
|
import { join as join2 } from "path";
|
|
1691
1691
|
import { homedir } from "os";
|
|
1692
1692
|
import { readdir, stat, readFile } from "fs/promises";
|
|
1693
|
-
var ARTIFACT_STREAM_ENV = "AUGMENTED_ARTIFACT_STREAM_ENABLED";
|
|
1694
1693
|
var ARTEFACT_ENTRY_FILE = "index.html";
|
|
1695
|
-
function isArtifactStreamingEnabled(env = process.env) {
|
|
1696
|
-
const v = env[ARTIFACT_STREAM_ENV];
|
|
1697
|
-
return v === "true" || v === "1";
|
|
1698
|
-
}
|
|
1699
1694
|
function errMessage(err) {
|
|
1700
1695
|
return err instanceof Error ? err.message : String(err);
|
|
1701
1696
|
}
|
|
@@ -4919,7 +4914,7 @@ var cachedMaintenanceWindow = null;
|
|
|
4919
4914
|
var lastVersionCheckAt = 0;
|
|
4920
4915
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
4921
4916
|
var lastResponsivenessProbeAt = 0;
|
|
4922
|
-
var agtCliVersion = true ? "0.27.
|
|
4917
|
+
var agtCliVersion = true ? "0.27.154" : "dev";
|
|
4923
4918
|
function resolveBrewPath(execFileSync4) {
|
|
4924
4919
|
try {
|
|
4925
4920
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -11318,7 +11313,6 @@ function stopCaffeinate() {
|
|
|
11318
11313
|
var artifactScanners = /* @__PURE__ */ new Map();
|
|
11319
11314
|
var artifactStreamingInFlight = false;
|
|
11320
11315
|
async function driveArtifactStreaming() {
|
|
11321
|
-
if (!isArtifactStreamingEnabled()) return;
|
|
11322
11316
|
if (artifactStreamingInFlight) return;
|
|
11323
11317
|
artifactStreamingInFlight = true;
|
|
11324
11318
|
try {
|