/** * Compatibility shim — re-exports toPosixPath from the canonical * implementation in @singularity-forge/coding-agent. * * All importers of this module continue to work without any import changes. * The implementation now lives in packages/coding-agent/src/utils/path-display.ts. * * Use ONLY for paths entering text the LLM or shell sees. * Filesystem operations (fs.readFile, path.join, spawn cwd) handle native * separators correctly and should NOT be normalized. */ export { toPosixPath } from "@singularity-forge/coding-agent";