@integrity-labs/agt-cli 0.9.4 → 0.9.7
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-LPYH2O7U.js → chunk-2F6REM24.js} +3 -9
- package/dist/chunk-2F6REM24.js.map +1 -0
- package/dist/lib/manager-worker.js +28 -1
- package/dist/lib/manager-worker.js.map +1 -1
- package/mcp/index.js +6 -1
- package/package.json +1 -1
- package/dist/chunk-LPYH2O7U.js.map +0 -1
package/dist/bin/agt.js
CHANGED
|
@@ -32,7 +32,7 @@ import {
|
|
|
32
32
|
resolveChannels,
|
|
33
33
|
serializeManifestForSlackCli,
|
|
34
34
|
setActiveTeam
|
|
35
|
-
} from "../chunk-
|
|
35
|
+
} from "../chunk-2F6REM24.js";
|
|
36
36
|
|
|
37
37
|
// src/bin/agt.ts
|
|
38
38
|
import { join as join11 } from "path";
|
|
@@ -3411,7 +3411,7 @@ async function acpxCloseCommand(agent2, _opts, cmd) {
|
|
|
3411
3411
|
import { execSync } from "child_process";
|
|
3412
3412
|
import chalk19 from "chalk";
|
|
3413
3413
|
import ora15 from "ora";
|
|
3414
|
-
var cliVersion = true ? "0.9.
|
|
3414
|
+
var cliVersion = true ? "0.9.7" : "dev";
|
|
3415
3415
|
async function fetchLatestVersion() {
|
|
3416
3416
|
const host2 = AGT_HOST;
|
|
3417
3417
|
if (!host2) return null;
|
|
@@ -3527,7 +3527,7 @@ async function checkForUpdateOnStartup() {
|
|
|
3527
3527
|
}
|
|
3528
3528
|
|
|
3529
3529
|
// src/bin/agt.ts
|
|
3530
|
-
var cliVersion2 = true ? "0.9.
|
|
3530
|
+
var cliVersion2 = true ? "0.9.7" : "dev";
|
|
3531
3531
|
var program = new Command();
|
|
3532
3532
|
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");
|
|
3533
3533
|
program.hook("preAction", (thisCommand) => {
|
|
@@ -2077,16 +2077,10 @@ function buildSettingsJson(input) {
|
|
|
2077
2077
|
}
|
|
2078
2078
|
function buildMcpJson(input) {
|
|
2079
2079
|
const mcpServers = {};
|
|
2080
|
-
let mcpCommand = "npx";
|
|
2081
|
-
let mcpArgs = ["-y", "@integrity-labs/augmented-mcp"];
|
|
2082
2080
|
const localMcpPath = join3(getHomeDir3(), ".augmented", "_mcp", "index.js");
|
|
2083
|
-
if (existsSync3(localMcpPath)) {
|
|
2084
|
-
mcpCommand = "node";
|
|
2085
|
-
mcpArgs = [localMcpPath];
|
|
2086
|
-
}
|
|
2087
2081
|
mcpServers["augmented"] = {
|
|
2088
|
-
command:
|
|
2089
|
-
args:
|
|
2082
|
+
command: "node",
|
|
2083
|
+
args: [localMcpPath],
|
|
2090
2084
|
env: {
|
|
2091
2085
|
AGT_HOST: process.env["AGT_HOST"] ?? "",
|
|
2092
2086
|
AGT_API_KEY: process.env["AGT_API_KEY"] ?? "",
|
|
@@ -4730,4 +4724,4 @@ export {
|
|
|
4730
4724
|
detectDrift,
|
|
4731
4725
|
provision
|
|
4732
4726
|
};
|
|
4733
|
-
//# sourceMappingURL=chunk-
|
|
4727
|
+
//# sourceMappingURL=chunk-2F6REM24.js.map
|