@integrity-labs/agt-cli 0.27.87 → 0.27.89
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-2E42P2IO.js → chunk-DDRAMRK3.js} +2 -2
- package/dist/{chunk-7EKFVCGY.js → chunk-TXIJLXOY.js} +75 -8
- package/dist/chunk-TXIJLXOY.js.map +1 -0
- package/dist/{chunk-5IWPCN3V.js → chunk-XA3C3ZSH.js} +25 -3
- package/dist/chunk-XA3C3ZSH.js.map +1 -0
- package/dist/{claude-pair-runtime-WTGNQXCL.js → claude-pair-runtime-OURIEGW6.js} +2 -2
- package/dist/lib/manager-worker.js +28 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/index.js +7 -4
- package/dist/{persistent-session-IADHTYFL.js → persistent-session-HYJOPURH.js} +5 -3
- package/dist/{responsiveness-probe-3IY27CNE.js → responsiveness-probe-522ZBE5Q.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-5IWPCN3V.js.map +0 -1
- package/dist/chunk-7EKFVCGY.js.map +0 -1
- /package/dist/{chunk-2E42P2IO.js.map → chunk-DDRAMRK3.js.map} +0 -0
- /package/dist/{claude-pair-runtime-WTGNQXCL.js.map → claude-pair-runtime-OURIEGW6.js.map} +0 -0
- /package/dist/{persistent-session-IADHTYFL.js.map → persistent-session-HYJOPURH.js.map} +0 -0
- /package/dist/{responsiveness-probe-3IY27CNE.js.map → responsiveness-probe-522ZBE5Q.js.map} +0 -0
package/dist/mcp/index.js
CHANGED
|
@@ -21061,8 +21061,11 @@ var DeliveryTargetSchema = external_exports.union([
|
|
|
21061
21061
|
channel_id: external_exports.string().optional(),
|
|
21062
21062
|
chat_id: external_exports.string().optional(),
|
|
21063
21063
|
conversation_id: external_exports.string().optional(),
|
|
21064
|
-
service_url: external_exports.string().optional()
|
|
21065
|
-
|
|
21064
|
+
service_url: external_exports.string().optional(),
|
|
21065
|
+
thread_ts: external_exports.string().nullable().optional().describe(
|
|
21066
|
+
`Slack only (ENG-6038). The originating thread's thread_ts when the user asked for the result back in the thread the request came from ("report back here" inside a thread) \u2014 take it from the inbound message's <channel> envelope. Pass null to mean 'top-level on purpose' (e.g. the user said "post it to the channel" \u2014 null also suppresses server-side thread auto-injection on one-time tasks). Omit only when the request didn't come from a thread.`
|
|
21067
|
+
)
|
|
21068
|
+
}).describe("Post to a Slack channel, Telegram chat, or Microsoft Teams conversation. Provide channel_id for Slack, chat_id for Telegram, or conversation_id + service_url for Teams. For Slack, thread_ts optionally threads the delivery under the originating conversation."),
|
|
21066
21069
|
external_exports.object({
|
|
21067
21070
|
kind: external_exports.literal("dm"),
|
|
21068
21071
|
person_id: external_exports.string().uuid(),
|
|
@@ -21737,7 +21740,7 @@ server.tool(
|
|
|
21737
21740
|
prompt: external_exports.string().describe("What to do when the task fires"),
|
|
21738
21741
|
delivery_channel: external_exports.string().optional().describe('Channel platform to deliver results to (e.g. "slack", "telegram"). Default: "slack" if available.'),
|
|
21739
21742
|
delivery_to: DeliveryTargetSchema.optional().describe(
|
|
21740
|
-
"Where the task output should be delivered. Structured object: either { kind: 'channel', provider, channel_id? | chat_id? } to post to a Slack channel / Telegram chat, or { kind: 'dm', person_id, follow_reports_to, medium } to DM a person. For 'reply to the channel this request came from', pass the incoming message's channel_id. For 'DM my manager', use follow_reports_to=true with the agent's current reports_to person_id. Legacy string forms ('channel:<id>', 'chat:<id>', 'slack_user:<id>') are rejected server-side \u2014 use the structured form."
|
|
21743
|
+
"Where the task output should be delivered. Structured object: either { kind: 'channel', provider, channel_id? | chat_id? } to post to a Slack channel / Telegram chat, or { kind: 'dm', person_id, follow_reports_to, medium } to DM a person. For 'reply to the channel this request came from', pass the incoming message's channel_id. For 'report back HERE' said inside a Slack thread, also pass thread_ts from the inbound envelope so the result lands in that thread; if the user wants the channel top-level despite asking from a thread, pass thread_ts: null. For 'DM my manager', use follow_reports_to=true with the agent's current reports_to person_id. Legacy string forms ('channel:<id>', 'chat:<id>', 'slack_user:<id>') are rejected server-side \u2014 use the structured form."
|
|
21741
21744
|
),
|
|
21742
21745
|
delivery_mode: external_exports.enum(["announce", "none"]).optional().describe('Delivery mode: "announce" sends output to delivery_channel, "none" suppresses. Default: "announce".')
|
|
21743
21746
|
},
|
|
@@ -21810,7 +21813,7 @@ server.tool(
|
|
|
21810
21813
|
'Where results are delivered (e.g. "slack", "telegram", "email")'
|
|
21811
21814
|
),
|
|
21812
21815
|
delivery_to: DeliveryTargetSchema.optional().describe(
|
|
21813
|
-
"Structured delivery target (see schedule_create description for shape). Pass null-equivalent by omitting the field; pass a new structured target to change routing."
|
|
21816
|
+
"Structured delivery target (see schedule_create description for shape). Pass null-equivalent by omitting the field; pass a new structured target to change routing. delivery_to is replaced wholesale: to STOP a task threading into a Slack conversation ('post it to the channel instead'), pass the channel target again WITHOUT thread_ts; to start threading, include thread_ts."
|
|
21814
21817
|
),
|
|
21815
21818
|
enabled: external_exports.boolean().optional().describe(
|
|
21816
21819
|
"Set to false to pause the schedule without deleting it"
|
|
@@ -14,6 +14,7 @@ import {
|
|
|
14
14
|
readPaneLogTail,
|
|
15
15
|
resetRestartCount,
|
|
16
16
|
resolveClaudeBinary,
|
|
17
|
+
resolveSessionSpawnDecision,
|
|
17
18
|
sendToAgent,
|
|
18
19
|
startPersistentSession,
|
|
19
20
|
stopAllSessions,
|
|
@@ -21,8 +22,8 @@ import {
|
|
|
21
22
|
stopPersistentSession,
|
|
22
23
|
takeZombieDetection,
|
|
23
24
|
writePersistentClaudeWrapper
|
|
24
|
-
} from "./chunk-
|
|
25
|
-
import "./chunk-
|
|
25
|
+
} from "./chunk-TXIJLXOY.js";
|
|
26
|
+
import "./chunk-XA3C3ZSH.js";
|
|
26
27
|
import "./chunk-XWVM4KPK.js";
|
|
27
28
|
export {
|
|
28
29
|
SEND_KEYS_ENTER_DELAY_MS,
|
|
@@ -40,6 +41,7 @@ export {
|
|
|
40
41
|
readPaneLogTail,
|
|
41
42
|
resetRestartCount,
|
|
42
43
|
resolveClaudeBinary,
|
|
44
|
+
resolveSessionSpawnDecision,
|
|
43
45
|
sendToAgent,
|
|
44
46
|
startPersistentSession,
|
|
45
47
|
stopAllSessions,
|
|
@@ -48,4 +50,4 @@ export {
|
|
|
48
50
|
takeZombieDetection,
|
|
49
51
|
writePersistentClaudeWrapper
|
|
50
52
|
};
|
|
51
|
-
//# sourceMappingURL=persistent-session-
|
|
53
|
+
//# sourceMappingURL=persistent-session-HYJOPURH.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-TXIJLXOY.js";
|
|
4
|
+
import "./chunk-XA3C3ZSH.js";
|
|
5
5
|
import "./chunk-XWVM4KPK.js";
|
|
6
6
|
|
|
7
7
|
// src/lib/responsiveness-probe.ts
|
|
@@ -70,4 +70,4 @@ export {
|
|
|
70
70
|
collectResponsivenessProbes,
|
|
71
71
|
getResponsivenessIntervalMs
|
|
72
72
|
};
|
|
73
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
73
|
+
//# sourceMappingURL=responsiveness-probe-522ZBE5Q.js.map
|