@integrity-labs/agt-cli 0.28.939 → 0.28.940
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 +9 -6
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-TH3HADAH.js → chunk-4ZRXKEXO.js} +2 -2
- package/dist/chunk-4ZRXKEXO.js.map +1 -0
- package/dist/{chunk-3ZYWTOUW.js → chunk-5LIYT2YF.js} +2 -2
- package/dist/{chunk-XSP5C7GE.js → chunk-GJKEPMA5.js} +4 -4
- package/dist/{claude-pair-runtime-GMAY5E45.js → claude-pair-runtime-7PLWWVWK.js} +2 -2
- package/dist/lib/manager-worker.js +18 -15
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/index.js +26 -17
- package/dist/{persistent-session-JL7QVQJH.js → persistent-session-BBN5CBFI.js} +3 -3
- package/dist/{responsiveness-probe-H5HCW7HT.js → responsiveness-probe-5GAOO7P4.js} +3 -3
- package/dist/{session-auth-dead-PRK7BNLU.js → session-auth-dead-FRVOFPZL.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-TH3HADAH.js.map +0 -1
- /package/dist/{chunk-3ZYWTOUW.js.map → chunk-5LIYT2YF.js.map} +0 -0
- /package/dist/{chunk-XSP5C7GE.js.map → chunk-GJKEPMA5.js.map} +0 -0
- /package/dist/{claude-pair-runtime-GMAY5E45.js.map → claude-pair-runtime-7PLWWVWK.js.map} +0 -0
- /package/dist/{persistent-session-JL7QVQJH.js.map → persistent-session-BBN5CBFI.js.map} +0 -0
- /package/dist/{responsiveness-probe-H5HCW7HT.js.map → responsiveness-probe-5GAOO7P4.js.map} +0 -0
- /package/dist/{session-auth-dead-PRK7BNLU.js.map → session-auth-dead-FRVOFPZL.js.map} +0 -0
package/dist/mcp/index.js
CHANGED
|
@@ -46316,6 +46316,25 @@ function buildKanbanUpdateItem(id, fields) {
|
|
|
46316
46316
|
return item;
|
|
46317
46317
|
}
|
|
46318
46318
|
|
|
46319
|
+
// src/kanban-add.ts
|
|
46320
|
+
function buildKanbanAddItem(params) {
|
|
46321
|
+
return {
|
|
46322
|
+
title: params.title,
|
|
46323
|
+
description: params.description,
|
|
46324
|
+
priority: params.priority ?? 2,
|
|
46325
|
+
status: params.status ?? "todo",
|
|
46326
|
+
estimated_minutes: params.estimated_minutes,
|
|
46327
|
+
deliverable: params.deliverable,
|
|
46328
|
+
source: params.source ?? "manual",
|
|
46329
|
+
source_integration: params.source_integration,
|
|
46330
|
+
source_external_id: params.source_external_id,
|
|
46331
|
+
source_url: params.source_url,
|
|
46332
|
+
deliver_to: params.deliver_to,
|
|
46333
|
+
no_channel_origin: params.no_channel_origin,
|
|
46334
|
+
project_id: params.project_id
|
|
46335
|
+
};
|
|
46336
|
+
}
|
|
46337
|
+
|
|
46319
46338
|
// src/assign-human.ts
|
|
46320
46339
|
function describeAssignHumanResult(resp, email2) {
|
|
46321
46340
|
if (!resp.ok) {
|
|
@@ -46859,7 +46878,10 @@ server.tool(
|
|
|
46859
46878
|
source_external_id: external_exports.string().optional().describe('ID in the external system (e.g., "ENG-123")'),
|
|
46860
46879
|
source_url: external_exports.string().optional().describe("Deep link URL to the external source"),
|
|
46861
46880
|
deliver_to: external_exports.string().optional().describe(
|
|
46862
|
-
"Optional: the Slack user id of the person who asked for this (the requester), so you can notify/deliver to them when the task needs their input or is done.
|
|
46881
|
+
"Optional: the Slack user id of the person who asked for this (the requester), so you can notify/deliver to them when the task needs their input or is done. If omitted on a card that came FROM a conversation, it defaults to the person you are talking to. It never defaults for a card created with no_channel_origin: true."
|
|
46882
|
+
),
|
|
46883
|
+
no_channel_origin: external_exports.boolean().optional().describe(
|
|
46884
|
+
"Set true when this card did NOT come from a message someone sent you: work you started yourself, a scheduled/routine run, follow-up you decided to do, anything not answering a specific conversation. Without it, a card created shortly after any inbound message is attached to THAT conversation - its progress card posts into that person's thread and its result is addressed to them, even if the work has nothing to do with them. Leave it unset for a card that IS the answer to the message you are handling."
|
|
46863
46885
|
),
|
|
46864
46886
|
project_id: external_exports.string().uuid().optional().describe(
|
|
46865
46887
|
"Optional project to file this task under (id from projects_list). Groups the task with related tasks/artefacts across agents. Reuse an existing project where one fits; use projects_create only after checking projects_list and confirming with the human."
|
|
@@ -46869,22 +46891,9 @@ server.tool(
|
|
|
46869
46891
|
const data = await apiPost("/host/kanban", {
|
|
46870
46892
|
agent_id: AGT_AGENT_ID,
|
|
46871
46893
|
run_id: AGT_RUN_ID,
|
|
46872
|
-
|
|
46873
|
-
|
|
46874
|
-
|
|
46875
|
-
description: params.description,
|
|
46876
|
-
priority: params.priority ?? 2,
|
|
46877
|
-
status: params.status ?? "todo",
|
|
46878
|
-
estimated_minutes: params.estimated_minutes,
|
|
46879
|
-
deliverable: params.deliverable,
|
|
46880
|
-
source: params.source ?? "manual",
|
|
46881
|
-
source_integration: params.source_integration,
|
|
46882
|
-
source_external_id: params.source_external_id,
|
|
46883
|
-
source_url: params.source_url,
|
|
46884
|
-
deliver_to: params.deliver_to,
|
|
46885
|
-
project_id: params.project_id
|
|
46886
|
-
}
|
|
46887
|
-
]
|
|
46894
|
+
// ENG-10583: built in kanban-add.ts so a test can pin that
|
|
46895
|
+
// `no_channel_origin` actually reaches the server.
|
|
46896
|
+
add: [buildKanbanAddItem(params)]
|
|
46888
46897
|
});
|
|
46889
46898
|
const text = kanbanAddResultText(data, params.title, params.status ?? "todo");
|
|
46890
46899
|
return {
|
|
@@ -62,8 +62,8 @@ import {
|
|
|
62
62
|
writeDirectChatSessionState,
|
|
63
63
|
writeEgressAllowlist,
|
|
64
64
|
writePersistentClaudeWrapper
|
|
65
|
-
} from "./chunk-
|
|
66
|
-
import "./chunk-
|
|
65
|
+
} from "./chunk-5LIYT2YF.js";
|
|
66
|
+
import "./chunk-4ZRXKEXO.js";
|
|
67
67
|
import "./chunk-XWVM4KPK.js";
|
|
68
68
|
export {
|
|
69
69
|
CLAUDE_HOST_WIDE,
|
|
@@ -130,4 +130,4 @@ export {
|
|
|
130
130
|
writeEgressAllowlist,
|
|
131
131
|
writePersistentClaudeWrapper
|
|
132
132
|
};
|
|
133
|
-
//# sourceMappingURL=persistent-session-
|
|
133
|
+
//# sourceMappingURL=persistent-session-BBN5CBFI.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-5LIYT2YF.js";
|
|
4
|
+
import "./chunk-4ZRXKEXO.js";
|
|
5
5
|
import "./chunk-XWVM4KPK.js";
|
|
6
6
|
|
|
7
7
|
// src/lib/responsiveness-probe.ts
|
|
@@ -799,4 +799,4 @@ export {
|
|
|
799
799
|
readAndResetSlackReplyBindingClassifications,
|
|
800
800
|
readAndResetSlackReplyTargetClassifications
|
|
801
801
|
};
|
|
802
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
802
|
+
//# sourceMappingURL=responsiveness-probe-5GAOO7P4.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
sessionTranscriptDir
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-4ZRXKEXO.js";
|
|
4
4
|
|
|
5
5
|
// src/lib/session-auth-dead.ts
|
|
6
6
|
import { closeSync, openSync, readSync, readdirSync, statSync } from "fs";
|
|
@@ -203,4 +203,4 @@ export {
|
|
|
203
203
|
decideSessionAuthState,
|
|
204
204
|
probeSessionAuth
|
|
205
205
|
};
|
|
206
|
-
//# sourceMappingURL=session-auth-dead-
|
|
206
|
+
//# sourceMappingURL=session-auth-dead-FRVOFPZL.js.map
|