@integrity-labs/agt-cli 0.27.2 → 0.27.3
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
CHANGED
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
success,
|
|
28
28
|
table,
|
|
29
29
|
warn
|
|
30
|
-
} from "../chunk-
|
|
30
|
+
} from "../chunk-AFRYJUBD.js";
|
|
31
31
|
import {
|
|
32
32
|
CHANNEL_REGISTRY,
|
|
33
33
|
DEPLOYMENT_TEMPLATES,
|
|
@@ -4394,7 +4394,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4394
4394
|
import { existsSync as existsSync8, realpathSync as realpathSync2 } from "fs";
|
|
4395
4395
|
import chalk18 from "chalk";
|
|
4396
4396
|
import ora16 from "ora";
|
|
4397
|
-
var cliVersion = true ? "0.27.
|
|
4397
|
+
var cliVersion = true ? "0.27.3" : "dev";
|
|
4398
4398
|
async function fetchLatestVersion() {
|
|
4399
4399
|
const host2 = getHost();
|
|
4400
4400
|
if (!host2) return null;
|
|
@@ -4926,7 +4926,7 @@ function handleError(err) {
|
|
|
4926
4926
|
}
|
|
4927
4927
|
|
|
4928
4928
|
// src/bin/agt.ts
|
|
4929
|
-
var cliVersion2 = true ? "0.27.
|
|
4929
|
+
var cliVersion2 = true ? "0.27.3" : "dev";
|
|
4930
4930
|
var program = new Command();
|
|
4931
4931
|
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");
|
|
4932
4932
|
program.hook("preAction", (thisCommand) => {
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
provisionOrientHook,
|
|
14
14
|
provisionStopHook,
|
|
15
15
|
requireHost
|
|
16
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-AFRYJUBD.js";
|
|
17
17
|
import {
|
|
18
18
|
getProjectDir as getProjectDir2,
|
|
19
19
|
getReadyTasks,
|
|
@@ -3161,7 +3161,7 @@ var cachedFrameworkVersion = null;
|
|
|
3161
3161
|
var lastVersionCheckAt = 0;
|
|
3162
3162
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
3163
3163
|
var lastResponsivenessProbeAt = 0;
|
|
3164
|
-
var agtCliVersion = true ? "0.27.
|
|
3164
|
+
var agtCliVersion = true ? "0.27.3" : "dev";
|
|
3165
3165
|
function resolveBrewPath(execFileSync4) {
|
|
3166
3166
|
try {
|
|
3167
3167
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
package/dist/mcp/index.js
CHANGED
|
@@ -21177,7 +21177,7 @@ server.tool(
|
|
|
21177
21177
|
}
|
|
21178
21178
|
const grouped = groupByStatus(data.items);
|
|
21179
21179
|
const lines = [];
|
|
21180
|
-
for (const status of ["in_progress", "
|
|
21180
|
+
for (const status of ["in_progress", "todo", "backlog", "done"]) {
|
|
21181
21181
|
const items = grouped[status];
|
|
21182
21182
|
if (!items?.length) continue;
|
|
21183
21183
|
lines.push(`
|
|
@@ -21200,7 +21200,7 @@ server.tool(
|
|
|
21200
21200
|
title: external_exports.string().describe("Item title (max 200 chars)"),
|
|
21201
21201
|
description: external_exports.string().optional().describe("Detailed description"),
|
|
21202
21202
|
priority: external_exports.number().int().min(1).max(3).optional().describe("Priority: 1=high, 2=medium (default), 3=low"),
|
|
21203
|
-
status: external_exports.enum(["backlog", "
|
|
21203
|
+
status: external_exports.enum(["backlog", "todo", "in_progress"]).optional().describe("Initial status (default: todo)"),
|
|
21204
21204
|
estimated_minutes: external_exports.number().int().optional().describe("Estimated time in minutes"),
|
|
21205
21205
|
deliverable: external_exports.string().optional().describe("Expected output/deliverable"),
|
|
21206
21206
|
source: external_exports.enum(["cron", "chat", "manual", "integration"]).optional().describe("Source of the item (default: manual)"),
|
|
@@ -21217,7 +21217,7 @@ server.tool(
|
|
|
21217
21217
|
title: params.title,
|
|
21218
21218
|
description: params.description,
|
|
21219
21219
|
priority: params.priority ?? 2,
|
|
21220
|
-
status: params.status ?? "
|
|
21220
|
+
status: params.status ?? "todo",
|
|
21221
21221
|
estimated_minutes: params.estimated_minutes,
|
|
21222
21222
|
deliverable: params.deliverable,
|
|
21223
21223
|
source: params.source ?? "manual",
|
|
@@ -21228,7 +21228,7 @@ server.tool(
|
|
|
21228
21228
|
]
|
|
21229
21229
|
});
|
|
21230
21230
|
const first = data.added_items?.[0];
|
|
21231
|
-
const text = !data.ok ? "Failed to add item." : first ? `Added "${first.title}" to board (status: ${params.status ?? "
|
|
21231
|
+
const text = !data.ok ? "Failed to add item." : first ? `Added "${first.title}" to board (status: ${params.status ?? "todo"}, id: ${first.id}).` : `Added "${params.title}" to board (status: ${params.status ?? "todo"}).`;
|
|
21232
21232
|
return {
|
|
21233
21233
|
content: [{ type: "text", text }]
|
|
21234
21234
|
};
|
|
@@ -21240,7 +21240,7 @@ server.tool(
|
|
|
21240
21240
|
{
|
|
21241
21241
|
id: external_exports.string().optional().describe("Item UUID (preferred)"),
|
|
21242
21242
|
title: external_exports.string().optional().describe("Item title for fuzzy match (if no id)"),
|
|
21243
|
-
status: external_exports.enum(["backlog", "
|
|
21243
|
+
status: external_exports.enum(["backlog", "todo", "in_progress", "done"]).describe("Target status"),
|
|
21244
21244
|
notes: external_exports.string().optional().describe("Progress notes")
|
|
21245
21245
|
},
|
|
21246
21246
|
async (params) => {
|
|
@@ -22236,7 +22236,7 @@ function groupByStatus(items) {
|
|
|
22236
22236
|
function statusLabel(status) {
|
|
22237
22237
|
const labels = {
|
|
22238
22238
|
backlog: "Backlog",
|
|
22239
|
-
|
|
22239
|
+
todo: "To Do",
|
|
22240
22240
|
in_progress: "In Progress",
|
|
22241
22241
|
done: "Done"
|
|
22242
22242
|
};
|
package/package.json
CHANGED
|
File without changes
|