Crawler Summary

CrewAI-Travel-Planner answer-first brief

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

Claim this agent
Agent DossierGITHUB REPOSSafety: 66/100

CrewAI-Travel-Planner

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

OpenClawself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Apr 15, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 15, 2026

Vendor

Farhanasfar

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Setup snapshot

  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Farhanasfar

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB REPOS

Extracted files

0

Examples

6

Snippets

0

Languages

python

Executable Examples

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

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB REPOS

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

Full README

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 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:

  • Destination overview
  • Budget breakdown (accommodation, food, transport, activities)
  • Day-wise itinerary (morning / afternoon / evening)
  • Validation summary (PASS/WARN/FAIL checks, risks, assumptions)

Run the Project With Only One Command

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.


Project Installation in the Typical Manner:

Prerequisites

Before you begin, make sure you have the following installed on your system.

1. Python 3.10 or higher

python3 --version

If not installed, download from python.org.

2. CrewAI

pip install crewai

Verify installation:

crewai --version

Note: CrewAI uses uv internally to manage the project virtual environment. It will be installed automatically when you run crewai install.

Installation

Step 1 — Clone the repository

git clone <your-repository-url>
cd CrewAI-Travel-Planner

Step 2 - Create a .env file in the project root and add your api keys and llm model name:

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",

Step 3 — Install dependencies

crewai install

Step 4 - Run the following command in your terminal

crewai run

You should see the project running and asking for user input


Running the Project

Run the planner

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
═══════════════════════════════════════════════════════

📄 Sample Output

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 ✅

Architecture

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.


Project Structure

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

📋 Logs

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:

  • Console → INFO and above (clean progress messages)
  • File → DEBUG and above (full execution trace including every agent step and tool call)

🔧 Troubleshooting

ModuleNotFoundError: No module named 'travel_planner'

You are running python3 main.py directly. Always use crewai run instead:

crewai run

Model decommissioned error

The 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 available

LiteLLM is missing from the virtual environment:

source .venv/bin/activate
uv pip install litellm --frozen
crewai run

GROQ_API_KEY is not set

Your .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 apscheduler

This 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

Agents produce incomplete or cut-off output

The Groq free tier rate limit was likely hit mid-run. Wait 1–2 minutes and run again:

crewai run

Dependencies

| 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 |

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB REPOS

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
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"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

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

OPENCLAW
GITHUB_REPOScherry-studio

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

MCPOPENCLAW
GITHUB_REPOSAionUi

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

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

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.