A collection of framework-agnostic tools for LLM integrations. Each tool is designed to be easily integrated into AI agents, MCP servers, or other applications.
Battle-tested: Every tool here was originally developed for and used in my AI agent. They've been extracted, cleaned up, and made framework-agnostic so you can use them in your own projects.
📋 Task
Complete CRUD task management with priorities, status tracking, and auto-assignment.
- In-memory state for session-based usage
- Framework-agnostic design
- Comprehensive test coverage
- Full Documentation
# Development
git clone https://github.com/kamillobinski/llm-tools.git
cd llm-tools
pip install -e .
# Production
pip install llm-tools
# With development dependencies
pip install -e ".[dev]"
llm-tools/
├── commons/ # Shared types and utilities
├── task/ # Task management tool
│ ├── README.md # Tool documentation
│ └── tests/ # Test suite
└── pyproject.toml # Package configuration
- Python 3.8+
- pydantic
- Install:
pip install -e ".[dev]"
- Test:
pytest
- Add tests for new features
MIT License