mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-02 13:22:11 +03:00
#6366 switched the output base from path.resolve to path.join(process.cwd(), outputDir) to keep Turbopack's static analyzer from tracing the project root. path.join mangles an absolute outputDir (a tmp dir in the generator tests) into cwd/tmp/…, so apply mode reported success while writing nothing at the expected path. Guard with path.isAbsolute — absolute paths pass through, the relative production case ('skills') keeps the Turbopack-friendly join form. The existing agentSkills-generator suite is the regression guard (now 21/21).