npx claudepluginhub doarakko/dotfiles --plugin doarakko-configThis skill is limited to using the following tools:
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
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 でブラウザを閉じる