@integrity-labs/agt-cli 0.27.89 → 0.27.91
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 +9 -5
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-TXIJLXOY.js → chunk-4MZWINDQ.js} +2 -2
- package/dist/{chunk-DDRAMRK3.js → chunk-ALXQEKLP.js} +17 -3
- package/dist/{chunk-DDRAMRK3.js.map → chunk-ALXQEKLP.js.map} +1 -1
- package/dist/{chunk-XA3C3ZSH.js → chunk-T2UTQH6W.js} +23 -5
- package/dist/chunk-T2UTQH6W.js.map +1 -0
- package/dist/{claude-pair-runtime-OURIEGW6.js → claude-pair-runtime-XCZUY66M.js} +2 -2
- package/dist/lib/manager-worker.js +77 -7
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +29 -14
- package/dist/{persistent-session-HYJOPURH.js → persistent-session-BMP74QGP.js} +3 -3
- package/dist/{responsiveness-probe-522ZBE5Q.js → responsiveness-probe-AFOPQEFX.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-XA3C3ZSH.js.map +0 -1
- /package/dist/{chunk-TXIJLXOY.js.map → chunk-4MZWINDQ.js.map} +0 -0
- /package/dist/{claude-pair-runtime-OURIEGW6.js.map → claude-pair-runtime-XCZUY66M.js.map} +0 -0
- /package/dist/{persistent-session-HYJOPURH.js.map → persistent-session-BMP74QGP.js.map} +0 -0
- /package/dist/{responsiveness-probe-522ZBE5Q.js.map → responsiveness-probe-AFOPQEFX.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-ALXQEKLP.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-T2UTQH6W.js";
|
|
58
58
|
|
|
59
59
|
// src/bin/agt.ts
|
|
60
60
|
import { join as join20 } from "path";
|
|
@@ -829,7 +829,11 @@ async function channelSlackSetupCommand(agentCodeName, options) {
|
|
|
829
829
|
const manifest = generateSlackAppManifest({
|
|
830
830
|
agent_name: agent2.display_name ?? agentCodeName,
|
|
831
831
|
description: `Augmented-managed Slack bot for agent ${agentCodeName}`,
|
|
832
|
-
scopes: selectedScopes
|
|
832
|
+
scopes: selectedScopes,
|
|
833
|
+
// ENG-6044: per-agent slash commands carry the code-name suffix.
|
|
834
|
+
// No-op until a slash_command_url is supplied, but keeps this
|
|
835
|
+
// manifest consistent with the API-generated ones.
|
|
836
|
+
agent_code_name: agent2.code_name ?? agentCodeName
|
|
833
837
|
});
|
|
834
838
|
const manifestObj = serializeManifestForSlackCli(manifest);
|
|
835
839
|
const manifestJson = JSON.stringify(manifestObj, null, 2);
|
|
@@ -4930,7 +4934,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4930
4934
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4931
4935
|
import chalk18 from "chalk";
|
|
4932
4936
|
import ora16 from "ora";
|
|
4933
|
-
var cliVersion = true ? "0.27.
|
|
4937
|
+
var cliVersion = true ? "0.27.91" : "dev";
|
|
4934
4938
|
async function fetchLatestVersion() {
|
|
4935
4939
|
const host2 = getHost();
|
|
4936
4940
|
if (!host2) return null;
|
|
@@ -5853,7 +5857,7 @@ function handleError(err) {
|
|
|
5853
5857
|
}
|
|
5854
5858
|
|
|
5855
5859
|
// src/bin/agt.ts
|
|
5856
|
-
var cliVersion2 = true ? "0.27.
|
|
5860
|
+
var cliVersion2 = true ? "0.27.91" : "dev";
|
|
5857
5861
|
var program = new Command();
|
|
5858
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");
|
|
5859
5863
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|