بنقرة واحدة
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.