@integrity-labs/agt-cli 0.28.55 → 0.28.57
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-7P2VKTWK.js → chunk-F45T5XPH.js} +3 -3
- package/dist/{chunk-ATK3HBK6.js → chunk-MKKTPM6J.js} +2 -2
- package/dist/{chunk-TMTSBVPP.js → chunk-SJRG5VUF.js} +19 -1
- package/dist/chunk-SJRG5VUF.js.map +1 -0
- package/dist/{claude-pair-runtime-LDE4CJO5.js → claude-pair-runtime-RAAIXOKO.js} +2 -2
- package/dist/lib/manager-worker.js +60 -14
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +45 -0
- package/dist/{persistent-session-T6VRODM5.js → persistent-session-INTCKEG6.js} +3 -3
- package/dist/{responsiveness-probe-NI26NQJO.js → responsiveness-probe-XAYQAVLV.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-TMTSBVPP.js.map +0 -1
- /package/dist/{chunk-7P2VKTWK.js.map → chunk-F45T5XPH.js.map} +0 -0
- /package/dist/{chunk-ATK3HBK6.js.map → chunk-MKKTPM6J.js.map} +0 -0
- /package/dist/{claude-pair-runtime-LDE4CJO5.js.map → claude-pair-runtime-RAAIXOKO.js.map} +0 -0
- /package/dist/{persistent-session-T6VRODM5.js.map → persistent-session-INTCKEG6.js.map} +0 -0
- /package/dist/{responsiveness-probe-NI26NQJO.js.map → responsiveness-probe-XAYQAVLV.js.map} +0 -0
|
@@ -17470,6 +17470,7 @@ function buildSlackHelpMessage(codeName) {
|
|
|
17470
17470
|
"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:",
|
|
17471
17471
|
`\u2022 \`${agentSlashCommand("/help")}\` (or type \`/help\`) \u2014 show this help`,
|
|
17472
17472
|
`\u2022 \`${agentSlashCommand("/restart")}\` \u2014 restart this agent`,
|
|
17473
|
+
`\u2022 \`${agentSlashCommand("/resume-onboarding")}\` \u2014 re-run this agent's onboarding interview (allowlisted users)`,
|
|
17473
17474
|
`\u2022 \`${agentSlashCommand("/status")}\` \u2014 this agent's model, session origin, uptime + connectivity`,
|
|
17474
17475
|
"\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>`.",
|
|
17475
17476
|
"\u2022 `/kill` \u2014 silence all agents in this thread for 6h (use as a thread reply)",
|
|
@@ -17849,6 +17850,50 @@ async function handleSlashCommandEnvelope(payload) {
|
|
|
17849
17850
|
}
|
|
17850
17851
|
return;
|
|
17851
17852
|
}
|
|
17853
|
+
if (matchesAgentCommand(command, "/resume-onboarding")) {
|
|
17854
|
+
const allowed = getEffectiveAllowedUsers();
|
|
17855
|
+
if (allowed.size > 0 && (!payload.user_id || !allowed.has(payload.user_id))) {
|
|
17856
|
+
await postEphemeralViaResponseUrl(
|
|
17857
|
+
responseUrl,
|
|
17858
|
+
`\u{1F6AB} \`/resume-onboarding\` denied \u2014 your Slack user is not in the allowlist for \`${codeName}\`.`,
|
|
17859
|
+
codeName
|
|
17860
|
+
);
|
|
17861
|
+
return;
|
|
17862
|
+
}
|
|
17863
|
+
if (!AGT_HOST || !AGT_API_KEY || !AGT_AGENT_ID) {
|
|
17864
|
+
await postEphemeralViaResponseUrl(
|
|
17865
|
+
responseUrl,
|
|
17866
|
+
":warning: This agent has no host API wiring \u2014 `/resume-onboarding` needs the host runtime to be reachable.",
|
|
17867
|
+
codeName
|
|
17868
|
+
);
|
|
17869
|
+
return;
|
|
17870
|
+
}
|
|
17871
|
+
try {
|
|
17872
|
+
const res = await fetch(`${AGT_HOST}/host/onboarding/reset`, {
|
|
17873
|
+
method: "POST",
|
|
17874
|
+
headers: {
|
|
17875
|
+
"Content-Type": "application/json; charset=utf-8",
|
|
17876
|
+
Authorization: `Bearer ${AGT_API_KEY}`
|
|
17877
|
+
},
|
|
17878
|
+
body: JSON.stringify({ agent_id: AGT_AGENT_ID }),
|
|
17879
|
+
signal: AbortSignal.timeout(SLACK_DOWNLOAD_TIMEOUT_MS)
|
|
17880
|
+
});
|
|
17881
|
+
const data = await res.json();
|
|
17882
|
+
const text = data.ok ? `\u{1F504} ${data.message ?? "Onboarding reset \u2014 I\u2019ll re-interview your manager."}` : `:x: \`/resume-onboarding\` failed${data.error ? `: ${data.error}` : "."}`;
|
|
17883
|
+
await postEphemeralViaResponseUrl(responseUrl, text, codeName);
|
|
17884
|
+
} catch (err) {
|
|
17885
|
+
process.stderr.write(
|
|
17886
|
+
`slack-channel(${codeName}): /resume-onboarding forward failed: ${err.message}
|
|
17887
|
+
`
|
|
17888
|
+
);
|
|
17889
|
+
await postEphemeralViaResponseUrl(
|
|
17890
|
+
responseUrl,
|
|
17891
|
+
":x: `/resume-onboarding` forwarding failed \u2014 host runtime unreachable. Try again in a moment.",
|
|
17892
|
+
codeName
|
|
17893
|
+
);
|
|
17894
|
+
}
|
|
17895
|
+
return;
|
|
17896
|
+
}
|
|
17852
17897
|
if (command === "/debug" || matchesAgentCommand(command, "/investigate")) {
|
|
17853
17898
|
await handleDebugSlashCommand(payload, responseUrl);
|
|
17854
17899
|
return;
|
|
@@ -25,8 +25,8 @@ import {
|
|
|
25
25
|
takeZombieDetection,
|
|
26
26
|
writeDirectChatSessionState,
|
|
27
27
|
writePersistentClaudeWrapper
|
|
28
|
-
} from "./chunk-
|
|
29
|
-
import "./chunk-
|
|
28
|
+
} from "./chunk-MKKTPM6J.js";
|
|
29
|
+
import "./chunk-SJRG5VUF.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-INTCKEG6.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-MKKTPM6J.js";
|
|
4
|
+
import "./chunk-SJRG5VUF.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-XAYQAVLV.js.map
|