logoalt Hacker News

Snakes3727today at 3:14 PM3 repliesview on HN

Fundamentally one of my biggest gripes with tools like this is that often you are not working with a single repo in anything beyond simple apps.

When I am working with Claude I am often doing it from the root directory of a workspace of dozens of repos. I work with Claude to come up with a plan for implementing a feature and it investigates and plans.That plan often encompasses multiple repositories. Claude then turns large scale plans into smaller issues, or tickets as artifacts.


Replies

luca-ctxtoday at 3:23 PM

We’ve felt the same thing and tried to make ctx work well in multi-repo setups.

There are basically two ways to approach it:

- If one repo is primary and the others are mostly reference material, use workspace attachments. That lets the agent work in one repo while still being able to read the others. I do this a lot with dependency/source repos. - If the work genuinely spans multiple repos, just initialize the workspace at the parent directory that contains all of them. The harness still sees the same filesystem layout it normally would, so Claude/Codex/etc. can plan and work across repos the same way.

The main caveat is that some features are naturally more repo-specific. Merge queue is the obvious example, since landing and replay are much cleaner when there is one target repo/branch model.

iddantoday at 3:21 PM

What’s preventing you from putting all of those in a single parent directory and boot into it?

dbbktoday at 3:34 PM

Have you never heard of a monorepo?