-
-
Notifications
You must be signed in to change notification settings - Fork 17
refactor: prepare project for open source release #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
abhishek-anand
commented
Jun 23, 2025
- Rename cookbooks/ to examples/ for clearer purpose
- Rename mcp_main.py to server.py for better clarity
- Rename openai_testmcp.py to openai_client.py for descriptive naming
- Update MCP server name from "jupyter_tools" to "CodeRunner"
- Remove personal information from config files
- Add claude_desktop_config.example.json template
- Add essential open source files (LICENSE, CONTRIBUTING.md)
- Update .gitignore for better coverage
- Update all file references in Dockerfile, entrypoint.sh, and README
- Update GitHub repository references to BandarLabs organization
- Rename cookbooks/ to examples/ for clearer purpose - Rename mcp_main.py to server.py for better clarity - Rename openai_testmcp.py to openai_client.py for descriptive naming - Update MCP server name from "jupyter_tools" to "CodeRunner" - Remove personal information from config files - Add claude_desktop_config.example.json template - Add essential open source files (LICENSE, CONTRIBUTING.md) - Update .gitignore for better coverage - Update all file references in Dockerfile, entrypoint.sh, and README - Update GitHub repository references to BandarLabs organization
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Summary of Changes
Hello @abhishek-anand, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
This pull request focuses on preparing the project for an open-source release. It involves a comprehensive refactoring of file and directory names for improved clarity, the addition of standard open-source documentation, and a cleanup of configuration files to remove sensitive data and provide user-friendly templates. All internal references across the codebase have been updated to ensure consistency with these changes.
Highlights
- Project Restructuring and Renaming: Key directories and files have been renamed for clarity, such as
cookbooks/
toexamples/
,mcp_main.py
toserver.py
, andopenai_testmcp.py
toopenai_client.py
. This improves the project's overall organization and readability. - Open Source Readiness: The project is being prepared for open-source release with the addition of essential files like
LICENSE
(MIT) andCONTRIBUTING.md
. The.gitignore
file has also been updated to exclude common development and personal configuration files. - Configuration and Reference Updates: Personal information has been removed from config files, and a template (
claude_desktop_config.example.json
) has been added for easier setup. All internal references acrossDockerfile
,entrypoint.sh
, andREADME.md
have been updated to reflect the new file names, directory structure, and the new GitHub organization (BandarLabs
). - MCP Server Branding: The internal MCP server name has been updated from 'jupyter_tools' to 'CodeRunner', aligning with the project's new identity.
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command>
or @gemini-code-assist <command>
. Below is a summary of the supported commands.
Feature | Command | Description |
---|---|---|
Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/
folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
The pull request effectively refactors the project for open-source release by renaming files and directories, updating references across the codebase, and adding essential open-source files like LICENSE
and CONTRIBUTING.md
. The changes are well-executed and align with the stated objectives, improving clarity and maintainability. No issues of medium
, high
, or critical
severity were identified in this review.
refactor: prepare project for open source release