.agents/skills/pr-status-triage/local-repro.md
pnpm test-dev-turbo or pnpm test-dev-webpack based on job mode.pnpm test-start-turbo or pnpm test-start-webpack.Read the job environment variables from pr-status output and mirror them locally.
Key variables to watch:
IS_WEBPACK_TEST=1 forces webpack mode.NEXT_SKIP_ISOLATE=1 skips package isolation and can hide module-resolution issues.When validating module-resolution, entrypoint-export, or internal require-path fixes, rerun without NEXT_SKIP_ISOLATE=1.
Capture once, analyze multiple times:
HEADLESS=true pnpm test-dev-turbo test/path/to/test.ts > /tmp/test-output.log 2>&1
grep "●" /tmp/test-output.log
grep -A5 "Error:" /tmp/test-output.log
tail -5 /tmp/test-output.log