원클릭으로
screenshot
Take a screenshot of a running web application using Playwright and Chromium. Offers to attach the screenshot as a PR comment.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Take a screenshot of a running web application using Playwright and Chromium. Offers to attach the screenshot as a PR comment.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Interact with Jira and Confluence. Use the Atlassian MCP server tools when available, otherwise fall back to the jira CLI.
Goal-driven execution. Breaks a task into phases with verification, parallelizes via subagents, and iterates until the outcome is achieved. Triggers: 'go-do', 'goal-driven', 'achieve this', 'make it so'.
Do work in an isolated git worktree instead of switching branches. Use when creating a branch and opening a PR so the user's working directory is never disturbed. Triggers: 'create a branch', 'open a PR', 'make a change on a new branch'.
Record a demo of a web application or terminal session. Uses Playwright for browser recordings and VHS for terminal recordings. Offers to attach the resulting GIF/video as a PR comment.
Start an interactive questionnaire when there are more than 5 options or bullet points that need to be addressed. Uses the ask_user tool to walk through selections interactively instead of dumping a wall of text.
Code review mode. Read and analyze code, PRs, and issues. All GitHub write operations are prohibited.
| name | screenshot |
| description | Take a screenshot of a running web application using Playwright and Chromium. Offers to attach the screenshot as a PR comment. |
| user-invocable | true |
Take a screenshot of a locally running web application.
Ask if the local dev environment is already running.
http://localhost:3000).Install Playwright and Chromium to a temp directory.
npm install --prefix /tmp/pw playwright
npx --prefix /tmp/pw playwright install chromium
Take the screenshot with a Node.js script using the Playwright API.
Write a script (e.g., /tmp/pw/screenshot.mjs):
import { chromium } from '/tmp/pw/node_modules/playwright/index.mjs';
const url = process.argv[2] || 'http://localhost:3000';
const outputPath = process.argv[3] || 'screenshot.png';
const browser = await chromium.launch();
const page = await browser.newPage({ viewport: { width: 1600, height: 900 } });
await page.goto(url, { waitUntil: 'networkidle' });
await page.waitForTimeout(8000); // extra wait for JS-heavy apps (dashboards, SPAs)
await page.screenshot({ path: outputPath, fullPage: true });
await browser.close();
Run it:
node /tmp/pw/screenshot.mjs "<URL>" screenshot.png
Adjust wait time and viewport as needed:
waitForTimeout to 2000–3000ms.width/height.page.locator('selector').screenshot()
instead of full-page.Show the screenshot to the user using the read tool on the resulting PNG file so they can verify it.
Ask if the user wants the screenshot added as a comment on the current pull request.
gh pr view --json number -q .number
git add screenshot.png
git commit --no-gpg-sign -m "docs: add screenshot"
git push
gh pr comment <number> --body "## Screenshot\n\n"
waitUntil: 'networkidle' plus an additional timeout for
apps that render asynchronously after initial load./tmp/pw to avoid polluting the project directory.