Hi everyone,
I am considering adopting Cursor for an existing local repository that is currently managed in VS Code with a fairly governance-heavy AI coding workflow.
Current setup
Right now, I work in VS Code with:
- Claude Code running in the terminal
- Codex Chat used separately in the chat panel
- A large, structured
todo-Codex.mdfile that we are implementing top-to-bottom - Repository-level governance/instruction files such as:
CLAUDE.mdAGENTS.md- Claude-specific skillset/instruction files
- Codex-specific skillset/instruction files
The current workflow is not a simple “ask AI to code” setup. It works more like a controlled multi-agent process:
- Planning phase
- Claude proposes an initial implementation plan.
- Codex reviews the plan and challenges or revises it where needed.
- Claude does not blindly accept the review; it responds with evidence-based reasoning.
- They debate until there is a clear implementation agreement.
- Implementation phase
- Claude makes the first implementation.
- Codex audits/reviews the changes.
- Claude responds to the audit with evidence-based reasoning.
- Once both sides converge, the relevant todo item is closed.
- Governance requirements
- The workflow must respect repository instructions.
- It must not silently remove or disable existing functionality.
- It should preserve auditability.
- It should work item-by-item from the todo list.
- Ideally, it should produce clear evidence for why a change was made.
What I want to do with Cursor
I would like to integrate Cursor into this local repository and, if possible, reproduce or improve this workflow inside Cursor.
My main questions are:
1. How should I integrate Cursor into this existing local repo?
What is the recommended setup for opening and using an existing VS Code-based repo in Cursor while preserving the current governance structure?
Specifically:
- Should I simply open the same local folder in Cursor?
- How should I migrate or map
CLAUDE.md,AGENTS.md, and other instruction files into Cursor’s rule/context system? - Should I use Cursor Rules,
.cursor/rules, project rules, or another mechanism? - Can Cursor reliably use multiple repository instruction files as persistent context?
- Is there a recommended way to make Cursor follow a large
todo-Codex.mdfile item-by-item without losing context? - Can Cursor be configured so that it always considers certain governance files before proposing or applying edits?
2. Can Cursor automate this debate → implementation → audit workflow?
I would like to know whether Cursor can support an automated or semi-automated version of this loop:
- Read the next open item from
todo-Codex.md - Generate an implementation plan
- Run an internal review or second-agent critique of the plan
- Revise the plan if needed
- Implement the agreed changes
- Run tests/checks/static analysis
- Produce an audit summary
- Decide whether the todo item can be closed
- Move to the next item
Ideally, I want something close to a multi-agent workflow where one model/agent plans and implements, while another reviews or challenges it before the work is accepted.
Questions:
- Does Cursor support this kind of multi-step automation natively?
- Can Cursor run multiple agents or roles, such as “planner”, “implementer”, and “auditor”?
- Can this be done with Cursor Agent, background agents, custom commands, rules, or MCP?
- Is there a way to make Cursor automatically continue through todo items while still requiring approval gates before applying risky changes?
- Can Cursor run terminal commands, collect evidence, and use that evidence in the final audit?
- Can it be configured to avoid blindly accepting its own previous output?
- Can it preserve a debate/review trail between planning and implementation?
3. Recommended architecture
For this kind of repo, what would the best Cursor-based architecture be?
For example, should I structure it as:
.cursor/rules/- dedicated planning rules
- dedicated implementation rules
- dedicated audit/review rules
- a todo parser script
- MCP tools
- terminal-based verification commands
- manual approval checkpoints
Or is there a better Cursor-native approach? And what should be the watch-points?
4. Limitations I should be aware of
I would also appreciate any advice on the practical limitations:
- Context window limits with large todo/governance files
- Whether Cursor can reliably follow long project-level procedures
- Whether background agents are suitable for governance-heavy codebase work
- How to avoid accidental broad edits
- How to ensure that existing functionality is not removed or silently disabled
- How to make review/audit output evidence-based rather than generic
In short, I am trying to understand whether Cursor can become the main interface for a controlled multi-agent coding workflow, where planning, implementation, review, and todo closure happen in a structured and auditable way.
Any examples, recommended setups, rule structures, MCP patterns, or automation approaches would be very helpful.
Thank you in advance for all the time you spent in reading and replying.
Best regards,