一键导入
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.