@integrity-labs/agt-cli 0.15.1 → 0.15.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-7QE6SJQB.js → chunk-IQI7XAQ6.js} +1 -11
- package/dist/chunk-IQI7XAQ6.js.map +1 -0
- package/dist/lib/manager-worker.js +2 -57
- package/dist/lib/manager-worker.js.map +1 -1
- package/mcp/index.js +55 -14
- package/mcp/slack-channel.js +0 -0
- package/package.json +1 -1
- package/dist/chunk-7QE6SJQB.js.map +0 -1
package/dist/bin/agt.js
CHANGED
|
@@ -45,7 +45,7 @@ import {
|
|
|
45
45
|
success,
|
|
46
46
|
table,
|
|
47
47
|
warn
|
|
48
|
-
} from "../chunk-
|
|
48
|
+
} from "../chunk-IQI7XAQ6.js";
|
|
49
49
|
|
|
50
50
|
// src/bin/agt.ts
|
|
51
51
|
import { join as join9 } from "path";
|
|
@@ -3402,7 +3402,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
3402
3402
|
import { existsSync as existsSync4, realpathSync } from "fs";
|
|
3403
3403
|
import chalk17 from "chalk";
|
|
3404
3404
|
import ora15 from "ora";
|
|
3405
|
-
var cliVersion = true ? "0.15.
|
|
3405
|
+
var cliVersion = true ? "0.15.2" : "dev";
|
|
3406
3406
|
async function fetchLatestVersion() {
|
|
3407
3407
|
const host2 = getHost();
|
|
3408
3408
|
if (!host2) return null;
|
|
@@ -3851,7 +3851,7 @@ function handleError(err) {
|
|
|
3851
3851
|
}
|
|
3852
3852
|
|
|
3853
3853
|
// src/bin/agt.ts
|
|
3854
|
-
var cliVersion2 = true ? "0.15.
|
|
3854
|
+
var cliVersion2 = true ? "0.15.2" : "dev";
|
|
3855
3855
|
var program = new Command();
|
|
3856
3856
|
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");
|
|
3857
3857
|
program.hook("preAction", (thisCommand) => {
|
|
@@ -5076,14 +5076,6 @@ function looksLikeNotesOnly(remainder) {
|
|
|
5076
5076
|
return lines.every((line) => NON_DELIVERABLE_REMAINDER_PATTERNS.some((pattern) => pattern.test(line)));
|
|
5077
5077
|
}
|
|
5078
5078
|
|
|
5079
|
-
// ../../packages/core/dist/types/kanban.js
|
|
5080
|
-
function formatActorId(kind, id) {
|
|
5081
|
-
return `${kind}:${id}`;
|
|
5082
|
-
}
|
|
5083
|
-
function isSelfCompletion(event) {
|
|
5084
|
-
return event.last_actor_id === formatActorId("agent", event.agent_id);
|
|
5085
|
-
}
|
|
5086
|
-
|
|
5087
5079
|
// ../../packages/core/dist/schemas/validators.js
|
|
5088
5080
|
import Ajv2020 from "ajv/dist/2020.js";
|
|
5089
5081
|
import addFormats from "ajv-formats";
|
|
@@ -7064,8 +7056,6 @@ export {
|
|
|
7064
7056
|
warn,
|
|
7065
7057
|
info,
|
|
7066
7058
|
table,
|
|
7067
|
-
formatActorId,
|
|
7068
|
-
isSelfCompletion,
|
|
7069
7059
|
resolveChannels,
|
|
7070
7060
|
SLACK_SCOPE_CATEGORY_LABELS,
|
|
7071
7061
|
getDefaultSlackScopes,
|
|
@@ -7093,4 +7083,4 @@ export {
|
|
|
7093
7083
|
managerStopCommand,
|
|
7094
7084
|
managerStatusCommand
|
|
7095
7085
|
};
|
|
7096
|
-
//# sourceMappingURL=chunk-
|
|
7086
|
+
//# sourceMappingURL=chunk-IQI7XAQ6.js.map
|