Skip to content

docs: simplify contributing guide#131

Merged
bniladridas merged 1 commit intomainfrom
docs/minimal-contributing
Feb 18, 2026
Merged

docs: simplify contributing guide#131
bniladridas merged 1 commit intomainfrom
docs/minimal-contributing

Conversation

@bniladridas
Copy link
Copy Markdown
Member

Made CONTRIBUTING.md minimal - now states collaborators only with basic build instructions

@chatgpt-codex-connector
Copy link
Copy Markdown

You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard.

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello @bniladridas, 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 streamlines the project's contributing guide by significantly reducing its content. The primary goal is to clarify that contributions are currently restricted to collaborators, providing them with essential workflow and build instructions while removing extensive, detailed guidelines that are no longer relevant for external contributors.

Highlights

  • Contributing Guide Simplification: The CONTRIBUTING.md file has been drastically simplified, removing extensive guidelines on development, architecture, and testing.
  • External Contributions Policy: The guide now explicitly states that external contributions are not accepted, and the project is maintained by collaborators only.
  • Collaborator Instructions: Basic instructions for collaborators, including branching, commit conventions, preflight checks, and PR creation, have been retained.
  • Streamlined Build Instructions: The detailed prerequisites and platform-specific dependency installation steps have been removed, leaving only the core CMake build commands.

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

Changelog
  • CONTRIBUTING.md
    • Reduced the file content from 172 lines to 18 lines.
    • Updated the title from 'Contributing to Llamaware' to 'Contributing'.
    • Added a statement indicating that external contributions are not accepted.
    • Removed detailed sections on prerequisites, platform dependencies, development guidelines, code standards, architecture, commit format, pull request process, testing, issue reporting, security, getting help, and licensing.
    • Simplified the 'Building' section to only include core CMake commands for configuration, building, and testing.
Activity
  • No human activity has been recorded on this pull request yet.
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.

@github-actions github-actions Bot added the docs label Feb 18, 2026
@github-actions github-actions Bot mentioned this pull request Feb 18, 2026
@bniladridas bniladridas merged commit c28168f into main Feb 18, 2026
21 checks passed
Copy link
Copy Markdown
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 pull request simplifies the CONTRIBUTING.md file, aligning with the decision to currently not accept external contributions. While the goal of a minimal guide for collaborators is understandable, the current version omits crucial information regarding environment setup and build processes. This could create friction for new collaborators joining the project. My review includes suggestions to reintroduce this essential information in a concise manner, leveraging the existing Makefile to simplify instructions and improve consistency.

Comment thread CONTRIBUTING.md

Thank you for your interest in contributing to Llamaware. This guide outlines how to set up your environment, follow coding standards, and submit contributions.
This project is currently maintained by collaborators. External contributions are not accepted at this time.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The previous contributing guide included instructions for installing dependencies, which are essential for any new collaborator setting up their development environment. Removing this information makes onboarding more difficult. Please consider adding a 'Setup' section that points to the Makefile targets for dependency installation, as they provide a simple, automated way to get started.

Suggested change
## Setup
Before building, install the required dependencies for your platform using the `Makefile`:
- **macOS:** `make install-deps-mac`
- **Ubuntu:** `make install-deps-ubuntu`

Comment thread CONTRIBUTING.md
Comment on lines +12 to 18
## Building

```bash
# Configure
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release

# Build
cmake --build build --config Release

# Run tests
cmake --build build --target test

# Run preflight
make preflight
```
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The Makefile provides simpler, high-level targets for building and testing. The collaborator guidelines already refer to make preflight. To maintain consistency and simplify the process for developers, it would be better to use these make targets in the build instructions instead of raw cmake commands.

Suggested change
## Building
```bash
# Configure
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
# Build
cmake --build build --config Release
# Run tests
cmake --build build --target test
# Run preflight
make preflight
```
## Building
Use the `Makefile` for common development tasks:
```bash
# Build the project
make build
# Run tests
make test
# Run pre-flight checks before pushing changes
make preflight

@github-actions github-actions Bot locked and limited conversation to collaborators Feb 18, 2026
@github-actions github-actions Bot deleted the docs/minimal-contributing branch February 18, 2026 03:52
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant