Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: fd573e09d1
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| --- | ||
| name: playwright-cli | ||
| description: Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages. | ||
| allowed-tools: Bash(playwright-cli:*) |
There was a problem hiding this comment.
Expand allowed-tools to include npx fallback
The frontmatter only allows Bash(playwright-cli:*), but this same skill later tells users to fall back to npx playwright-cli ... if the global binary is unavailable. In that common scenario, the fallback path is blocked by the skill’s own tool restrictions, so the workflow fails exactly when recovery is needed. Please allow the npx playwright-cli invocation (or remove the fallback guidance) so the documented path is executable.
Useful? React with 👍 / 👎.
No description provided.