mirror of
https://github.com/KeygraphHQ/shannon.git
synced 2026-05-23 17:19:46 +02:00
feat: migrate from MCP tools to CLI based tools (#252)
* feat: migrate from MCP tools to CLI tools * fix: restore browser action emoji formatters for CLI output Adapt formatBrowserAction for playwright-cli commands, replacing the old mcp__playwright__browser_* tool name matching removed during migration.
This commit is contained in:
@@ -141,9 +141,7 @@ export async function start(args: StartArgs): Promise<void> {
|
||||
const resumeAttempts: { workflowId: string }[] = session.session?.resumeAttempts ?? [];
|
||||
|
||||
// Fresh: session.json appears with originalWorkflowId. Resume: new resumeAttempts entry.
|
||||
const ready = isResume
|
||||
? resumeAttempts.length > initialResumeCount
|
||||
: !!session.session?.originalWorkflowId;
|
||||
const ready = isResume ? resumeAttempts.length > initialResumeCount : !!session.session?.originalWorkflowId;
|
||||
|
||||
if (ready) {
|
||||
clearInterval(pollInterval);
|
||||
|
||||
Reference in New Issue
Block a user