@@ -34,7 +34,9 @@ You can use this package as part of your MLOps toolkit or platform (e.g., Model
3434 - [ Workflows] ( #workflows )
3535- [ Tools] ( #tools )
3636 - [ Automation] ( #automation-1 )
37+ - [ AI Assistant: Gemini Code Assist] ( #ai-assistant-gemini-code-assist )
3738 - [ Commits: Commitizen] ( #commits-commitizen )
39+ - [ Dependabot: Dependabot] ( #dependabot-dependabot )
3840 - [ Git Hooks: Pre-Commit] ( #git-hooks-pre-commit )
3941 - [ Tasks: Just] ( #tasks-just )
4042 - [ CI/CD] ( #cicd )
@@ -287,6 +289,7 @@ format-source # format code source
287289install # run install tasks
288290install-hooks # install git hooks
289291install-project # install the project
292+ install-rulesets # install github rulesets
290293
291294[mlflow]
292295mlflow # run mlflow tasks
@@ -321,6 +324,15 @@ This sections motivates the use of developer tools to improve your coding experi
321324
322325Pre-defined actions to automate your project development.
323326
327+ # ## AI Assistant: [Gemini Code Assist](https://developers.google.com/gemini-code-assist/docs/review-github-code)
328+
329+ - **Motivations**:
330+ - Increase your coding productivity
331+ - Get code suggestions and completions
332+ - Reduce the time spent on reviewing code
333+ - **Limitations**:
334+ - Can generate wrong code, reviews, or summaries
335+
324336# ## Commits: [Commitizen](https://commitizen-tools.github.io/commitizen/)
325337
326338- **Motivations**:
@@ -332,6 +344,17 @@ Pre-defined actions to automate your project development.
332344- **Alternatives**:
333345 - Do It Yourself (DIY)
334346
347+ # ## Dependabot: [Dependabot](https://docs.github.com/en/code-security/getting-started/dependabot-quickstart-guide)
348+
349+ - **Motivations**:
350+ - Avoid security issues
351+ - Avoid breaking changes
352+ - Update your dependencies
353+ - **Limitations**:
354+ - Can break your code
355+ - **Alternatives**:
356+ - Do It Yourself (DIY)
357+
335358# ## Git Hooks: [Pre-Commit](https://pre-commit.com/)
336359
337360- **Motivations**:
0 commit comments