@integrity-labs/agt-cli 0.11.0 → 0.12.1
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 +6 -4
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-QU7FBXH3.js → chunk-M6FSTVGG.js} +2 -2
- package/dist/chunk-M6FSTVGG.js.map +1 -0
- package/dist/{chunk-WTMVQND4.js → chunk-S5VHDDAJ.js} +576 -232
- package/dist/chunk-S5VHDDAJ.js.map +1 -0
- package/dist/{claude-scheduler-7PVWQHWU.js → claude-scheduler-CLSMSF5W.js} +2 -2
- package/dist/lib/manager-worker.js +340 -23
- package/dist/lib/manager-worker.js.map +1 -1
- package/mcp/index.js +23 -3
- package/mcp/slack-channel.js +31 -2
- package/package.json +1 -1
- package/dist/chunk-QU7FBXH3.js.map +0 -1
- package/dist/chunk-WTMVQND4.js.map +0 -1
- /package/dist/{claude-scheduler-7PVWQHWU.js.map → claude-scheduler-CLSMSF5W.js.map} +0 -0
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-S5VHDDAJ.js";
|
|
36
36
|
|
|
37
37
|
// src/bin/agt.ts
|
|
38
38
|
import { join as join11 } from "path";
|
|
@@ -2526,7 +2526,9 @@ import { readFileSync as readFileSync3, existsSync as existsSync3 } from "fs";
|
|
|
2526
2526
|
import { join as join9 } from "path";
|
|
2527
2527
|
async function agentShowCommand(codeName, opts) {
|
|
2528
2528
|
const json = isJsonMode();
|
|
2529
|
-
const
|
|
2529
|
+
const unifiedDir = join9(opts.configDir, codeName, "provision");
|
|
2530
|
+
const legacyDir = join9(opts.configDir, codeName, "claudecode", "provision");
|
|
2531
|
+
const agentDir = existsSync3(unifiedDir) ? unifiedDir : legacyDir;
|
|
2530
2532
|
const hasLocalConfig = existsSync3(agentDir);
|
|
2531
2533
|
let apiChannels = null;
|
|
2532
2534
|
let apiAgent = null;
|
|
@@ -3715,7 +3717,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
3715
3717
|
import { existsSync as existsSync5, realpathSync } from "fs";
|
|
3716
3718
|
import chalk20 from "chalk";
|
|
3717
3719
|
import ora15 from "ora";
|
|
3718
|
-
var cliVersion = true ? "0.
|
|
3720
|
+
var cliVersion = true ? "0.12.1" : "dev";
|
|
3719
3721
|
async function fetchLatestVersion() {
|
|
3720
3722
|
const host2 = getHost();
|
|
3721
3723
|
if (!host2) return null;
|
|
@@ -4164,7 +4166,7 @@ function handleError(err) {
|
|
|
4164
4166
|
}
|
|
4165
4167
|
|
|
4166
4168
|
// src/bin/agt.ts
|
|
4167
|
-
var cliVersion2 = true ? "0.
|
|
4169
|
+
var cliVersion2 = true ? "0.12.1" : "dev";
|
|
4168
4170
|
var program = new Command();
|
|
4169
4171
|
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");
|
|
4170
4172
|
program.hook("preAction", (thisCommand) => {
|