diff --git a/skills/webwright/reference/cli_tool_mode.md b/skills/webwright/reference/cli_tool_mode.md index f8004fc..3d64cad 100644 --- a/skills/webwright/reference/cli_tool_mode.md +++ b/skills/webwright/reference/cli_tool_mode.md @@ -6,7 +6,7 @@ provided. **CLI tool mode** (`/webwright:craft`) instead produces a **reusable, parameterized CLI tool**: the same script can be re-run later with different argument values to perform the same kind of task. -This mode is adapted from `mini-web-agent/src/webwright/config/crafted_cli.yaml`'s +This mode is adapted from `webwright/src/webwright/config/crafted_cli.yaml`'s "Final-Script Shape (CLI Tool, MANDATORY)" contract. The OpenAI-backed `self_reflection` gate is replaced by your own self-verification against `plan.md`. diff --git a/src/webwright/utils/runtime.py b/src/webwright/utils/runtime.py index 163dd34..9941b3a 100644 --- a/src/webwright/utils/runtime.py +++ b/src/webwright/utils/runtime.py @@ -11,4 +11,4 @@ def run_async(coro) -> T: asyncio.get_running_loop() except RuntimeError: return asyncio.run(coro) - raise RuntimeError("mini-swe-webagent does not support running inside an active event loop.") + raise RuntimeError("Webwright does not support running inside an active event loop.")