@integrity-labs/agt-cli 0.28.69 → 0.28.71
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-NAKDDR6O.js → chunk-36O7GO5B.js} +2 -2
- package/dist/{chunk-RTQ42HVY.js → chunk-4FLPEG4D.js} +3 -3
- package/dist/{chunk-F7LALIIP.js → chunk-Z2BMTZQK.js} +34 -15
- package/dist/chunk-Z2BMTZQK.js.map +1 -0
- package/dist/{claude-pair-runtime-W6D56XZG.js → claude-pair-runtime-XW57YWRZ.js} +2 -2
- package/dist/lib/manager-worker.js +185 -115
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +1 -1
- package/dist/mcp/telegram-channel.js +1 -1
- package/dist/{persistent-session-37EAR7QR.js → persistent-session-JCVHOC2Q.js} +3 -3
- package/dist/{responsiveness-probe-WI5X7C55.js → responsiveness-probe-OTYU6IER.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-F7LALIIP.js.map +0 -1
- /package/dist/{chunk-NAKDDR6O.js.map → chunk-36O7GO5B.js.map} +0 -0
- /package/dist/{chunk-RTQ42HVY.js.map → chunk-4FLPEG4D.js.map} +0 -0
- /package/dist/{claude-pair-runtime-W6D56XZG.js.map → claude-pair-runtime-XW57YWRZ.js.map} +0 -0
- /package/dist/{persistent-session-37EAR7QR.js.map → persistent-session-JCVHOC2Q.js.map} +0 -0
- /package/dist/{responsiveness-probe-WI5X7C55.js.map → responsiveness-probe-OTYU6IER.js.map} +0 -0
|
@@ -17723,7 +17723,7 @@ function buildSlackHelpMessage(codeName) {
|
|
|
17723
17723
|
"All commands are real Slack slash commands (autocomplete via `/`). For backward compatibility, `/help` and the restart command can also be typed as plain messages in any channel where the bot is present:",
|
|
17724
17724
|
`\u2022 \`${agentSlashCommand("/help")}\` (or type \`/help\`) \u2014 show this help`,
|
|
17725
17725
|
`\u2022 \`${agentSlashCommand("/restart")}\` \u2014 restart this agent`,
|
|
17726
|
-
`\u2022 \`${agentSlashCommand("/onboard")}\` \u2014
|
|
17726
|
+
`\u2022 \`${agentSlashCommand("/onboard")}\` \u2014 re-run this agent's onboarding: re-interview, existing config kept (allowlisted users)`,
|
|
17727
17727
|
`\u2022 \`${agentSlashCommand("/resume-onboarding")}\` \u2014 resume this agent's onboarding where it left off (allowlisted users)`,
|
|
17728
17728
|
`\u2022 \`${agentSlashCommand("/status")}\` \u2014 this agent's model, session origin, uptime + connectivity`,
|
|
17729
17729
|
"\u2022 `/watch <google-doc-url> [duration]` (type it in chat) \u2014 watch a Google Doc for comments that mention me (default 2h, max 7d; auto-pauses when the window ends). In a shared channel, address me as `/watch-<my-name>`.",
|
|
@@ -16972,7 +16972,7 @@ function buildTelegramHelpMessage(codeName) {
|
|
|
16972
16972
|
`\u2022 /status \u2014 this agent's model, session origin, uptime + connectivity`,
|
|
16973
16973
|
`\u2022 /watch <google-doc-url> [duration] \u2014 watch a Google Doc for comments that mention me (default 2h, max 7d; auto-pauses when the window ends)`,
|
|
16974
16974
|
`\u2022 /restart \u2014 restart this agent`,
|
|
16975
|
-
`\u2022 /onboard \u2014
|
|
16975
|
+
`\u2022 /onboard \u2014 re-run this agent's onboarding: re-interview, existing config kept`,
|
|
16976
16976
|
`\u2022 /resume-onboarding \u2014 resume this agent's onboarding where it left off`,
|
|
16977
16977
|
`\u2022 /investigate-${codeName} \u2014 live tail of this agent's terminal pane (DM only; team owners/admins and the agent's reports-to person)`
|
|
16978
16978
|
].join("\n");
|
|
@@ -25,8 +25,8 @@ import {
|
|
|
25
25
|
takeZombieDetection,
|
|
26
26
|
writeDirectChatSessionState,
|
|
27
27
|
writePersistentClaudeWrapper
|
|
28
|
-
} from "./chunk-
|
|
29
|
-
import "./chunk-
|
|
28
|
+
} from "./chunk-36O7GO5B.js";
|
|
29
|
+
import "./chunk-Z2BMTZQK.js";
|
|
30
30
|
import "./chunk-XWVM4KPK.js";
|
|
31
31
|
export {
|
|
32
32
|
SEND_KEYS_ENTER_DELAY_MS,
|
|
@@ -56,4 +56,4 @@ export {
|
|
|
56
56
|
writeDirectChatSessionState,
|
|
57
57
|
writePersistentClaudeWrapper
|
|
58
58
|
};
|
|
59
|
-
//# sourceMappingURL=persistent-session-
|
|
59
|
+
//# sourceMappingURL=persistent-session-JCVHOC2Q.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-36O7GO5B.js";
|
|
4
|
+
import "./chunk-Z2BMTZQK.js";
|
|
5
5
|
import "./chunk-XWVM4KPK.js";
|
|
6
6
|
|
|
7
7
|
// src/lib/responsiveness-probe.ts
|
|
@@ -250,4 +250,4 @@ export {
|
|
|
250
250
|
parkPendingInbound,
|
|
251
251
|
readAndResetChannelDeflections
|
|
252
252
|
};
|
|
253
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
253
|
+
//# sourceMappingURL=responsiveness-probe-OTYU6IER.js.map
|