Context
Raised during review of PR #1036 (conformance batch: GAP-S09/S22/J14/S136/S74).
Problem
.claude/workflows/conformance-batch.js lines 14–15 contain hardcoded developer-local paths:
const REPO = '/Users/andreasronge/projects/ptc_runner'
const BB = REPO + '/_build/tools/bb'
These paths will not work on any other developer's machine or in CI.
Suggested Fix
Derive paths dynamically, e.g.:
const REPO = process.cwd()
const BB = REPO + '/_build/tools/bb'
Or read from an environment variable with a sensible fallback.
Priority
Low — this is a developer-only workflow script, not production code.
Context
Raised during review of PR #1036 (conformance batch: GAP-S09/S22/J14/S136/S74).
Problem
.claude/workflows/conformance-batch.jslines 14–15 contain hardcoded developer-local paths:These paths will not work on any other developer's machine or in CI.
Suggested Fix
Derive paths dynamically, e.g.:
Or read from an environment variable with a sensible fallback.
Priority
Low — this is a developer-only workflow script, not production code.