How to Contribute
Thank you for your interest in AIOS! Here's a guide to help you contribute to this project.
1. Get Started
Fork the repository
At first, you need to fork this copy and create your own version of repo.
Clone the repository and install the dependencies.
Installing dependencies with pip
Installing pre-commit
We strongly recommend installing pre-commit to ensure proper formatting during development
2. Developing and Testing
Create a branch
Create a new branch for developing your creative features
Make changes and testing
You can develop new features and then you need to make sure everything works as expected. Run our provided tests and make sure the existing ones go well. Your new tests are encouraged.
Run tests
Add your test code into the tests/
directory if any, then run test via pytest
Sample Output
3. Submitting Changes
Code format check
Please ensure your code is formatted correctly using pre-commit
Git commit format
We strongly recommend your git commit follows the format below
Create a Pull Request
Visit your forked AIOS repository on GitHub and click the "Compare & pull request" button to initiate the process of submitting your changes to the original repository for review and potential merging.
Choose the base branch and the compare branch (your feature branch).💡 Note that when you add new features, it is recommended to choose the (
dev
) branch and if your change does not affect original functions, you may consider choosing the (main
) branch.Write a title and describe your changes in the description. And it is recommended to select the label of the change to make it more clear.
4. Style Guide
This is the style guide determining how code should be formatted. As more code is added, this documentation will be updated.
Line Length
Each line should not exceed 80 characters.
Spaces
Each function or class is to have a space between the line and any preceding code if it is not directly associated with the function or class. For example:
Commenting
Each directory is required to describe the purpose of the directory and each file in the directory in README.md. Each file is required to have a header describing the purpose at the top. For example:
Any comments for imports should be preceded by a #
as well. Spaces should be applied as necessary.
Each function is required to have a comment right under the header which describes what it does, unless the function encompasses few lines. For example:
The same applies to classes:
Lines that are to be commented out can be marked with #
. For example:
It is not recommended to comment out lines, but if you must make sure that the purpose is understood by the reader.
Any comments for a specific line are additionally to be marked with #
:
A comment describing multiple lines in a particular function can be represented by #
as well.
5. Review and Approval
Our maintainers will have a review of that and might give some suggestions or ask for more details. After they approve, your commitment can be incorporated into AIOS!
If you need some ideas on what to get started with, take a look at our goals for the rest of this year in issues.
Last updated