Closed: local development setup - #6251
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
PR SummaryLow Risk Overview The work was closed without merging; any local development setup stays on the developer machine and was not added to the repository. Reviewed by Cursor Bugbot for commit 9b9da81. Bugbot is set up for automated code reviews on this repo. Configure here. |
c580322 to
9b9da81
Compare
Greptile SummaryThe PR isolates Codex access to Sim-specific Linear and Slack connectors and adds repository-level routing and worktree instructions.
Confidence Score: 4/5The worktree path must be excluded from Git before merging so the required isolation workflow does not dirty the originating checkout or expose nested files to staging. The instructions mandate creating a full checkout under Files Needing Attention: AGENTS.md and .gitignore
|
| Filename | Overview |
|---|---|
| .codex/config.toml | Adds project-specific MCP routing, disables generic connectors, and marks the isolated Sim connectors as required. |
| AGENTS.md | Adds connector identity and worktree-isolation guidance, but the mandated .worktrees/ location is not ignored by Git. |
Reviews (1): Last reviewed commit: c580322 | Re-trigger Greptile
| ### Isolated implementation work | ||
|
|
||
| - Do not implement a new task in a dirty, detached, shared, or unrelated worktree. | ||
| - Before code changes, inspect `git status` and `git worktree list`. If the task is not already in its own clean worktree, fetch `origin/staging`, create a task-specific branch from `origin/staging`, and add a dedicated worktree under `.worktrees/<issue-id>-<slug>`. |
There was a problem hiding this comment.
Worktree directory remains tracked
When an agent follows this instruction, the complete checkout created under .worktrees/<issue-id>-<slug> remains visible as untracked content because .gitignore excludes only .claude/worktrees/, causing clean-tree checks to fail and unrestricted staging to include files from the nested checkout.
Closed without repository changes. This setup remains local to the developer environment.