@integrity-labs/agt-cli 0.27.41 → 0.27.42

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.
@@ -15,7 +15,7 @@ import {
15
15
  provisionOrientHook,
16
16
  provisionStopHook,
17
17
  requireHost
18
- } from "../chunk-QFOMTUK7.js";
18
+ } from "../chunk-ZPBDGI7P.js";
19
19
  import {
20
20
  getProjectDir as getProjectDir2,
21
21
  getReadyTasks,
@@ -3344,7 +3344,7 @@ var cachedFrameworkVersion = null;
3344
3344
  var lastVersionCheckAt = 0;
3345
3345
  var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
3346
3346
  var lastResponsivenessProbeAt = 0;
3347
- var agtCliVersion = true ? "0.27.41" : "dev";
3347
+ var agtCliVersion = true ? "0.27.42" : "dev";
3348
3348
  function resolveBrewPath(execFileSync4) {
3349
3349
  try {
3350
3350
  const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
package/dist/mcp/index.js CHANGED
@@ -21186,7 +21186,7 @@ server.tool(
21186
21186
  }
21187
21187
  const grouped = groupByStatus(data.items);
21188
21188
  const lines = [];
21189
- for (const status of ["in_progress", "todo", "backlog", "done"]) {
21189
+ for (const status of ["in_progress", "todo", "backlog", "done", "failed"]) {
21190
21190
  const items = grouped[status];
21191
21191
  if (!items?.length) continue;
21192
21192
  lines.push(`
@@ -21245,11 +21245,11 @@ server.tool(
21245
21245
  );
21246
21246
  server.tool(
21247
21247
  "kanban_move",
21248
- "Move a kanban item to a different status column.",
21248
+ 'Move a kanban item to a different status column. Use status="failed" to mark a task that was attempted but could not complete (matches the hosted kanban_move enum).',
21249
21249
  {
21250
21250
  id: external_exports.string().optional().describe("Item UUID (preferred)"),
21251
21251
  title: external_exports.string().optional().describe("Item title for fuzzy match (if no id)"),
21252
- status: external_exports.enum(["backlog", "todo", "in_progress", "done"]).describe("Target status"),
21252
+ status: external_exports.enum(["backlog", "todo", "in_progress", "done", "failed"]).describe('Target status. "failed" closes the row as a failed attempt; there is no "cancelled" status \u2014 close no-longer-needed work via kanban_done with an explanatory result.'),
21253
21253
  notes: external_exports.string().optional().describe("Progress notes")
21254
21254
  },
21255
21255
  async (params) => {
@@ -22252,7 +22252,8 @@ function statusLabel(status) {
22252
22252
  backlog: "Backlog",
22253
22253
  todo: "To Do",
22254
22254
  in_progress: "In Progress",
22255
- done: "Done"
22255
+ done: "Done",
22256
+ failed: "Failed"
22256
22257
  };
22257
22258
  return labels[status] ?? status;
22258
22259
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.27.41",
3
+ "version": "0.27.42",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {