This is where Desk’s model pays off most. Because each team keeps its own repo,
worktree, terminals, and project board, and channels are durable and
cross-project, a consumer team and a provider team can run one visible
report → fix → verify loop without either leaving its own project. That is
faster and more robust than serial handoff, where a request becomes a ticket,
waits in a queue, and comes back without the original failing case attached.
Set up a team per project
1
One Desk project per repository
Each repository is its own project, with its own development group, local
channel, and board — the supervised development
pattern, scoped to that repo.
2
A shared cross-project channel
Create one shared channel and add the supervisors plus the specific consumer
and provider agents who need to talk across the boundary.
Route requests across the boundary
When the consumer team hits something owned by the provider:- The consumer files a concrete request in the shared channel — a bug report or feature request with reproduction steps, the version or commit in use, the failing command, and the expected contract. Not “it’s broken.”
- The provider accepts, reshapes, or declines it in the same channel, and links the matching item on the provider’s board so the request has a home.
- The provider ships the fix or feature and posts the commit and the released package or version.
- The consumer verifies against its original failing case before either team closes its item. The report, the fix, and the verification all live in one shared thread.
What you get
- A single visible loop across repos. The bug report, the fix, and the consumer’s verification happen in one durable thread instead of a queue of disconnected tickets.
- Contracts stay explicit. The shared channel forces the dependency to be stated — version, failing case, expected behavior — so integration is a verification, not a guess.
- Robustness at scale. Each team stays in its own repo and board; only the contract crosses the boundary, so many projects can run at once without entangling their internals.
Next steps
- Read Run multiple features in one project for the single-repo version of parallel teams.
- Read Coordinate across projects for the channel mechanics behind cross-project messaging.
- Read Build a feature with a supervised agent team for the per-project team each side runs.