en un clic
packet
Open the review packet (e2e report viewer) in a browser
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Open the review packet (e2e report viewer) in a browser
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
| name | packet |
| description | Open the review packet (e2e report viewer) in a browser |
Kill any running report viewer, start it fresh from this codebase, and open a browser window to review e2e test artifacts.
Run these commands in order:
# 1. Kill any existing report viewer processes on ports 5175 (client) and 3456 (server)
lsof -ti:5175 | xargs kill -9 2>/dev/null || true
lsof -ti:3456 | xargs kill -9 2>/dev/null || true
# 2. Start the report viewer (server + client) in the background
cd app/e2e-tests/report-viewer && npm start &
# 3. Wait for the client to be ready
sleep 3
# 4. Open in browser
open http://localhost:5175
Report to the user that the review packet is open at http://localhost:5175.
List and run agent tasks defined in _module/agent_tasks/ directories across the repo
Build the Meadow Electron app and launch it in test mode to verify it starts cleanly
Safely clean up the current worktree after verifying no unmerged work would be lost
Run the end-to-end test suite, automatically diagnose and fix failures
Finish a worktree development session - commit, merge to main, and clean up
Understand and extend the regenerable canonical scenario artifact in the e2e report viewer — used for iterating on the viewer's UI against stable, self-documenting data without running real tests