We love your input! We want to make contributing to MCP Agile Flow as easy and transparent as possible, whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
We use GitHub to host code, to track issues and feature requests, as well as accept pull requests.
- Fork the repo and create your branch from
main
. - If you've added code that should be tested, add tests.
- If you've changed APIs, update the documentation.
- Ensure the test suite passes.
- Make sure your code lints.
- Issue that pull request!
We use GitHub issues to track public bugs. Report a bug by opening a new issue.
# Clone the repository
git clone https://github.com/yourusername/mcp-agile-flow.git
cd mcp-agile-flow
# Setup virtual environment
python -m venv .venv
source .venv/bin/activate # On Windows, use `.venv\Scripts\activate`
# Install development dependencies
uv pip install -e ".[dev]"
Run the test suite with:
python -m pytest
- We use PEP 8 style guidelines
- Use type hints where possible
- Include docstrings for all public functions and classes
By contributing, you agree that your contributions will be licensed under the project's MIT License.