-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
docs: improve documentation and add examples #1640
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| # Contributing to PraisonAI | ||
|
|
||
| Thank you for your interest! Here's how to get started: | ||
|
|
||
| 1. Fork the repository | ||
| 2. Create a feature branch | ||
| 3. Make your changes | ||
| 4. Submit a pull request | ||
|
|
||
| ## Guidelines | ||
|
|
||
| - Follow existing code style | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| - Add tests for new features | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| - Update documentation as needed | ||
|
Comment on lines
+1
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The guide skips the information contributors most often need: how to install dependencies and set up a local dev environment, what command to run to execute the test suite, and any commit message or branch-naming conventions expected by the project. Without these, a first-time contributor will hit friction before they can even verify their change is correct, which is exactly the situation a CONTRIBUTING file should prevent. |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 'how to get started' section is missing essential steps for cloning the repository and installing dependencies. Adding these steps helps new contributors set up their environment correctly.