@integrity-labs/agt-cli 0.21.9 → 0.22.0
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 +29 -27
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-3ZO3LKA2.js → chunk-27FZ5QEI.js} +68 -3145
- package/dist/chunk-27FZ5QEI.js.map +1 -0
- package/dist/chunk-BZV2KNHY.js +3173 -0
- package/dist/chunk-BZV2KNHY.js.map +1 -0
- package/dist/{chunk-QO2FOMWJ.js → chunk-DBGGT2MC.js} +73 -4
- package/dist/chunk-DBGGT2MC.js.map +1 -0
- package/dist/{claude-pair-runtime-KXWTU5YT.js → claude-pair-runtime-LZAGWNME.js} +2 -2
- package/dist/lib/manager-worker.js +210 -84
- package/dist/lib/manager-worker.js.map +1 -1
- package/{mcp → dist/mcp}/index.js +0 -0
- package/{mcp → dist/mcp}/slack-channel.js +0 -0
- package/{mcp → dist/mcp}/telegram-channel.js +672 -14
- package/dist/{persistent-session-3LVAPC3T.js → persistent-session-EI7576OO.js} +11 -2
- package/dist/responsiveness-probe-SIMNGYC4.js +32 -0
- package/dist/responsiveness-probe-SIMNGYC4.js.map +1 -0
- package/package.json +3 -4
- package/dist/chunk-3ZO3LKA2.js.map +0 -1
- package/dist/chunk-QO2FOMWJ.js.map +0 -1
- /package/dist/{claude-pair-runtime-KXWTU5YT.js.map → claude-pair-runtime-LZAGWNME.js.map} +0 -0
- /package/{mcp → dist/mcp}/direct-chat-channel.js +0 -0
- /package/dist/{persistent-session-3LVAPC3T.js.map → persistent-session-EI7576OO.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -1,38 +1,17 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
ApiError,
|
|
4
|
-
CHANNEL_REGISTRY,
|
|
5
|
-
DEPLOYMENT_TEMPLATES,
|
|
6
|
-
SLACK_SCOPE_CATEGORY_LABELS,
|
|
7
|
-
SLACK_SCOPE_PRESETS,
|
|
8
|
-
SlackApiError,
|
|
9
4
|
api,
|
|
10
|
-
createSlackApp,
|
|
11
|
-
deriveConsoleUrl,
|
|
12
|
-
detectDrift,
|
|
13
5
|
error,
|
|
14
6
|
exchangeApiKey,
|
|
15
|
-
extractFrontmatter,
|
|
16
|
-
generateCharterMd,
|
|
17
|
-
generateSlackAppManifest,
|
|
18
|
-
generateToolsMd,
|
|
19
7
|
getActiveTeam,
|
|
20
|
-
getAllChannelIds,
|
|
21
8
|
getApiKey,
|
|
22
|
-
getChannel,
|
|
23
|
-
getDefaultSlackScopes,
|
|
24
|
-
getFramework,
|
|
25
9
|
getHost,
|
|
26
10
|
getHostId,
|
|
27
11
|
getManagerPaths,
|
|
28
|
-
getScopesByCategory,
|
|
29
|
-
getTemplate,
|
|
30
12
|
info,
|
|
31
13
|
isJsonMode,
|
|
32
14
|
jsonOutput,
|
|
33
|
-
lintAll,
|
|
34
|
-
lintCharter,
|
|
35
|
-
lintTools,
|
|
36
15
|
managerInstallCommand,
|
|
37
16
|
managerInstallSystemUnitCommand,
|
|
38
17
|
managerStartCommand,
|
|
@@ -41,16 +20,39 @@ import {
|
|
|
41
20
|
managerUninstallCommand,
|
|
42
21
|
managerUninstallSystemUnitCommand,
|
|
43
22
|
provision,
|
|
44
|
-
renderTemplate,
|
|
45
|
-
resolveChannels,
|
|
46
|
-
serializeManifestForSlackCli,
|
|
47
23
|
setActiveTeam,
|
|
48
24
|
setJsonMode,
|
|
49
25
|
startWatchdog,
|
|
50
26
|
success,
|
|
51
27
|
table,
|
|
52
28
|
warn
|
|
53
|
-
} from "../chunk-
|
|
29
|
+
} from "../chunk-27FZ5QEI.js";
|
|
30
|
+
import {
|
|
31
|
+
CHANNEL_REGISTRY,
|
|
32
|
+
DEPLOYMENT_TEMPLATES,
|
|
33
|
+
SLACK_SCOPE_CATEGORY_LABELS,
|
|
34
|
+
SLACK_SCOPE_PRESETS,
|
|
35
|
+
SlackApiError,
|
|
36
|
+
createSlackApp,
|
|
37
|
+
deriveConsoleUrl,
|
|
38
|
+
detectDrift,
|
|
39
|
+
extractFrontmatter,
|
|
40
|
+
generateCharterMd,
|
|
41
|
+
generateSlackAppManifest,
|
|
42
|
+
generateToolsMd,
|
|
43
|
+
getAllChannelIds,
|
|
44
|
+
getChannel,
|
|
45
|
+
getDefaultSlackScopes,
|
|
46
|
+
getFramework,
|
|
47
|
+
getScopesByCategory,
|
|
48
|
+
getTemplate,
|
|
49
|
+
lintAll,
|
|
50
|
+
lintCharter,
|
|
51
|
+
lintTools,
|
|
52
|
+
renderTemplate,
|
|
53
|
+
resolveChannels,
|
|
54
|
+
serializeManifestForSlackCli
|
|
55
|
+
} from "../chunk-BZV2KNHY.js";
|
|
54
56
|
|
|
55
57
|
// src/bin/agt.ts
|
|
56
58
|
import { join as join10 } from "path";
|
|
@@ -3734,7 +3736,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
3734
3736
|
import { existsSync as existsSync5, realpathSync } from "fs";
|
|
3735
3737
|
import chalk17 from "chalk";
|
|
3736
3738
|
import ora15 from "ora";
|
|
3737
|
-
var cliVersion = true ? "0.
|
|
3739
|
+
var cliVersion = true ? "0.22.0" : "dev";
|
|
3738
3740
|
async function fetchLatestVersion() {
|
|
3739
3741
|
const host2 = getHost();
|
|
3740
3742
|
if (!host2) return null;
|
|
@@ -4266,7 +4268,7 @@ function handleError(err) {
|
|
|
4266
4268
|
}
|
|
4267
4269
|
|
|
4268
4270
|
// src/bin/agt.ts
|
|
4269
|
-
var cliVersion2 = true ? "0.
|
|
4271
|
+
var cliVersion2 = true ? "0.22.0" : "dev";
|
|
4270
4272
|
var program = new Command();
|
|
4271
4273
|
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");
|
|
4272
4274
|
program.hook("preAction", (thisCommand) => {
|