Show HN: ProofShot – Give AI coding agents eyes to verify the UI they build
TL;DR Highlight
An open-source CLI that solves the problem of AI coding agents not being able to see what UI they've created — auto-generating video recordings, screenshots, and error reports via browser automation.
Who Should Read
Developers building frontend features with AI coding agents like Claude Code, Cursor, or Copilot who are tired of manually checking every UI the agent produces. Also useful for teams who want visual evidence attached to PR reviews.
Core Mechanics
- The CLI runs browser automation (Playwright under the hood) to load the app, interact with key user flows, capture screenshots and video, and generate a structured report.
- Reports include: screenshots of key states, a video of the interaction, console errors, network errors, and accessibility warnings — all generated without human intervention.
- The tool integrates with CI/CD: you can run it in a GitHub Actions workflow after an AI coding session and attach the report as a PR artifact.
- For AI agent workflows, the pattern is: agent generates code -> CLI runs browser automation -> report fed back to agent for self-correction — closing the visual feedback loop.
- The tool is configurable via a simple YAML spec defining which pages to visit and which user flows to execute, making it adaptable to different app structures.
Evidence
- Early users reported that the visual feedback loop (agent generates -> CLI validates -> agent corrects) reduced UI bug rates by roughly 40-60% compared to text-only feedback.
- Frontend developers noted that the tool catches a class of bugs that text-based AI review misses entirely: layout shifts, responsive breakpoints, visual regressions.
- The CI/CD integration was highlighted as particularly valuable for team workflows — reviewers get visual context without needing to check out and run the PR locally.
- Some noted the Playwright dependency adds setup complexity, especially for teams not already using it — a simpler Puppeteer option would lower the adoption barrier.
How to Apply
- Install the CLI and write a YAML spec defining your app's key user flows (login, main dashboard, critical feature). This becomes the visual test suite.
- Add a CI step that runs the CLI after every PR — attach the output report as a GitHub Actions artifact for reviewers.
- For AI agent workflows, configure the agent to run the CLI after UI changes and include the report in its self-review step before marking work as complete.
- Use the video recording feature for bug reports — a recording is worth more than a screenshot and eliminates 'I can't reproduce it' back-and-forth.
Code Example
# Installation
npm install -g proofshot
proofshot install
# 1. Start dev server + open browser + start recording
proofshot start --run "npm run dev" --port 3000 --description "Login form verification"
# 2. Agent manipulates browser (agent-browser commands)
agent-browser snapshot -i # Check interactive elements
agent-browser open http://localhost:3000/login # Navigate to page
agent-browser click "[data-testid=submit]" # Click
agent-browser snapshot # Capture screenshot
# 3. Stop recording + bundle artifacts
proofshot stop
# Upload results to PR (automatically attached as GitHub PR inline comment)
proofshot prTerminology
Related Papers
Migrating a production AI agent to GPT-5.6: 2.2x faster, 27% cheaper
마케팅 웹사이트를 자동 생성하는 프로덕션 AI 에이전트를 Claude Opus 4.8에서 GPT-5.6 Sol로 전환한 실전 경험담으로, 단순 모델 교체가 아니라 eval 하네스, 툴 스키마, 캐싱, 추론 리플레이까지 손봐야 했던 과정을 구체적인 수치와 함께 정리했다.
What xAI's Grok build CLI sends to xAI: A wire-level analysis
xAI의 공식 코딩 CLI 도구 Grok Build가 사용자 동의 없이 전체 Git 저장소와 .env 시크릿 파일을 xAI 서버로 업로드한다는 사실이 네트워크 트래픽 분석으로 밝혀졌다.
Remember When It Matters: Proactive Memory Agent for Long-Horizon Agents
LLM 에이전트가 긴 작업 중 중요한 정보를 잊어버리는 문제를 별도의 메모리 에이전트가 '적절한 타이밍에' 끼어들어 해결하는 방법
WebSwarm: Recursive Multi-Agent Orchestration for Deep-and-Wide Web Search
복잡한 웹 검색을 재귀적으로 분해하고 각 노드에 적합한 검색 모드를 동적으로 할당하는 멀티에이전트 프레임워크
Show HN: Reverse-engineering web apps into agent tools
로그인된 웹 앱의 API 호출을 브라우저에서 감시해 자동으로 MCP 도구로 변환하는 에이전트를 만들었다. 소스 코드나 공식 API 문서 없이도 Jira, Spotify 같은 서비스에 AI 어시스턴트를 붙일 수 있다.
Show HN: FableCut – A browser video editor AI agents can drive (zero deps)
타임라인 전체를 JSON 파일 하나로 표현하고 MCP/REST로 AI 에이전트가 직접 편집할 수 있는 브라우저 비디오 에디터로, Claude 같은 AI가 프롬프트 하나로 영상을 자동 컷편집하고 결과를 실시간으로 UI에 반영해준다.