@integrity-labs/agt-cli 0.28.172 → 0.28.173

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.
@@ -28,7 +28,7 @@ import {
28
28
  requireHost,
29
29
  safeWriteJsonAtomic,
30
30
  setConfigHash
31
- } from "../chunk-XGTHOGKA.js";
31
+ } from "../chunk-M4G5DGVD.js";
32
32
  import {
33
33
  getProjectDir as getProjectDir2,
34
34
  getReadyTasks,
@@ -6590,7 +6590,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
6590
6590
  var lastVersionCheckAt = 0;
6591
6591
  var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
6592
6592
  var lastResponsivenessProbeAt = 0;
6593
- var agtCliVersion = true ? "0.28.172" : "dev";
6593
+ var agtCliVersion = true ? "0.28.173" : "dev";
6594
6594
  function resolveBrewPath(execFileSync4) {
6595
6595
  try {
6596
6596
  const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
package/dist/mcp/index.js CHANGED
@@ -21919,6 +21919,9 @@ server.tool(
21919
21919
  title: external_exports.string().describe("Task title (max 200 chars)"),
21920
21920
  description: external_exports.string().optional().describe("Detailed description of what needs doing"),
21921
21921
  priority: external_exports.number().int().min(1).max(3).optional().describe("Priority: 1=high, 2=medium (default), 3=low"),
21922
+ status: external_exports.enum(["backlog", "todo", "in_progress"]).optional().describe(
21923
+ "Which column the card lands in on the recipient's board (default: todo). Use 'backlog' to stage it as not-yet-actionable work the teammate will pull later, 'todo' for ready-to-work, 'in_progress' if they should start immediately."
21924
+ ),
21922
21925
  deliverable: external_exports.string().optional().describe("Expected output/deliverable from the target")
21923
21926
  },
21924
21927
  async (params) => {
@@ -21934,6 +21937,9 @@ server.tool(
21934
21937
  title: params.title,
21935
21938
  description: params.description,
21936
21939
  priority: params.priority ?? 2,
21940
+ // ENG-6967: only send status when set, so the route applies its default
21941
+ // ('todo') and the same-team handoff path stays byte-for-byte unchanged.
21942
+ ...params.status !== void 0 ? { status: params.status } : {},
21937
21943
  deliverable: params.deliverable
21938
21944
  });
21939
21945
  const where = data.cross_team ? ` on team ${data.target_team ?? params.target_team}` : "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.172",
3
+ "version": "0.28.173",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {