一键导入
screenshot
Take a screenshot of the running dev server to visually verify UI changes. Use when you need to check layout, colors, or visual regressions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Take a screenshot of the running dev server to visually verify UI changes. Use when you need to check layout, colors, or visual regressions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create a new version release for givy. Use when the user says "release", "tag", "version bump", or wants to publish a new version. Handles tagging, pushing, and monitoring the GitHub Actions release workflow.
Stage and commit current changes with an auto-generated commit message. Use when the user says "commit", wants to save their work, or asks to commit changes. No arguments needed.
| name | screenshot |
| description | Take a screenshot of the running dev server to visually verify UI changes. Use when you need to check layout, colors, or visual regressions. |
| allowed-tools | Bash(node *), Read |
| argument-hint | <url-path> [--split] [--full] [--clip=x,y,w,h] [--out=path] |
Take screenshots of the givy dev server using Playwright.
The dev server must be running. Start it with make dev or manually:
./givy serve --dev <root-dir>cd frontend && pnpm devThe frontend Vite server typically runs on port 5174 (or 5173).
Run the screenshot script from the project root:
node /Users/hokaccha/local/src/github.com/hokaccha/givy/.claude/skills/screenshot/screenshot.js $ARGUMENTS
/hokaccha/givy/compare/base...head)--split: Click the "Split" button before taking the screenshot (for diff views)--full: Capture full page--clip=x,y,w,h: Capture a specific region--out=path: Output file path (default: /tmp/givy-screenshot-<timestamp>.png)# Screenshot repo root
node .claude/skills/screenshot/screenshot.js /hokaccha/givy
# Screenshot diff in split view
node .claude/skills/screenshot/screenshot.js /hokaccha/givy/compare/test...main --split
# Screenshot with clipping
node .claude/skills/screenshot/screenshot.js /hokaccha/givy --clip=0,100,1280,400
Always read the output PNG file with the Read tool to visually inspect it.