Thank you for your interest in contributing to the Aden Agent Framework! This document provides guidelines and information for contributors.
By participating in this project, you agree to abide by our Code of Conduct.
To prevent duplicate work and respect contributors' time, we require issue assignment before submitting PRs.
- Find an Issue: Browse existing issues or create a new one
- Claim It: Leave a comment (e.g., "I'd like to work on this!")
- Wait for Assignment: A maintainer will assign you within 24 hours
- Submit Your PR: Once assigned, you're ready to contribute
Note: PRs for unassigned issues may be delayed or closed if someone else was already assigned.
To keep the project moving, issues with no activity for 5 days (no PR or status update) will be unassigned. If you need more time, just drop a quick comment!
You may submit PRs without prior assignment for:
- Documentation: Fixing typos or clarifying instructions
- Micro-fixes: Minor tweaks or obvious linting errors
- Small Refactors: Tiny improvements that don't change core logic
If a high-quality PR is submitted for a "stale" assigned issue (no activity for 7+ days), we may proceed with the submitted code.
- Fork the repository
- Clone your fork:
git clone https://github.com/YOUR_USERNAME/hive.git - Create a feature branch:
git checkout -b feature/your-feature-name - Make your changes
- Run tests:
PYTHONPATH=core:exports python -m pytest - Commit your changes following our commit conventions
- Push to your fork and submit a Pull Request
# Install Python packages
./scripts/setup-python.sh
# Verify installation
python -c "import framework; import aden_tools; print('✓ Setup complete')"
# Install Claude Code skills (optional)
./quickstart.shWe follow Conventional Commits:
type(scope): description
[optional body]
[optional footer]
Types:
feat: New featurefix: Bug fixdocs: Documentation changesstyle: Code style changes (formatting, etc.)refactor: Code refactoringtest: Adding or updating testschore: Maintenance tasks
Examples:
feat(auth): add OAuth2 login support
fix(api): handle null response from external service
docs(readme): update installation instructions
- Get assigned to the issue first (see Issue Assignment Policy)
- Update documentation if needed
- Add tests for new functionality
- Ensure all tests pass
- Update the CHANGELOG.md if applicable
- Request review from maintainers
Follow the same convention as commits:
feat(component): add new feature description
core/- Core framework (agent runtime, graph executor, protocols)tools/- MCP Tools Package (19 tools for agent capabilities)exports/- Agent packages and examplesdocs/- Documentationscripts/- Build and utility scripts.claude/- Claude Code skills for building/testing agents
- Use Python 3.11+ for all new code
- Follow PEP 8 style guide
- Add type hints to function signatures
- Write docstrings for classes and public functions
- Use meaningful variable and function names
- Keep functions focused and small
# Run all tests for the framework
cd core && python -m pytest
# Run all tests for tools
cd tools && python -m pytest
# Run tests for a specific agent
PYTHONPATH=core:exports python -m agent_name testFeel free to open an issue for questions or join our Discord community.
Thank you for contributing!