@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/bin/agt.js +4 -4
- package/dist/{chunk-XZGF45BJ.js → chunk-5AIF4FOP.js} +2 -1
- package/dist/{chunk-LCEI5TTS.js → chunk-A4S52T2C.js} +3 -3
- package/dist/{chunk-6BJVRM6Y.js → chunk-SVF454L3.js} +2 -2
- package/dist/{claude-pair-runtime-AXBFPLBA.js → claude-pair-runtime-OU4ROYH4.js} +2 -2
- package/dist/lib/manager-worker.js +13 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/index.js +15 -3
- package/dist/{persistent-session-IRXYCR5Q.js → persistent-session-IMMJEVRD.js} +3 -3
- package/dist/{responsiveness-probe-VVDZTLJS.js → responsiveness-probe-Z2GD24QE.js} +3 -3
- package/package.json +1 -1
- /package/dist/{chunk-XZGF45BJ.js.map → chunk-5AIF4FOP.js.map} +0 -0
- /package/dist/{chunk-LCEI5TTS.js.map → chunk-A4S52T2C.js.map} +0 -0
- /package/dist/{chunk-6BJVRM6Y.js.map → chunk-SVF454L3.js.map} +0 -0
- /package/dist/{claude-pair-runtime-AXBFPLBA.js.map → claude-pair-runtime-OU4ROYH4.js.map} +0 -0
- /package/dist/{persistent-session-IRXYCR5Q.js.map → persistent-session-IMMJEVRD.js.map} +0 -0
- /package/dist/{responsiveness-probe-VVDZTLJS.js.map → responsiveness-probe-Z2GD24QE.js.map} +0 -0
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-
|
|
38
|
-
import "./chunk-
|
|
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-
|
|
77
|
+
//# sourceMappingURL=persistent-session-IMMJEVRD.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
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-
|
|
307
|
+
//# sourceMappingURL=responsiveness-probe-Z2GD24QE.js.map
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|