From 0c2afdd2bb0a8656beae6df52196afa8b4d9470c Mon Sep 17 00:00:00 2001 From: Wendy Smoak Date: Sun, 7 Dec 2025 11:16:49 -0500 Subject: [PATCH 1/2] Change Gem creation link to Gemini Gem manager (#1057) Updated the link for creating a Gem to the Gemini Gem manager. --- docs/web-bundles-gemini-gpt-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/web-bundles-gemini-gpt-guide.md b/docs/web-bundles-gemini-gpt-guide.md index 6419165e..9ae3d64f 100644 --- a/docs/web-bundles-gemini-gpt-guide.md +++ b/docs/web-bundles-gemini-gpt-guide.md @@ -73,7 +73,7 @@ web-bundles/ **Create a Gem:** -1. Go to [Google AI Studio](https://aistudio.google.com/) +1. Go to [Gemini Gem manager](https://gemini.google.com/gems/view) 2. Click "New Gem" or "Create Gem" 3. Give your Gem a name (e.g., "BMad PM Agent") 4. **Enable "Code execution" for best results with document generation** From 987f81ff648e23c2fb9dbbf966f33648448c4d29 Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Sun, 7 Dec 2025 09:36:24 -0700 Subject: [PATCH 2/2] feat: add CodeRabbit AI code review integration (#1053) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add .coderabbit.yaml with minimal config and path instructions - Exclude node_modules from review scope - Document pilot research and conclusions in docs/planning/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 --- .coderabbit.yaml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .coderabbit.yaml diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 00000000..b7dd030d --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,36 @@ +# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json + +language: "en-US" +early_access: true +reviews: + profile: chill + high_level_summary: true + request_changes_workflow: false + review_status: true + collapse_walkthrough: false + poem: false + auto_review: + enabled: false # must be manually triggered with @coderabbit review + drafts: true # Can review drafts. Since it's manually triggered, it's fine. + auto_incremental_review: false # always review the whole PR, not just new commits + base_branches: + - main + path_filters: + - "!**/node_modules/**" + path_instructions: + - path: "**/*" + instructions: | + Focus on inconsistencies, contradictions, edge cases and serious issues. + Avoid commenting on minor issues such as linting, formatting and style issues. + When providing code suggestions, use GitHub's suggestion format: + ```suggestion + + ``` + - path: "**/*.js" + instructions: | + CLI tooling code. Check for: missing error handling on fs operations, + path.join vs string concatenation, proper cleanup in error paths. + Flag any process.exit() without error message. +chat: + auto_reply: true # Response to mentions in comments, a la @coderabbit review +