From fe7e3f2e4d40add365d99eca77346c1e8ea299cc Mon Sep 17 00:00:00 2001 From: Rahul <1559764+rraina@users.noreply.github.com> Date: Mon, 2 Mar 2026 23:23:41 -0800 Subject: [PATCH] Change playwright-cli commands to use @playwright/cli Updated commands in SKILL.md to use @playwright/cli. Avoids this warning: ``` npm warn deprecated playwright-cli@0.262.0: This package is deprecated, use @playwright/cli instead. ``` --- skills/playwright-cli/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/playwright-cli/SKILL.md b/skills/playwright-cli/SKILL.md index 11bad2b..3cd1dbb 100644 --- a/skills/playwright-cli/SKILL.md +++ b/skills/playwright-cli/SKILL.md @@ -219,8 +219,8 @@ playwright-cli kill-all In some cases user might want to install playwright-cli locally. If running globally available `playwright-cli` binary fails, use `npx playwright-cli` to run the commands. For example: ```bash -npx playwright-cli open https://example.com -npx playwright-cli click e1 +npx @playwright/cli open https://example.com +npx @playwright/cli click e1 ``` ## Example: Form submission