Welcome Contributors
Swarms is an enterprise-grade, production-ready multi-agent orchestration framework built by the community, for the community. We believe that collaborative development is the key to pushing the boundaries of what’s possible with multi-agent AI. Your contributions are not only welcome—they are essential to our mission to accelerate the transition to a fully autonomous world economy.Why Contribute?
By joining us, you have the opportunity to:- Work on the Frontier of Agents: Shape the future of autonomous agent technology and help build a production-grade, open-source framework
- Join a Vibrant Community: Collaborate with a passionate and growing group of agent developers, researchers, and enthusiasts
- Make a Tangible Impact: Whether you’re fixing a bug, adding a new feature, or improving documentation, your work will be used in real-world applications
- Learn and Grow: Gain hands-on experience with advanced AI concepts and strengthen your software engineering skills
Areas Needing Contributions
We have several areas where contributions are particularly welcome:Writing Tests
- Goal: Increase test coverage to ensure the library’s robustness
- Tasks:
- Write unit tests for existing code in
swarms/ - Identify edge cases and potential failure points
- Ensure tests are repeatable and independent
- Add integration tests for swarm orchestration methods
- Write unit tests for existing code in
Improving Documentation
- Goal: Maintain clear and comprehensive documentation for users and developers
- Tasks:
- Update docstrings to reflect any changes
- Add examples and tutorials in the
examples/directory - Improve or expand the content in the
docs/directory - Create video tutorials and walkthroughs
Adding New Swarm Architectures
- Goal: Provide new multi-agent orchestration methods
- Current Architectures:
Enhancing Agent Capabilities
- Goal: Improve existing agents and add new specialized agents
- Areas of Focus:
- Financial analysis agents
- Medical diagnosis agents
- Code generation and review agents
- Research and analysis agents
- Creative content generation agents
Removing Defunct Code
- Goal: Clean up and remove bad code to improve maintainability
- Tasks:
- Identify unused or deprecated code
- Remove duplicate implementations
- Simplify complex functions
- Update outdated dependencies
How to Contribute
Reporting Issues
If you find any bugs, inconsistencies, or have suggestions for enhancements, please open an issue on GitHub:- Search Existing Issues: Before opening a new issue, check if it has already been reported
- Open a New Issue: If it hasn’t been reported, create a new issue and provide detailed information
- Title: A concise summary of the issue
- Description: Detailed description, steps to reproduce, expected behavior, and any relevant logs or screenshots
- Label Appropriately: Use labels to categorize the issue (e.g., bug, enhancement, documentation)
Good First Issues
The easiest way to contribute is to pick any issue with thegood first issue tag. These are specifically designed for new contributors:
- Good First Issues
- Contributing Board - Participate in roadmap discussions!
Submitting Pull Requests
We welcome pull requests (PRs) for bug fixes, improvements, and new features. Please follow these guidelines:- Fork the Repository: Create a personal fork of the repository on GitHub
-
Clone Your Fork: Clone your forked repository to your local machine
-
Create a New Branch: Use a descriptive branch name
- Make Your Changes: Implement your code, ensuring it adheres to the coding standards
- Add Tests: Write tests to cover your changes
-
Commit Your Changes: Write clear and concise commit messages
-
Push to Your Fork:
-
Create a Pull Request:
- Go to the original repository on GitHub
- Click on “New Pull Request”
- Select your branch and create the PR
- Provide a clear description of your changes and reference any related issues
- Respond to Feedback: Be prepared to make changes based on code reviews
It’s recommended to create small and focused PRs for easier review and faster integration.
Coding Standards
To maintain code quality and consistency, please adhere to the following standards:Type Annotations
- Mandatory: All functions and methods must have type annotations
-
Example:
-
Benefits:
- Improves code readability
- Helps with static type checking tools
Docstrings and Documentation
- Docstrings: Every public class, function, and method must have a docstring following the Google Python Style Guide or NumPy Docstring Standard
-
Content:
- Description: Briefly describe what the function or class does
- Args: List and describe each parameter
- Returns: Describe the return value(s)
- Raises: List any exceptions that are raised
-
Example:
- Documentation: Update or create documentation pages if your changes affect the public API
Testing
- Required: All new features and bug fixes must include appropriate unit tests
-
Framework: Use
unittest,pytest, or a similar testing framework -
Test Location: Place tests in the
tests/directory, mirroring the structure ofswarms/ - Test Coverage: Aim for high test coverage to ensure code reliability
-
Running Tests:
Code Style
- PEP 8 Compliance: Follow PEP 8 style guidelines
- Linting Tools: Use
flake8,black, orpylintto check code style - Consistency: Maintain consistency with the existing codebase
Development Resources
Documentation
- Official Documentation: docs.swarms.world
- Installation Guide: Installation
- Quickstart Guide: Get Started
- Agent Architecture: Agent Internal Mechanisms
- Agent API: Agent API
Examples and Tutorials
- Basic Examples: examples/
- Agent Examples: examples/single_agent/
- Multi-Agent Examples: examples/multi_agent/
- Tool Examples: examples/tools/
API Reference
- Core Classes: swarms/structs/
- Agent Implementations: swarms/agents/
- Tool Implementations: swarms/tools/
- Utility Functions: swarms/utils/
License
By contributing to Swarms, you agree that your contributions will be licensed under the Apache License 2.0.Get Help
If you have any questions or need assistance, please feel free to:- Open an issue on GitHub
- Join our Discord community
- Reach out to the maintainers
- Schedule an onboarding session
Thank You
Thank you for contributing to Swarms! Your efforts help make this project better for everyone.