@integrity-labs/agt-cli 0.28.602 → 0.28.604
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.
|
@@ -53,7 +53,7 @@ import {
|
|
|
53
53
|
safeWriteJsonAtomic,
|
|
54
54
|
setConfigHash,
|
|
55
55
|
tripClass
|
|
56
|
-
} from "../chunk-
|
|
56
|
+
} from "../chunk-TLVS32O4.js";
|
|
57
57
|
import {
|
|
58
58
|
getProjectDir as getProjectDir2,
|
|
59
59
|
getReadyTasks,
|
|
@@ -11880,7 +11880,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
|
|
|
11880
11880
|
var lastVersionCheckAt = 0;
|
|
11881
11881
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
11882
11882
|
var lastResponsivenessProbeAt = 0;
|
|
11883
|
-
var agtCliVersion = true ? "0.28.
|
|
11883
|
+
var agtCliVersion = true ? "0.28.604" : "dev";
|
|
11884
11884
|
function resolveBrewPath(execFileSync3) {
|
|
11885
11885
|
try {
|
|
11886
11886
|
const out = execFileSync3("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
package/dist/mcp/index.js
CHANGED
|
@@ -22021,6 +22021,14 @@ function formatKanbanLogResult(label, data, match = {}) {
|
|
|
22021
22021
|
};
|
|
22022
22022
|
}
|
|
22023
22023
|
|
|
22024
|
+
// src/kanban-update.ts
|
|
22025
|
+
function buildKanbanUpdateItem(id, fields) {
|
|
22026
|
+
const item = { id };
|
|
22027
|
+
if (fields.notes !== void 0) item.notes = fields.notes;
|
|
22028
|
+
if (fields.result !== void 0) item.result = fields.result;
|
|
22029
|
+
return item;
|
|
22030
|
+
}
|
|
22031
|
+
|
|
22024
22032
|
// src/assign-human.ts
|
|
22025
22033
|
function describeAssignHumanResult(resp, email2) {
|
|
22026
22034
|
if (!resp.ok) {
|
|
@@ -22600,12 +22608,7 @@ server.tool(
|
|
|
22600
22608
|
const data = await apiPost("/host/kanban", {
|
|
22601
22609
|
agent_id: AGT_AGENT_ID,
|
|
22602
22610
|
update: [
|
|
22603
|
-
{
|
|
22604
|
-
id: match.id,
|
|
22605
|
-
status: match.status,
|
|
22606
|
-
notes: params.notes,
|
|
22607
|
-
result: params.result
|
|
22608
|
-
}
|
|
22611
|
+
buildKanbanUpdateItem(match.id, { notes: params.notes, result: params.result })
|
|
22609
22612
|
]
|
|
22610
22613
|
});
|
|
22611
22614
|
const outcome = describeKanbanWriteOutcome(
|