chore: merge local workspace changes#47
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: cd35669a1f
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| const rebased = rebaseAbsoluteVerificationPath(projectRootResolved, absolutePath) | ||
| if (rebased) return path.resolve(projectRootResolved, rebased) | ||
|
|
There was a problem hiding this comment.
Preserve absolute paths already inside project root
This path-resolution order rebases every absolute verification path before checking whether it already points inside projectRoot, so valid root-level absolute paths (for example /repo/package.json or /repo/README.md) can be rewritten to non-existent nested paths like /repo/workspace/oneshot/package.json via suffix candidates and then fail file_exists/file_contains checks. The regression is triggered whenever a check uses an absolute in-repo path that does not match your anchor set (src, packages, etc.), causing deterministic verification to report false negatives.
Useful? React with 👍 / 👎.
This PR contains all current local workspace changes, including orchestrator runtime improvements, verification path handling, and related tests.