
By R users for R users
A Cursor-style AI Coding Agent for RStudio
MyOwnRobs is a comprehensive AI-powered coding agent that seamlessly integrates as an RStudio extension, bringing state-of-the-art AI capabilities directly to R developers through an autonomous agent-based approach.
Install the current released version of {myownrobs} from
CRAN:
install.packages("myownrobs")Or install the development version of {myownrobs} from
GitHub with:
# install.packages("remotes")
remotes::install_github("MyOwnRobs/myownrobs")# Configure your preferred AI provider(s).
myownrobs::configure_provider("google_gemini", Sys.getenv("GEMINI_API_KEY"))
myownrobs::configure_provider("anthropic", Sys.getenv("ANTHROPIC_API_KEY"))
myownrobs::configure_provider("openai", Sys.getenv("OPENAI_API_KEY"))myownrobs::myownrobs() in the R
console, or by opening the MyOwnRobs addin through the RStudio Addins
menu:
Addins > MyOwnRobs in
RStudioCtrl/Cmd + Shift + P →
“MyOwnRobs”Note: Throughout this README, “we” refers to the package authors.
Your data privacy is important to us. Here’s a concise overview of MyOwnRobs’s data practices:
Local Storage Only: MyOwnRobs stores your API
keys locally in tools::R_user_dir("myownrobs", "config")
and only stores your last active chat session to maintain continuous
functionality between chat sessions and RStudio/addin restarts.
Direct API Communication: MyOwnRobs communicates directly with your selected AI provider (Google Gemini, Anthropic, or OpenAI) using your API key. There is no intermediary MyOwnRobs server - your prompts and code go directly to the AI provider you choose.
No MyOwnRobs Data Collection: We do not collect, store, or have access to your prompts, code, or API interactions. All communication happens directly between your RStudio session and your chosen AI provider.
Our recommendation: We recommend using MyOwnRobs with a project only if you are comfortable with submitting its contents to your selected AI model provider, as the agent may access various files for comprehensive assistance. Please review your AI provider’s data policies:
Model Provider Data Policies
We’ve strived to keep this section brief and clear. If you have any further questions or concerns about data privacy, please don’t hesitate to submit an issue on our GitHub tracker. We will thankfully address your inquiries and update this section as needed.
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
Bug reports and new ideas or features are more than welcome at the issue tracker.
This project is licensed under the MIT License - see the LICENSE file for details.
MyOwnRobs - Democratizing AI-assisted development for the R community 🎉