The lightweight framework for building agents
# Add to your Claude Code skills
git clone https://github.com/ArtificialAnalysis/StirrupStirrup is a lightweight framework, or starting point template, for building agents. It differs from other agent frameworks by:
Note: This is the Python implementation, StirrupJS is the Typescript implementation.
No comments yet. Be the first to share your thoughts!
Tool interface allows easy tool definition# Core framework
pip install stirrup # or: uv add stirrup
# With all optional components
pip install 'stirrup[all]' # or: uv add 'stirrup[all]'
# Individual extras
pip install 'stirrup[litellm]' # or: uv add 'stirrup[litellm]'
pip install 'stirrup[docker]' # or: uv add 'stirr...