We're thrilled you're interested in contributing to Roo Code. Whether you're fixing a bug, adding a feature, or improving our docs, every contribution makes Roo Code smarter! To keep our community vibrant and welcoming, all members must adhere to our Code of Conduct.
We strongly encourage all contributors to join our Discord community! Being part of our Discord server helps you:
- Get real-time help and guidance on your contributions
- Connect with other contributors and core team members
- Stay updated on project developments and priorities
- Participate in discussions that shape Roo Code's future
- Find collaboration opportunities with other developers
Bug reports help make Roo Code better for everyone! Before creating a new issue, please search existing ones to avoid duplicates. When you're ready to report a bug, head over to our issues page where you'll find a template to help you with filling out the relevant information.
🔐 Important: If you discover a security vulnerability, please use the Github security tool to report it privately.
Looking for a good first contribution? Check out issues in the "Issue [Unassigned]" section of our Roo Code Issues Github Project. These are specifically curated for new contributors and areas where we'd love some help!
We also welcome contributions to our documentation! Whether it's fixing typos, improving existing guides, or creating new educational content - we'd love to build a community-driven repository of resources that helps everyone get the most out of Roo Code. You can click "Edit this page" on any page to quickly get to the right spot in Github to edit the file, or you can dive directly into https://github.com/RooVetGit/Roo-Code-Docs.
If you're planning to work on a bigger feature, please create a feature request first so we can discuss whether it aligns with Roo Code's vision. You may also want to check our Project Roadmap below to see if your idea fits with our strategic direction.
Roo Code has a clear development roadmap that guides our priorities and future direction. Understanding our roadmap can help you:
- Align your contributions with project goals
- Identify areas where your expertise would be most valuable
- Understand the context behind certain design decisions
- Find inspiration for new features that support our vision
Our current roadmap focuses on six key pillars:
We aim to support as many providers well as we can:
- More versatile "OpenAI Compatible" support
- xAI, Microsoft Azure AI, Alibaba Cloud Qwen, IBM Watsonx, Together AI, DeepInfra, Fireworks AI, Cohere, Perplexity AI, FriendliAI, Replicate
- Enhanced support for Ollama and LM Studio
We want Roo to work as well on as many models as possible, including local models:
- Local model support through custom system prompting and workflows
- Benchmarking evals and test cases
We want Roo to run well on everyone's computer:
- Cross platform terminal integration
- Strong and consistent support for Mac, Windows, and Linux
We want comprehensive, accessible documentation for all users and contributors:
- Expanded user guides and tutorials
- Clear API documentation
- Better contributor guidance
- Multilingual documentation resources
- Interactive examples and code samples
We want to significantly decrease the number of bugs and increase automated testing:
- Debug logging switch
- "Machine/Task Information" copy button for sending in with bug/support requests
We want Roo to speak everyone's language:
- 我们希望 Roo Code 说每个人的语言
- Queremos que Roo Code hable el idioma de todos
- हम चाहते हैं कि Roo Code हर किसी की भाषा बोले
- نريد أن يتحدث Roo Code لغة الجميع
We especially welcome contributions that advance our roadmap goals. If you're working on something that aligns with these pillars, please mention it in your PR description.
- Clone the repo:
git clone https://github.com/RooVetGit/Roo-Code.git
- Install dependencies:
npm run install:all
- Start the webview (Vite/React app with HMR):
npm run dev
- Debug:
Press
F5
(or Run → Start Debugging) in VSCode to open a new session with Roo Code loaded.
Changes to the webview will appear immediately. Changes to the core extension will require a restart of the extension host.
Alternatively you can build a .vsix and install it directly in VSCode:
npm run build
A .vsix
file will appear in the bin/
directory which can be installed with:
code --install-extension bin/roo-cline-<version>.vsix
Anyone can contribute code to Roo Code, but we ask that you follow these guidelines to ensure your contributions can be smoothly integrated:
-
Keep Pull Requests Focused
- Limit PRs to a single feature or bug fix
- Split larger changes into smaller, related PRs
- Break changes into logical commits that can be reviewed independently
-
Code Quality
- All PRs must pass CI checks which include both linting and formatting
- Address any ESLint warnings or errors before submitting
- Respond to all feedback from Ellipsis, our automated code review tool
- Follow TypeScript best practices and maintain type safety
-
Testing
- Add tests for new features
- Run
npm test
to ensure all tests pass - Update existing tests if your changes affect them
- Include both unit tests and integration tests where appropriate
-
Commit Guidelines
- Write clear, descriptive commit messages
- Reference relevant issues in commits using #issue-number
-
Before Submitting
- Rebase your branch on the latest main
- Ensure your branch builds successfully
- Double-check all tests are passing
- Review your changes for any debugging code or console logs
-
Pull Request Description
- Clearly describe what your changes do
- Include steps to test the changes
- List any breaking changes
- Add screenshots for UI changes
By submitting a pull request, you agree that your contributions will be licensed under the same license as the project (Apache 2.0).