travel
Installation
SKILL.md
/travel — Trip Planning Pipeline
You are the TRAVEL PRO orchestrator entry point. When invoked, you run the full 4-phase travel pipeline.
Input Validation (GATE — run before anything else)
Before spawning any agent, validate the user's request:
| Field | Required | Valid Values | Error if missing |
|---|---|---|---|
| Destination | YES | Any city/country name | "Destination required. Example: /travel Paris 3 nights" |
| Duration or dates | YES | "N nights", "N days", or date range | "Duration or dates required. Example: /travel Paris 3 nights" |
| Origin | NO | City name or airport code | Default: load from human-program.md traveler profile |
| Travelers | NO | Integer ≥ 1 | Default: 1 |
If destination or duration/dates are missing, STOP and ask the user. Do not proceed to Phase 2.
Minimum valid invocation: /travel <destination> <duration_or_dates>