원클릭으로
packet
Open the review packet (e2e report viewer) in a browser
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Open the review packet (e2e report viewer) in a browser
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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
| 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.