@integrity-labs/agt-cli 0.28.148 → 0.28.149

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
@@ -21812,7 +21812,16 @@ server.tool(
21812
21812
  id: external_exports.string().optional().describe("Item UUID (preferred)"),
21813
21813
  title: external_exports.string().optional().describe("Item title for fuzzy match (if no id)"),
21814
21814
  result: external_exports.string().optional().describe("What was produced/delivered"),
21815
- notes: external_exports.string().optional().describe("Completion notes")
21815
+ notes: external_exports.string().optional().describe("Completion notes"),
21816
+ // ENG-6094 / ENG-6839: conditional scheduled-task delivery assertion.
21817
+ // Ignored for normal cards; only meaningful on a scheduled routine whose
21818
+ // delivery_policy is 'conditional' ("only when it matters").
21819
+ suppress_delivery: external_exports.boolean().optional().describe(
21820
+ "Conditional scheduled tasks only. true = record the result on the card but do NOT message the user (the task's do-not-notify condition was not met this run). false = ASSERT delivery because a concrete trigger fired (pair with delivery_reason). Leave unset for normal tasks."
21821
+ ),
21822
+ delivery_reason: external_exports.string().optional().describe(
21823
+ "Conditional scheduled tasks only. When asserting delivery (suppress_delivery: false), name the concrete trigger that fired (e.g. 'urgent email from the CEO', 'CI failing on main'). A vacuous reason ('status check', 'all clear', 'no change') is rejected and the result stays silent."
21824
+ )
21816
21825
  },
21817
21826
  async (params) => {
21818
21827
  if (!params.id && !params.title) {
@@ -21829,16 +21838,19 @@ server.tool(
21829
21838
  title: params.title,
21830
21839
  status: "done",
21831
21840
  result: params.result,
21832
- notes: params.notes
21841
+ notes: params.notes,
21842
+ suppress_delivery: params.suppress_delivery,
21843
+ delivery_reason: params.delivery_reason
21833
21844
  }
21834
21845
  ]
21835
21846
  });
21836
21847
  const label = params.id ?? params.title;
21848
+ const deliveryNote = params.suppress_delivery === true ? " Delivery suppressed (recorded on the card only)." : params.suppress_delivery === false ? " Delivery asserted." : "";
21837
21849
  return {
21838
21850
  content: [
21839
21851
  {
21840
21852
  type: "text",
21841
- text: data.updated > 0 ? `Marked "${label}" as done.${params.result ? ` Result: ${params.result}` : ""}` : `Item "${label}" not found.`
21853
+ text: data.updated > 0 ? `Marked "${label}" as done.${params.result ? ` Result: ${params.result}` : ""}${deliveryNote}` : `Item "${label}" not found.`
21842
21854
  }
21843
21855
  ]
21844
21856
  };
@@ -34,8 +34,8 @@ import {
34
34
  writeDirectChatSessionState,
35
35
  writeEgressAllowlist,
36
36
  writePersistentClaudeWrapper
37
- } from "./chunk-6BJVRM6Y.js";
38
- import "./chunk-XZGF45BJ.js";
37
+ } from "./chunk-SVF454L3.js";
38
+ import "./chunk-5AIF4FOP.js";
39
39
  import "./chunk-XWVM4KPK.js";
40
40
  export {
41
41
  EGRESS_BASELINE_DOMAINS,
@@ -74,4 +74,4 @@ export {
74
74
  writeEgressAllowlist,
75
75
  writePersistentClaudeWrapper
76
76
  };
77
- //# sourceMappingURL=persistent-session-IRXYCR5Q.js.map
77
+ //# sourceMappingURL=persistent-session-IMMJEVRD.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-6BJVRM6Y.js";
4
- import "./chunk-XZGF45BJ.js";
3
+ } from "./chunk-SVF454L3.js";
4
+ import "./chunk-5AIF4FOP.js";
5
5
  import "./chunk-XWVM4KPK.js";
6
6
 
7
7
  // src/lib/responsiveness-probe.ts
@@ -304,4 +304,4 @@ export {
304
304
  readAndResetChannelDeflections,
305
305
  readAndResetChannelLaneClassifications
306
306
  };
307
- //# sourceMappingURL=responsiveness-probe-VVDZTLJS.js.map
307
+ //# sourceMappingURL=responsiveness-probe-Z2GD24QE.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.148",
3
+ "version": "0.28.149",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {