Feature request for product/service
Cursor CLI
Describe the request
Currently, the Cursor Agent CLI only accepts a single --workspace path.
This forces developers who work across multiple repositories to use a
large parent workspace that loads hundreds of skills and rules into
context, even when the task only touches one specific repo.
The request is to allow multiple --workspace flags in a single agent call:
cursor --workspace ./repo-a --workspace ./repo-b …
This would allow the agent to have access to multiple repositories
simultaneously without inflating the context with irrelevant skills
and rules from unrelated projects.
Use case: in a monorepo-adjacent setup where a code generator (repo A)
produces output consumed by platform repos (repo B, C, D…), it is
common to need the agent to read from the generator and write to the
platform, but loading the entire parent workspace just to achieve this
wastes significant token context on every single invocation.