Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
AI Travel Planner built using Crew AI. AI Travel Planner A multi-agent AI-powered travel planning system built with **CrewAI**, **Groq LLM**, and **Serper Dev API**. Give it a destination, dates, budget, and preferences — it returns a complete travel plan with destination research, budget breakdown, day-wise itinerary, and a validation summary. --- Project Overview The planner uses **4 specialised AI agents** that work sequentially, each passing their out Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
CrewAI-Travel-Planner is best for crewai, multi-agent workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB REPOS, runtime-metrics, public facts pack
AI Travel Planner built using Crew AI. AI Travel Planner A multi-agent AI-powered travel planning system built with **CrewAI**, **Groq LLM**, and **Serper Dev API**. Give it a destination, dates, budget, and preferences — it returns a complete travel plan with destination research, budget breakdown, day-wise itinerary, and a validation summary. --- Project Overview The planner uses **4 specialised AI agents** that work sequentially, each passing their out
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Farhanasfar
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Setup snapshot
Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Farhanasfar
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
python
bash
git clone <your-repository-url> cd CrewAI-Travel-Planner
ini
MODEL=groq/meta-llama/llama-4-scout-17b-16e-instruct GROQ_API_KEY=gsk_95PDP7Agkwrsf------b3FYNSrgNtsabEPu8ipKM0hdWbPz SERPER_API_KEY=295c2-------87790b833cd6d9f151eea117
python
def _get_llm() -> LLM:
"""
CrewAI LLM pointed at Groq via LiteLLM.
"""
api_key = os.getenv("GROQ_API_KEY", "")
if not api_key:
log.error("GROQ_API_KEY is not set.")
raise EnvironmentError(
"GROQ_API_KEY is missing. Add it to the .env file"
)
return LLM(
model="groq/meta-llama/llama-4-scout-17b-16e-instruct",
api_key=api_key,
temperature=0.3,
)text
model="groq/meta-llama/llama-4-scout-17b-16e-instruct",
bash
./run.sh
bash
python3 --version
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB REPOS
Editorial quality
ready
AI Travel Planner built using Crew AI. AI Travel Planner A multi-agent AI-powered travel planning system built with **CrewAI**, **Groq LLM**, and **Serper Dev API**. Give it a destination, dates, budget, and preferences — it returns a complete travel plan with destination research, budget breakdown, day-wise itinerary, and a validation summary. --- Project Overview The planner uses **4 specialised AI agents** that work sequentially, each passing their out
A multi-agent AI-powered travel planning system built with CrewAI, Groq LLM, and Serper Dev API. Give it a destination, dates, budget, and preferences — it returns a complete travel plan with destination research, budget breakdown, day-wise itinerary, and a validation summary.
The planner uses 4 specialised AI agents that work sequentially, each passing their output to the next:
| Agent | Role | Tools Used | |---|---|---| | Destination Researcher | Finds attractions, culture, tips | Serper Web Search | | Budget Planner | Estimates costs per category | Serper Web Search | | Itinerary Designer | Builds day-by-day plan | LLM only (uses prior context) | | Validation Agent | Checks consistency & feasibility | LLM only (reviews all outputs) |
Input: Destination, start date, end date, budget (USD), preferences (optional)
Output: A structured Markdown file saved to /output/ containing:
What You Need: An api key from https://serper.dev/api-keys, the LLM Model name and the API_KEY.
1. Clone the Project
git clone <your-repository-url>
cd CrewAI-Travel-Planner
2. Then create a .env file and add the LLM MODEL and API_KEYS
Example:
MODEL=groq/meta-llama/llama-4-scout-17b-16e-instruct
GROQ_API_KEY=gsk_95PDP7Agkwrsf------b3FYNSrgNtsabEPu8ipKM0hdWbPz
SERPER_API_KEY=295c2-------87790b833cd6d9f151eea117
You also need to add your LLM Model in crew.py file, line: 33
def _get_llm() -> LLM:
"""
CrewAI LLM pointed at Groq via LiteLLM.
"""
api_key = os.getenv("GROQ_API_KEY", "")
if not api_key:
log.error("GROQ_API_KEY is not set.")
raise EnvironmentError(
"GROQ_API_KEY is missing. Add it to the .env file"
)
return LLM(
model="groq/meta-llama/llama-4-scout-17b-16e-instruct",
api_key=api_key,
temperature=0.3,
)
Add your model name here:
model="groq/meta-llama/llama-4-scout-17b-16e-instruct",
3. Then run the following command in the terminal:
./run.sh
You should see the project running and asking for user input
<img width="731" height="251" alt="run" src="https://github.com/user-attachments/assets/c76da812-3771-47d9-a5ff-3226508cadf3" />You may see an error saying
litellm[proxy]is not installed, you can ignore this error as the project runs successfully without it.
Before you begin, make sure you have the following installed on your system.
python3 --version
If not installed, download from python.org.
pip install crewai
Verify installation:
crewai --version
Note: CrewAI uses
uvinternally to manage the project virtual environment. It will be installed automatically when you runcrewai install.
git clone <your-repository-url>
cd CrewAI-Travel-Planner
MODEL=groq/meta-llama/llama-4-scout-17b-16e-instruct
GROQ_API_KEY=gsk_95PDP7Agkwrsf------b3FYNSrgNtsabEPu8ipKM0hdWbPz
SERPER_API_KEY=295c2-------87790b833cd6d9f151eea117
Also update the model name in the crew.py file:
model="groq/meta-llama/llama-4-scout-17b-16e-instruct",
crewai install
crewai run
You should see the project running and asking for user input
crewai run
You will be prompted to enter your trip details:
═══════════════════════════════════════════════════════
AI Travel Planner
═══════════════════════════════════════════════════════
Destination (city / country): Tokyo, Japan
Start date (YYYY-MM-DD): 2025-06-10
End date (YYYY-MM-DD): 2025-06-17
Total budget in USD (e.g. 2000): 3000
Preferences (optional — e.g. vegetarian, no crowds): vegetarian
After confirming, the agents will start working. This typically takes 3–8 minutes depending on the destination and number of days.
┌──────────────────────────────────────────────────┐
│ Trip Summary │
│ Destination : Tokyo, Japan │
│ Dates : 2025-06-10 → 2025-06-17 │
│ Duration : 7 days │
│ Budget : $3,000.00 USD │
│ Preferences : vegetarian │
└──────────────────────────────────────────────────┘
▶ Start planning? (y/n): y
🚀 Starting AI agents... (this may take a few minutes)
When complete:
═══════════════════════════════════════════════════════
✅ Travel plan generated successfully!
📄 Saved to: output/travel_plan_tokyo_japan_20250610_143022.md
═══════════════════════════════════════════════════════
The generated Markdown file in /output/ will look like:
# Travel Plan: Tokyo, Japan
## Trip Overview
| Field | Details |
|-------------|---------------|
| Destination | Tokyo, Japan |
| Duration | 7 days |
| Budget | $3,000.00 USD |
## Destination Research
Top attractions, local culture, practical tips, best areas to stay...
## Budget Breakdown
| Category | Cost |
|---------------|-----------|
| Accommodation | $840.00 |
| Food | $350.00 |
| Transport | $200.00 |
| Activities | $300.00 |
| Total | $1,690.00 ✅ Within Budget |
## 📅 Day-wise Itinerary
Day 1 — Arrival & Shinjuku
- Morning: Arrive at Narita, check in (~$0)
- Afternoon: Explore Shinjuku Gyoen (~$5)
- Evening: Dinner at local ramen restaurant (~$15)
...
## ✅ Validation Summary
- Budget Alignment: PASS
- Scheduling Feasibility: PASS
- Consistency Check: PASS
- Overall Verdict: APPROVED ✅
User Input (CLI)
│
▼
┌─────────────────────────────────────────────────────┐
│ Crew Manager │
│ │
│ Task 1: Destination Researcher ── Serper API │
│ │ │
│ Task 2: Budget Planner ── Serper API │
│ │ │
│ Task 3: Itinerary Designer ── LLM only │
│ │ │
│ Task 4: Validation Agent ── LLM only │
└─────────────────────────────────────────────────────┘
│
▼
output/travel_plan_<destination>_<timestamp>.md
Each task passes its output as context to the next task — no information is lost between agents.
CrewAI-Travel-Planner/
│
├── pyproject.toml # Project metadata and dependencies
├── uv.lock # Locked dependency versions (commit this)
├── .env # Your API keys (never commit this)
├── .env.example # API key template
├── .gitignore
├── README.md
│
├── knowledge/ # Reserved for CrewAI knowledge sources
├── logs/ # Auto-created — one timestamped .log per run
├── output/ # Auto-created — Markdown travel plans saved here
│
└── src/
└── travel_planner/
│
├── __init__.py
├── main.py # CLI prompts + calls run_travel_crew()
├── crew.py # @agent / @task / @crew decorators + output writer
├── logger.py # Centralised logging (console + file)
│
├── config/
│ ├── agents.yaml # Agent definitions (role, goal, backstory)
│ └── tasks.yaml # Task definitions (description, expected_output)
│
└── tools/
├── __init__.py
├── serper_tool.py # Serper Dev API wrapper
└── calculator_tool.py # Budget calculator utility
Every run creates a timestamped log file in /logs/:
# View the latest log
cat logs/travel_planner_*.log
# Follow a live run in real time
tail -f logs/travel_planner_*.log
Log levels:
ModuleNotFoundError: No module named 'travel_planner'You are running python3 main.py directly. Always use crewai run instead:
crewai run
Model decommissioned errorThe Groq model name is outdated. Open src/travel_planner/crew.py and update:
model="groq/llama3-8b-8192" # ❌ old
model="groq/llama-3.3-70b-versatile" # ✅ new
Check currently available models at console.groq.com/docs/models.
Fallback to LiteLLM is not availableLiteLLM is missing from the virtual environment:
source .venv/bin/activate
uv pip install litellm --frozen
crewai run
GROQ_API_KEY is not setYour .env file is missing or the key is not filled in:
cat .env
Make sure both keys have real values and not the placeholder text.
ImportError: Missing dependency apschedulerThis is a harmless warning from litellm's proxy module — your project does not use the proxy. The agents will still run correctly. To suppress the warning, add this to your .env:
LITELLM_LOG=ERROR
The Groq free tier rate limit was likely hit mid-run. Wait 1–2 minutes and run again:
crewai run
| Package | Purpose |
|---|---|
| crewai | Multi-agent framework — includes LiteLLM for Groq LLM connectivity |
| requests | HTTP calls to Serper Dev API for web search |
| python-dotenv | Loads API keys from .env file at runtime |
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/snapshot"
curl -s "https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/contract"
curl -s "https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_REPOS",
"generatedAt": "2026-04-17T00:12:50.164Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "crewai",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "multi-agent",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:crewai|supported|profile capability:multi-agent|supported|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Farhanasfar",
"href": "https://github.com/FarhanAsfar/CrewAI-Travel-Planner",
"sourceUrl": "https://github.com/FarhanAsfar/CrewAI-Travel-Planner",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T06:04:38.749Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T06:04:38.749Z",
"isPublic": true
},
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/crewai-farhanasfar-crewai-travel-planner/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to CrewAI-Travel-Planner and adjacent AI workflows.