ワンクリックで
playwright-cli
Use when the agent needs to automate a browser — navigate websites, take screenshots, fill forms, or extract page content.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when the agent needs to automate a browser — navigate websites, take screenshots, fill forms, or extract page content.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Prepare a concise daily briefing.
Use when the agent needs current library or framework documentation. Activates for setup questions, code generation involving libraries, or mentions of specific frameworks like React, Next.js, Prisma, etc.
Default process for a personal assistant turn.
SOC 職業分類に基づく
| name | playwright-cli |
| description | Use when the agent needs to automate a browser — navigate websites, take screenshots, fill forms, or extract page content. |
Use these tools to control a headed Playwright browser session. The session is automatically scoped to the current agent — no session ID needed.
local_browser_open (url: "https://example.com")
local_browser_snapshot
local_browser_click (ref: "e3")
local_browser_fill (ref: "e5", text: "hello@example.com")
local_browser_screenshot
local_browser_close
| Tool | Purpose |
|---|---|
local_browser_open | Open a new browser session, optionally navigating to a URL |
local_browser_goto | Navigate the current session to a URL |
local_browser_close | Close the current browser page |
| Tool | Purpose |
|---|---|
local_browser_snapshot | Capture the accessibility tree and element refs for the current page |
local_browser_click | Click an element by ref (from snapshot) |
local_browser_fill | Fill an editable element by ref; optionally press Enter after |
local_browser_type | Type text into the currently focused element |
local_browser_press | Press a keyboard key (e.g. Enter, Escape, ArrowDown) |
| Tool | Purpose |
|---|---|
local_browser_screenshot | Take a screenshot of the page or an element |
local_browser_eval | Evaluate JavaScript in the page, optionally against an element ref |
local_browser_open with a URLlocal_browser_snapshot to see element refslocal_browser_click, local_browser_fill, etc.)local_browser_snapshot again to verify statelocal_browser_close when doneThe browser session is automatically derived from the agent ID — you do not need to pass a session identifier. Each agent gets its own isolated browser.
The following playwright-cli features have no local_browser_* counterpart and cannot be used: