@integrity-labs/agt-cli 0.9.0 → 0.9.2
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-55TMBRXT.js → chunk-AMB6FJLZ.js} +12 -1
- package/dist/chunk-AMB6FJLZ.js.map +1 -0
- package/dist/chunk-JOAT4JQN.js +460 -0
- package/dist/chunk-JOAT4JQN.js.map +1 -0
- package/dist/lib/manager-worker.js +176 -511
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/persistent-session-M6GXAEQF.js +25 -0
- package/dist/persistent-session-M6GXAEQF.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-55TMBRXT.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-AMB6FJLZ.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.2" : "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.2" : "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) => {
|
|
@@ -1829,7 +1829,18 @@ ${desc}
|
|
|
1829
1829
|
- Environment: ${frontmatter.environment}
|
|
1830
1830
|
- Risk Tier: ${frontmatter.risk_tier}
|
|
1831
1831
|
- Channels: ${channelList}
|
|
1832
|
+
${resolvedChannels?.includes("slack") ? `
|
|
1833
|
+
## Slack
|
|
1832
1834
|
|
|
1835
|
+
You have a Slack MCP server connected. When Slack messages arrive via the channel
|
|
1836
|
+
protocol, respond directly in the conversation. You can also proactively use:
|
|
1837
|
+
|
|
1838
|
+
- **slack.reply** \u2014 reply to a message in a channel/thread
|
|
1839
|
+
- **slack.react** \u2014 add an emoji reaction to a message
|
|
1840
|
+
|
|
1841
|
+
When you receive a Slack message, always react with \u{1F440} first to acknowledge,
|
|
1842
|
+
then respond with your answer.
|
|
1843
|
+
` : ""}
|
|
1833
1844
|
## Governance
|
|
1834
1845
|
|
|
1835
1846
|
This agent is governed by Augmented (ARIS). Policy, budget, and channel rules
|
|
@@ -4705,4 +4716,4 @@ export {
|
|
|
4705
4716
|
detectDrift,
|
|
4706
4717
|
provision
|
|
4707
4718
|
};
|
|
4708
|
-
//# sourceMappingURL=chunk-
|
|
4719
|
+
//# sourceMappingURL=chunk-AMB6FJLZ.js.map
|