@integrity-labs/agt-cli 0.12.3 → 0.12.5
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 +3 -3
- package/dist/{chunk-S5VHDDAJ.js → chunk-35KA6J3P.js} +42 -29
- package/dist/chunk-35KA6J3P.js.map +1 -0
- package/dist/lib/manager-worker.js +4 -2
- package/dist/lib/manager-worker.js.map +1 -1
- package/mcp/direct-chat-channel.js +12 -0
- package/package.json +1 -1
- package/dist/chunk-S5VHDDAJ.js.map +0 -1
|
@@ -15,8 +15,9 @@ import {
|
|
|
15
15
|
provisionStopHook,
|
|
16
16
|
requireHost,
|
|
17
17
|
resolveChannels,
|
|
18
|
-
resolveDmTarget
|
|
19
|
-
|
|
18
|
+
resolveDmTarget,
|
|
19
|
+
wrapScheduledTaskPrompt
|
|
20
|
+
} from "../chunk-35KA6J3P.js";
|
|
20
21
|
import {
|
|
21
22
|
findTaskByTemplate,
|
|
22
23
|
getProjectDir,
|
|
@@ -2824,6 +2825,7 @@ async function executeAndProcessClaudeTask(codeName, agentId, task, prompt) {
|
|
|
2824
2825
|
const projectDir = getProjectDir(codeName);
|
|
2825
2826
|
const mcpConfigPath = join2(projectDir, ".mcp.json");
|
|
2826
2827
|
sanitizeMcpJson(mcpConfigPath, requireHost());
|
|
2828
|
+
prompt = wrapScheduledTaskPrompt(prompt);
|
|
2827
2829
|
try {
|
|
2828
2830
|
const claudeMdPath = join2(projectDir, "CLAUDE.md");
|
|
2829
2831
|
const serverNames = [];
|