Skip to content
Open
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
d729ac0
Main
aka1976mb Nov 28, 2025
0c73cf4
Merge remote-tracking branch 'refs/remotes/origin/main'
aka1976mb Nov 28, 2025
e43e3b7
feat: Add new setting for Gemini API key
aka1976mb Nov 28, 2025
4a6e1e8
feat: Add new files and modify existing ones
aka1976mb Nov 28, 2025
6a3de41
I notice there are some **duplicate settings and conflicts** in your …
aka1976mb Nov 28, 2025
2e7ed74
Merge branch 'google-gemini:main' into main
aka1976mb Nov 28, 2025
c3b9599
Merge branch 'google-gemini:main' into main
aka1976mb Nov 30, 2025
9d731c9
This commit updates the `.vscode/settings.json` file to include new c…
aka1976mb Nov 30, 2025
f421e52
feat: Update CODEOWNERS for improved maintainability
aka1976mb Nov 30, 2025
b7ed48b
Merge branch 'google-gemini:main' into main
aka1976mb Dec 1, 2025
d3eb0ab
Merge branch 'google-gemini:main' into main
aka1976mb Dec 2, 2025
536e301
Merge branch 'google-gemini:main' into main
aka1976mb Dec 2, 2025
4206232
refactor(editor): use const assertion for editor types with single so…
amsminn Oct 22, 2025
0910f73
Merge remote-tracking branch 'origin/main' into refactor/editor-types…
aka1976mb Dec 2, 2025
6e25ccc
Merge branch 'google-gemini:main' into refactor/editor-types-single-s…
aka1976mb Dec 3, 2025
4b3f60b
Merge branch 'google-gemini:main' into refactor/editor-types-single-s…
aka1976mb Dec 3, 2025
93a8b1b
Merge branch 'google-gemini:main' into refactor/editor-types-single-s…
aka1976mb Dec 6, 2025
2c8b387
Merge branch 'google-gemini:main' into refactor/editor-types-single-s…
aka1976mb Dec 7, 2025
14d797c
Update packages/core/src/core/contentGenerator.ts
aka1976mb Dec 7, 2025
63c984f
Merge branch 'google-gemini:main' into refactor/editor-types-single-s…
aka1976mb Dec 9, 2025
f45fec8
Merge branch 'main' into refactor/editor-types-single-source-of-truth
aka1976mb Dec 10, 2025
30e7715
Merge branch 'google-gemini:main' into refactor/editor-types-single-s…
aka1976mb Dec 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added -
Empty file.
9 changes: 6 additions & 3 deletions .gemini/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@
have_fun: false
code_review:
disable: false
comment_severity_threshold: 'HIGH'
max_review_comments: -1
comment_severity_threshold: 'MEDIUM' # Changed from HIGH to MEDIUM
max_review_comments: 20 # Changed from -1 to 20
pull_request_opened:
help: false
summary: true
code_review: true
ignore_patterns: []
ignore_patterns:
- "**/*.md"
- "**/package-lock.json"
- "**/dist/"
11 changes: 7 additions & 4 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# By default, require reviews from the maintainers for all files.
* @google-gemini/gemini-cli-maintainers
# By default, require reviews from the maintainers for all files

- @google-gemini/gemini-cli-maintainers

# Require reviews from the release approvers for critical files

# These patterns override the rule above

# Require reviews from the release approvers for critical files.
# These patterns override the rule above.
/package.json @google-gemini/gemini-cli-askmode-approvers
/package-lock.json @google-gemini/gemini-cli-askmode-approvers
/GEMINI.md @google-gemini/gemini-cli-askmode-approvers
Expand Down
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"vitest.disableWorkspaceWarning": true
"vitest.disableWorkspaceWarning": true,
"githubPullRequests.ignoredPullRequestBranches": ["main"],
"github.copilot.nextEditSuggestions.enabled": true
}
Empty file added Happy
Empty file.
41 changes: 26 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading