fix(extension): remove redundant SafeToAutoRun chat snapshot for Discord relay

* Removed writeChatSnapshot calls in step-probe.ts to prevent duplicate ' 자동 실행됨' notifications since bot.py already broadcasts '🤖 자동 승인됨'.
* Docs: Update devlog and known-issues with Discord Bot cache deletion bugs and multi-workspace LS connection conflicts.
* Fixes Vikunja #593
This commit is contained in:
Variet Worker
2026-04-08 17:59:40 +09:00
parent 2eb1fbb6b7
commit d2023321bd
4 changed files with 34 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
/**
/**
* Step Probe Module - SDK polling, response handling, approval strategies.
* All shared state accessed through BridgeContext.
* Extracted from extension.ts.
@@ -591,10 +591,6 @@ function setupMonitor() {
source: 'step_probe',
safe_to_auto_run: isSafeToAutoRun,
});
if (isSafeToAutoRun) {
const truncatedCmd = command.length > 500 ? command.substring(0, 500) + '\n...(이하 생략)' : command;
ctx.writeChatSnapshot(`⚡ **자동 실행됨** (step ${si})\n\n\`\`\`\n${truncatedCmd}\n\`\`\``);
}
}
}
// NOTE: no break — process ALL parallel WAITING steps
@@ -667,10 +663,6 @@ function setupMonitor() {
source: 'step_probe_utf8_offset',
safe_to_auto_run: isSafeToAutoRun,
});
if (isSafeToAutoRun) {
const truncatedCmd = command.length > 500 ? command.substring(0, 500) + '\n...(이하 생략)' : command;
ctx.writeChatSnapshot(`⚡ **자동 실행됨** (step ${actualIndex})\n\n\`\`\`\n${truncatedCmd}\n\`\`\``);
}
}
}
// NOTE: no break — process ALL parallel WAITING steps