Agent Navigator is an intelligent discovery platform that indexes and organizes LLM agent examples, making it easy to find the perfect agent for your use case.
🔍 Smart Search
BM25-powered search that understands semantic queries without embeddings.
🤖 AI Recommendations
Claude-powered agent selector that recommends the best agents for your needs.
📊 Rich Filtering
Filter by category, framework, LLM provider, and complexity level.
⚡ Fast & Efficient
Lightweight design with caching, rate limiting, and cost-effective operations.
Features
- 100+ Agent Examples - Indexed from awesome-llm-apps repository
- FastAPI Backend - RESTful API with comprehensive documentation
- Streamlit UI - Interactive web interface for browsing
- Next.js Frontend - Modern SSR/SSG web application
- Static Site Export - SEO-optimized static HTML generation
Get Started
The platform is currently deploying. Check back soon or explore the API documentation:
API Endpoints
Once deployed, the API will be available at
/v1/agents with the following endpoints:
GET /v1/agents- Search agents with filtersGET /v1/agents/{id}- Get agent detailsPOST /v1/ai/select- AI-powered recommendationsPOST /v1/search- Advanced search with JSON body
Development
Run locally:
git clone https://github.com/residentialproxies/agent-recipes.git
cd agent-recipes
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
streamlit run src/app.py