@integrity-labs/agt-cli 0.28.290 → 0.28.292

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
@@ -21800,7 +21800,10 @@ server.tool(
21800
21800
  waiting_repo: external_exports.string().optional().describe(
21801
21801
  'Only with a pr-* waiting_kind: the "owner/repo" the pull request lives in (e.g. "Integrity-Labs/augmented").'
21802
21802
  ),
21803
- waiting_pr: external_exports.number().int().positive().optional().describe("Only with a pr-* waiting_kind: the pull request number (e.g. 3120).")
21803
+ waiting_pr: external_exports.number().int().positive().optional().describe("Only with a pr-* waiting_kind: the pull request number (e.g. 3120)."),
21804
+ waiting_choices: external_exports.array(external_exports.string()).optional().describe(
21805
+ 'Optional, best with waiting_kind="human": 2-5 short answer options to offer the person as one-click buttons (e.g. ["Ship it", "Hold", "Needs changes"]). Keep them short. They can still add a free-text comment alongside a choice. Omit for an open-ended human wait (they just get a comment box).'
21806
+ )
21804
21807
  } : {}
21805
21808
  },
21806
21809
  async (params) => {
@@ -21834,7 +21837,12 @@ server.tool(
21834
21837
  isError: true
21835
21838
  };
21836
21839
  }
21837
- const waitingContext = isPrKind ? { repo: p.waiting_repo, pr_number: p.waiting_pr } : void 0;
21840
+ let waitingContext;
21841
+ if (isPrKind) {
21842
+ waitingContext = { repo: p.waiting_repo, pr_number: p.waiting_pr };
21843
+ } else if (p.waiting_choices && p.waiting_choices.length > 0) {
21844
+ waitingContext = { choices: p.waiting_choices };
21845
+ }
21838
21846
  const data = await apiPost("/host/kanban", {
21839
21847
  agent_id: AGT_AGENT_ID,
21840
21848
  update: [
@@ -36,7 +36,7 @@ import {
36
36
  writeDirectChatSessionState,
37
37
  writeEgressAllowlist,
38
38
  writePersistentClaudeWrapper
39
- } from "./chunk-GUCYHTCJ.js";
39
+ } from "./chunk-BNQPLUUB.js";
40
40
  import "./chunk-XWVM4KPK.js";
41
41
  export {
42
42
  EGRESS_BASELINE_DOMAINS,
@@ -77,4 +77,4 @@ export {
77
77
  writeEgressAllowlist,
78
78
  writePersistentClaudeWrapper
79
79
  };
80
- //# sourceMappingURL=persistent-session-C6IIZKQH.js.map
80
+ //# sourceMappingURL=persistent-session-WVLFEQPW.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-GUCYHTCJ.js";
3
+ } from "./chunk-BNQPLUUB.js";
4
4
  import "./chunk-XWVM4KPK.js";
5
5
 
6
6
  // src/lib/responsiveness-probe.ts
@@ -418,4 +418,4 @@ export {
418
418
  readAndResetSlackReplyBindingClassifications,
419
419
  readAndResetSlackReplyTargetClassifications
420
420
  };
421
- //# sourceMappingURL=responsiveness-probe-RAHMPI4W.js.map
421
+ //# sourceMappingURL=responsiveness-probe-VCOYMMIT.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.290",
3
+ "version": "0.28.292",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {