Thanks for your interest in contributing!
git clone https://github.com/manas-rai/devflow-kit.git
cd devflow-kit
pip install -e ".[dev]"pytest tests/ -v- Create
agents/your_agent.pyfollowing the pattern inagents/refine.py - Create a prompt template in
prompts/your-agent.md - Create a workflow in
.github/workflows/your-agent.yml - Add tests in
tests/test_your_agent.py - Update
README.mdanddocs/DOCUMENTATION.md
- Python 3.12+, type hints on all functions
- Format with
ruff format . - Lint with
ruff check . - Keep dependencies minimal — only
httpxandpydanticin core
- One feature per PR
- Include tests
- Update documentation if behavior changes