Skip to content

Conversation

@neeru24
Copy link
Contributor

@neeru24 neeru24 commented Jan 9, 2026

fixes #129 @abhishek-nexgen-dev

This PR improves the project’s contribution guidelines by:

  • Providing a clear step-by-step workflow for new contributors.
  • Adding best practices for commits, branching, and pull requests.
  • Including explicit Git commands for cloning, branching, committing, pushing, and syncing forks.
  • Defining coding standards, documentation practices, and community support guidance.
  • Making the guide beginner-friendly and easy to follow.

These updates aim to streamline contributions, reduce confusion for first-time contributors, and maintain consistency across the project.

No functional code changes are included; this update focuses solely on documentation.

@github-actions
Copy link

github-actions bot commented Jan 9, 2026

Thanks for creating a PR for your Issue! ☺️

We'll review it as soon as possible.
In the meantime, please double-check the file changes and ensure that all commits are accurate.

If there are any unresolved review comments, feel free to resolve them. 🙌🏼

@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @neeru24, 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 significantly refines the project's contribution guidelines to make the onboarding process smoother and more intuitive for new and existing contributors. By providing comprehensive instructions and best practices, it aims to reduce confusion, encourage consistent contributions, and ultimately enhance the overall quality and maintainability of the project's codebase through improved documentation.

Highlights

  • Enhanced Contribution Workflow: The Contributing.md file has been significantly updated to provide a clear, step-by-step guide for new contributors, including explicit Git commands for common tasks like forking, cloning, branching, committing, pushing, and opening pull requests.
  • Improved Best Practices: New sections detail best practices for writing meaningful commit messages, following coding standards, and handling documentation or configuration contributions, aiming to maintain consistency and quality across the project.
  • Community and Support Guidance: The guide now includes information on how contributors can seek help or engage with the community through GitHub Issues or Discussions, fostering a more supportive environment.
  • No Functional Code Changes: This pull request focuses solely on documentation improvements within the Contributing.md file and introduces no changes to the project's functional codebase.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

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 by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

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 pull request 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 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. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

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

  1. 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.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This PR provides a significant improvement to the project's contribution guidelines by creating a clear, step-by-step workflow that is much more comprehensive and beginner-friendly. The new structure and added details on best practices are valuable additions. I've provided a couple of suggestions to enhance clarity and consistency even further, such as including missing git commands and aligning with the project's conventional commit standards. A key high-level suggestion is to consolidate the contribution guidelines from the README.md into this Contributing.md file to create a single source of truth. Overall, this is an excellent documentation update.

Comment on lines +72 to 86
### 5. Commit Your Changes

git add .
git commit -m "Short description of the change"
Write clear, concise, and meaningful commit messages.

**Commit message best practices:**
- Use the imperative mood (e.g., “Add”, “Fix”, “Improve”)
- Keep the first line short and descriptive
- Avoid vague messages like “update” or “changes”

**Good examples:**
**Examples of good commit messages:**
- `Add dark mode toggle to navbar`
- `Fix broken route in frontend`
- `Improve error handling for login API`
- `Update README with setup instructions`

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This section on commit messages can be improved for clarity and consistency with project standards.

  1. Include Commands: For a beginner-friendly guide, it's helpful to include the git add and git commit commands.
  2. Conventional Commits: The project's README.md (lines 1624-1633) specifies using Conventional Commits. The examples here should follow that format (e.g., feat: ..., fix: ...). This will ensure consistency.

Here's a suggested update that incorporates these points.

Suggested change
### 5. Commit Your Changes
git add .
git commit -m "Short description of the change"
Write clear, concise, and meaningful commit messages.
**Commit message best practices:**
- Use the imperative mood (e.g., “Add”, “Fix”, “Improve”)
- Keep the first line short and descriptive
- Avoid vague messages like “update” or “changes”
**Good examples:**
**Examples of good commit messages:**
- `Add dark mode toggle to navbar`
- `Fix broken route in frontend`
- `Improve error handling for login API`
- `Update README with setup instructions`
### 5. Commit Your Changes
Write clear, concise, and meaningful commit messages following the [Conventional Commits](https://www.conventionalcommits.org/) specification.
```bash
git add .
git commit -m "feat: Add dark mode toggle to navbar"

Commit message best practices:

  • Use the imperative mood (e.g., “Add”, “Fix”, “Improve”) but as part of the description after the type.
  • The format should be <type>: <description>.
  • Common types include feat, fix, docs, style, refactor, test, chore.

Examples of good commit messages:

  • feat: Add dark mode toggle to navbar
  • fix: Correct broken route in frontend
  • docs: Update setup instructions in README
  • refactor: Improve error handling for login API

To avoid conflicts, regularly sync your fork with the upstream repository before starting new work.

```bash
git remote add upstream https://github.com/original-owner/LocalMind.git
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To make the guide more user-friendly and reduce potential for errors, it's best to replace the placeholder original-owner with the actual repository owner, NexGenStudioDev. This allows contributors to copy and paste the command directly.

Suggested change
git remote add upstream https://github.com/original-owner/LocalMind.git
git remote add upstream https://github.com/NexGenStudioDev/LocalMind.git

@abhishek-nexgen-dev abhishek-nexgen-dev merged commit 6df3e68 into NexGenStudioDev:master Jan 9, 2026
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Inconsistent contributing.md

2 participants