@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/bin/agt.js +4 -4
- package/dist/{chunk-GUCYHTCJ.js → chunk-BNQPLUUB.js} +10 -3
- package/dist/chunk-BNQPLUUB.js.map +1 -0
- package/dist/{chunk-QOEYIFPD.js → chunk-PTJHDSJU.js} +19 -3
- package/dist/{chunk-QOEYIFPD.js.map → chunk-PTJHDSJU.js.map} +1 -1
- package/dist/{claude-pair-runtime-MGU5UP3T.js → claude-pair-runtime-DVAUH47F.js} +2 -2
- package/dist/lib/manager-worker.js +47 -18
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/index.js +10 -2
- package/dist/{persistent-session-C6IIZKQH.js → persistent-session-WVLFEQPW.js} +2 -2
- package/dist/{responsiveness-probe-RAHMPI4W.js → responsiveness-probe-VCOYMMIT.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-GUCYHTCJ.js.map +0 -1
- /package/dist/{claude-pair-runtime-MGU5UP3T.js.map → claude-pair-runtime-DVAUH47F.js.map} +0 -0
- /package/dist/{persistent-session-C6IIZKQH.js.map → persistent-session-WVLFEQPW.js.map} +0 -0
- /package/dist/{responsiveness-probe-RAHMPI4W.js.map → responsiveness-probe-VCOYMMIT.js.map} +0 -0
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
|
-
|
|
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-
|
|
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-
|
|
80
|
+
//# sourceMappingURL=persistent-session-WVLFEQPW.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
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-
|
|
421
|
+
//# sourceMappingURL=responsiveness-probe-VCOYMMIT.js.map
|