@integrity-labs/agt-cli 0.27.41 → 0.27.43

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/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.43",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {