Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion skills/webwright/reference/cli_tool_mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion src/webwright/utils/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.")