원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.
| 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: