Skip to content

Contributing to AgentiCraft

Please see our Contributing Guide on GitHub for detailed information on how to contribute to AgentiCraft.

Development Setup

# Clone the repository
git clone https://github.com/agenticraft/agenticraft.git
cd agenticraft

# Create virtual environment
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

# Install in development mode
pip install -e ".[dev,test,docs]"

# Install pre-commit hooks
pre-commit install

# Run tests
pytest

# Build documentation
mkdocs build

For full details, please refer to our Contributing Guide on GitHub.