Has anyone found a way to make Bugbot use context from one repository in another?
My use case is that I keep documentation and coding guidelines in a dedicated “docs” repo, and I’d like Bugbot to automatically apply those guidelines when reviewing PRs in a different code repo. From the docs it looks like Bugbot’s context is scoped per-repository only — but I’m wondering if anyone has a workaround (e.g. linking repos, symlinks, shared .cursor/BUGBOT.md references, or org-level config).
Is cross-repo context possible today, or is the only option to duplicate the guidelines into each repo?
hey @jkaplan! can you clarify what is the best way/syntax to reference other files inside BUGBOT.md? we have our own documentation inside our repo and would love to reference them instead of duplicating their content in BUGBOT.md.
Relative markdown links are explicitly fed to the model, like this “Follow the rules laid out in (my coding standards)[./.cursor/rules/codingstandards.mdc]”
thanks, this helps a ton! and just to clarify, when you say relative, it is not relative to the path of the BUGBOT.md file, right? so we start from the root as you wrote, for instance [our api pattern](./docs/patterns/api.md) (where .docs is at the root).