How this skill is triggered — by the user, by Claude, or both
Slash command
/doarakko-config:e2e-checkThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
`playwright-cli` を使ってブラウザを操作し、アプリケーションの動作確認をE2Eで行う。
playwright-cli を使ってブラウザを操作し、アプリケーションの動作確認をE2Eで行う。
最初に必ず実行:
which playwright-cli
コマンドが見つからない場合は処理を中断し、ユーザーにインストールを案内する。
README.md を読み、プロジェクトの概要・セットアップ手順・起動方法・URLなどを把握するcurl -s -o /dev/null -w "%{http_code}" <URL> で疎通確認するplaywright-cli open <URL>
playwright-cli snapshot
ユーザーの指示や状況に応じて、以下のコマンドを臨機応変に組み合わせて動作確認を行う:
| コマンド | 用途 |
|---|---|
playwright-cli open <URL> | ブラウザでURLを開く |
playwright-cli goto <URL> | ページ遷移 |
playwright-cli snapshot | ページ構造の確認(ref取得) |
playwright-cli screenshot | スクリーンショット取得 |
playwright-cli click --ref <ref> | 要素のクリック |
playwright-cli type --ref <ref> --text <text> | テキスト入力 |
playwright-cli select-option --ref <ref> --value <value> | セレクトボックス選択 |
playwright-cli hover --ref <ref> | ホバー |
playwright-cli cookie-list | Cookie一覧の確認 |
playwright-cli close | ブラウザを閉じる |
playwright-cli snapshot で要素の ref を確認してから操作する.env ファイルから認証情報を取得するplaywright-cli close でブラウザを閉じるnpx claudepluginhub doarakko/dotfiles --plugin doarakko-configTests local web applications using Playwright: verifies frontend functionality, debugs UI behavior, captures screenshots, views logs. Mandatory before declaring implementation complete.
Opens and controls a Playwright browser for web automation, testing, and page interaction via CLI commands.
Automates browser tasks via Playwright CLI for AI agents: navigate pages, take snapshots/screenshots, fill forms, click elements from command line. Use with shell access.