Route issues from a single Linear project to multiple Git repositories. Useful when your team splits work across frontend, backend, infrastructure, or service repos.
Create a Linear issue with identifier FE-42 and move it to In Progress. Confirm Risoluto clones the frontend repo for the agent workspace.
# Check which repo was clonedcurl -s http://127.0.0.1:4000/api/v1/FE-42 | jq '.workspace'
Use identifier prefixes (FE-, BE-) for stable team-to-repo mapping. Use labels for per-issue overrides — for example, when a backend developer needs to fix a frontend bug.
# List all routescurl -s http://127.0.0.1:4000/api/v1/setup/repo-routes | jq# Remove a route by indexcurl -s -X DELETE http://127.0.0.1:4000/api/v1/setup/repo-route/0
When using the worktree strategy with multiple repos, each repository gets its own bare clone. Worktrees are created per-issue from the bare clone, sharing the Git object store for efficiency.