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:
ezl-keygraph
2026-03-22 13:12:24 +05:30
committed by GitHub
parent 01dc49bbd6
commit c408eabc62
57 changed files with 724 additions and 1274 deletions
+1 -3
View File
@@ -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);