TopRank Skills

Home / Claw Skills / Autres / travel-itinerary-planner
Official OpenClaw rules 15%

travel-itinerary-planner

Generate complete, image-rich travel plans from trip dates and destination, including day-by-day itinerary, transportation, lodging area guidance, budget ranges, local transit notes, and risk/backup plans. Use when users ask for trip planning, vacation scheduling, route design, or requests like "input time and location" / "plan a full trip" / "图文并茂 travel itinerary."

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 travel-itinerary-planner 技能。 若已安装,则直接安装 travel-itinerary-planner 技能。

Overview

Skill Key
daiwk/travel-itinerary-planner
Author
daiwk
Source Repo
openclaw/skills
Version
-
Source Path
skills/daiwk/travel-itinerary-planner
Latest Commit SHA
5044391be1dab15aa20b17eeb9a40640c18480bb

Extracted Content

SKILL.md excerpt

# Travel Itinerary Planner

Create end-to-end travel plans from minimal user input and output a polished, image-ready itinerary in Markdown.

## Quick Start

1. Collect minimum inputs: destination, start date, end date.
2. Collect high-impact optional inputs: origin city, travelers, budget level, pace, interests, hard constraints.
3. Generate a base draft:
```bash
python scripts/build_trip_plan.py \
  --destination "Kyoto, Japan" \
  --start-date 2026-04-03 \
  --end-date 2026-04-08 \
  --origin "Shanghai, China" \
  --travelers 2 \
  --budget-level standard \
  --pace balanced \
  --focus "food,history,photo spots" \
  --cover-image "<trusted-https-cover-image-url>" \
  --image-url "<trusted-https-image-url-1>" \
  --image-url "<trusted-https-image-url-2>"
```
4. Enrich the draft with current facts and concrete bookings.

## Workflow

### 1) Confirm Inputs

Collect at least:
- Destination
- Absolute start/end dates (`YYYY-MM-DD`)

Collect when available:
- Origin city and preferred transportation
- Number of travelers and trip style (solo/couple/family/friends)
- Budget level (`economy|standard|premium`) and currency
- Pace (`relaxed|balanced|intense`)
- Interests (`food,museum,nature,shopping,...`)
- Constraints (mobility, dietary, child-friendly, no driving, etc.)

If user gives relative time (for example "next Friday"), convert to exact calendar dates before planning.

### 2) Verify Time-Sensitive Facts

Do not rely on stale assumptions for travel.
Verify:
- Weather forecast and seasonal conditions
- Attraction opening hours / closure dates
- Train/flight/ferry schedules and transfer durations
- Visa/entry policy and passport validity notes (if cross-border)
- Major local events that impact crowds, ticketing, or hotel prices

Use primary sources first (official attractions, airlines/rail operators, tourism boards).  
Use `references/research-checklist.md` as a pre-flight checklist.

### 3) Build Base Itinerary

Run `scripts/build_trip_plan.py` to generate a stru...

Related Claw Skills