From 869181e7e9a3598956b9bff493d0e27959cc2caa Mon Sep 17 00:00:00 2001 From: Rahul Devikar Date: Tue, 2 Dec 2025 14:06:58 -0800 Subject: [PATCH 1/3] Add contributing guidelines to CONTRIBUTING.md Added contributing guidelines for the Agent365-python project, including sections on code of conduct, how to contribute, development process, and licensing. --- CONTRIBUTING.md | 58 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..e3628fd8 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,58 @@ +# Contributing to Agent365-python + +First off, thank you for taking the time to contribute! 🎉 + +We welcome contributions from everyone, whether you're fixing bugs, adding new features, or improving documentation. Here are a few guidelines to help you get started. + +## Table of Contents +- [Code of Conduct](#code-of-conduct) +- [How to Contribute](#how-to-contribute) + - [Reporting Bugs](#reporting-bugs) + - [Suggesting Enhancements](#suggesting-enhancements) + - [Submitting Code Changes](#submitting-code-changes) +- [Development Process](#development-process) +- [License](#license) + +## Code of Conduct + +By participating in this project, you agree to abide by the [Code of Conduct](https://github.com/microsoft/Agent365-python/blob/main/CODE_OF_CONDUCT.md). Please be respectful and considerate to others, as we want to foster a friendly and inclusive community. + +## How to Contribute + +We appreciate any help! There are several ways you can contribute to this project: + +### Reporting Bugs +- If you find a bug, please check if it has already been reported. If not, open a new issue with a clear description of the problem and how to reproduce it. +- Provide any relevant information like logs, steps to reproduce, or screenshots to help us understand the issue better. + +### Suggesting Enhancements +- If you have an idea for a new feature or improvement, please open an issue to discuss it first. This allows us to prioritize the feature and make sure it fits with the project vision. +- Clearly describe the idea and its potential impact. + +### Submitting Code Changes +- Fork the repository and create a new branch for your feature or bugfix. +- Write clear, descriptive commit messages. +- Follow the coding style used in the project (indentation, variable names, etc.). +- If applicable, add tests that ensure your changes work as expected. +- Submit a pull request with a description of what you've done and why. +- Make sure your changes pass any automated checks or tests (e.g., CI/CD pipeline). + +## Development Process + +1. Fork the repository and clone it to your local machine. +2. Create a new branch for your changes. +3. Make the necessary changes and ensure the project works as expected. +4. Commit your changes and push them to your fork. +5. Open a pull request. Make sure to include a detailed description of what you've changed and why. + +### Code Reviews +- After you submit a pull request, the maintainers will review it. If they have any questions or requests for changes, they will provide feedback. +- Address the feedback and make any necessary changes before the pull request is merged. + +## License + +By contributing to this project, you agree that your contributions will be licensed under the same license as the project. See [LICENSE](https://github.com/microsoft/Agent365-python/blob/main/LICENSE.md) for more details. + +--- + +Thank you for contributing! 🎉 We appreciate your help in making this project better. From 66a2dd2866b5c57de48b77a5f28627945cd44d22 Mon Sep 17 00:00:00 2001 From: Rahul Devikar Date: Wed, 3 Dec 2025 12:53:34 -0800 Subject: [PATCH 2/3] Update CONTRIBUTING.md Co-authored-by: Johan Broberg --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e3628fd8..be5abd63 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -51,7 +51,7 @@ We appreciate any help! There are several ways you can contribute to this projec ## License -By contributing to this project, you agree that your contributions will be licensed under the same license as the project. See [LICENSE](https://github.com/microsoft/Agent365-python/blob/main/LICENSE.md) for more details. +By contributing to this project, you agree that your contributions will be licensed under the same license as the project. See [LICENSE](LICENSE.md) for more details. --- From abf5244d2e1b9bff746c8df97571ebb6e914cd8c Mon Sep 17 00:00:00 2001 From: Rahul Devikar Date: Wed, 3 Dec 2025 12:53:43 -0800 Subject: [PATCH 3/3] Update CONTRIBUTING.md Co-authored-by: Johan Broberg --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index be5abd63..e77845eb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,7 +15,7 @@ We welcome contributions from everyone, whether you're fixing bugs, adding new f ## Code of Conduct -By participating in this project, you agree to abide by the [Code of Conduct](https://github.com/microsoft/Agent365-python/blob/main/CODE_OF_CONDUCT.md). Please be respectful and considerate to others, as we want to foster a friendly and inclusive community. +By participating in this project, you agree to abide by the [Code of Conduct](CODE_OF_CONDUCT.md). Please be respectful and considerate to others, as we want to foster a friendly and inclusive community. ## How to Contribute