Voyage
Skill indigokarasu/voyage
Travel planning, itinerary construction, reservation management, lodging search, and flight search. Parallel lodging search across Expedia, Marriott Bonvoy, Marriott AI, Google Hotels, and 1Stay. Flight search via Google Flights. Uses Sift for destination research and optionally GoPlaces for location enrichment. NOT for generic travel inspiration, visa advice, or points-only optimization.From its SKILL.md
npx -y skills add indigokarasu/voyageAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
13.5 KB, ~2.7k tokens by cl100k_base, as published. Nobody here has run it
Interactive Menu
When invoked interactively, present a two-level menu. See references/interactive-menu.md for the full menu structure.
When to Use
- Travel planning and itinerary construction
- Flight, hotel, and activity research
- Booking coordination across multiple providers
- Travel document and requirement checking
- When any skill needs travel-related data
- Plan a multi-day trip with itinerary; build or optimize a travel itinerary
- Search for flights (one-way, round-trip, multi-city); find cheapest dates to fly
- Recommend lodging, restaurants, or activities for a trip
- Manage reservation planning and checklists
When NOT to Use
- Calendar management (use Sands)
- Restaurant reservations (use Spot)
- General web research (use Sift)
- Travel insurance or financial planning
- Generic travel inspiration with no planning intent
- Points-only optimization (use Rally)
- Visa, customs, or medical-travel compliance as primary task
Voyage
Voyage builds complete, constraint-aware travel itineraries — taking a destination, dates, budget, dietary preferences, and pace, then assembling lodging, dining, and activity recommendations into a logistics-optimized plan that is ready for reservation without auto-booking anything. It never presents uncertain operating hours or availability as confirmed fact, and surfaces cost implications throughout so the plan remains honest about what it actually knows.
Responsibility boundary
Voyage owns travel planning, itinerary construction, and reservation management.
Voyage does not own: web research (Sift), preference persistence (Taste), communications (Dispatch).
Lodging search
When the user needs lodging recommendations, all configured sources fire in parallel. Results are merged into a unified comparison table.
| Source | Provides | Requires |
|---|---|---|
| Expedia web | Hotel/package search, total-cost breakdown | None — always available |
| Marriott Strider MCP | Real Bonvoy inventory, award nights, elite upgrades, mobile key | mcp-marriott installed + Bonvoy OAuth login |
| Marriott AI / FlyAI | Package bundling, real-time pricing, POI enrichment | None; FLYAI_API_KEY optional for enhanced results |
| Google Hotels | Structured results table (price/rating/amenities), search-only | agent-browser CLI |
| 1Stay | Real hotel booking with confirmation numbers, loyalty program eligible, 300K+ properties in 140+ countries | MCP connector 1stay configured (Streamable HTTP) |
| Sift | Destination info, activities, local knowledge, anything platforms don't cover | Sift skill installed |
Results ranked by: total real cost → loyalty/points value → cancellation flexibility → location fit.
See references/lodging-sources.md for per-source patterns and failure modes.
GoPlaces cooperation (optional): If ocas-goplaces is installed, Voyage calls it to resolve ambiguous location input before search (geocoding, distance checks, neighborhood context). If not installed, Voyage surfaces unresolved location ambiguity to the user rather than guessing. Voyage checks for GoPlaces at runtime using the platform skill registry.
Total cost rule: Always surface headline price + taxes + mandatory fees + cancellation flexibility before recommending. Never present a listing price as booking-final. See references/total-cost.md.
Booking gate rule: Never present an option as "ready to book" without: price re-check complete, cancellation terms stated, and explicit user approval. See references/booking-gates.md.
Flight search
When the user needs flight options, Voyage uses the fli library to query Google Flights data directly. No API key or browser required.
For quick searches, use the bundled script:
/usr/local/lib/hermes-agent/venv/bin/python3 ~/.hermes/skills/ocas-voyage/scripts/flight_search.py SFO JFK 2026-06-16
/usr/local/lib/hermes-agent/venv/bin/python3 ~/.hermes/skills/ocas-voyage/scripts/flight_search.py SFO LGA 2026-06-16 SFO 2026-06-18 --limit 5
See references/flight-search.md for the full fli API calling convention (including common pitfalls) and references/flights.md for date search, multi-airport, and multi-city patterns.
Ontology types
Voyage works with these types from spec-ocas-ontology.md:
- Place — venues, airports, hotels, restaurants, attractions. Extracted during destination research and itinerary construction.
- Concept/Event — trips and travel events (departure, arrival, check-in, activity). Stored in itinerary records.
- Concept/Action — booking actions (reserved, cancelled, modified). Recorded in Action Journals.
- Entity/Person — travel companions mentioned during trip planning.
Voyage maintains its own trip and itinerary state in {agent_root}/commons/data/ocas-voyage/. Entity observations are recorded in journal outputs for downstream Chronicle ingestion.
Commands
voyage.plan.trip— create a full trip plan from destination, dates, and constraintsvoyage.recommend.lodging— parallel lodging search across Expedia, Marriott Strider, Marriott AI, Google Hotels, and 1Stay. Returns unified comparison table with total-cost breakdown and booking-gate summary.voyage.recommend.flights— search Google Flights for one-way, round-trip, multi-city, or date-range queries. Returns structured flight options with pricing, timing, and airline details.voyage.recommend.food— restaurant recommendations based on route and preferencesvoyage.recommend.activities— activity recommendations based on interests and logisticsvoyage.optimize.itinerary— optimize an existing itinerary for feasibility and logisticsvoyage.status— current plan state, pending reservations, open decisionsvoyage.journal— write journal for the current run; called at end of every runvoyage.update— pull latest from GitHub source; preserves journals and data
Workflow
The Voyage pipeline follows: research → search → compare → recommend → persist.
- Research destination via Sift (example: "best neighborhoods in Lisbon for food lovers")
- Search lodging in parallel across all providers
- Search flights via Google Flights
- Compare options with total-cost breakdown
- Recommend with evidence-linked rationale (because each recommendation names the specific attributes that justify it)
- Persist plan state and write journal
Run completion
After every Voyage command:
- Persist plan state, recommendations, and reservation details to local files
- Log material decisions to
decisions.jsonl - Write journal via
voyage.journal
Invariants
- Never present uncertain operating hours or availability as confirmed
- Respect dietary constraints in all food recommendations
- Budget awareness throughout — surface cost implications
- Reservation-ready means actionable, not auto-booked (unless explicitly enabled)
Error Handling
| Failure | Detection | Response |
|---|---|---|
| Lodging source unavailable | API timeout or error from Expedia/Marriott/Google | Skip source; continue with remaining sources; log warning |
| Flight search failure | fli library raises exception or returns empty | Report error; suggest manual Google Flights check |
| Docker unavailable (Inception) | Docker daemon not running | Log degraded: docker; return error with diagnostic info |
| GoPlaces unavailable | Skill registry check fails | Surface location ambiguity to user; do not guess |
| Google Places API unavailable | API key missing or quota exceeded | Surface warning; ask for manual estimate |
Storage layout
See references/storage-and-config.md for the directory structure and default config.json.
OKRs
See references/okrs.md.
Optional skill cooperation
- Sift — all open web research: destination info, restaurant picks, activity recommendations, local knowledge. Voyage delegates to Sift via Sift's search stack; does not do raw web searches itself.
- GoPlaces (
ocas-goplaces) — location enrichment: geocoding, distance-to-airport/center, neighborhood context, disambiguation of ambiguous location input. Check at runtime:platform skill registry query | grep goplaces. If not installed, flag ambiguity to user. - Taste — preference-aware recommendations (read-only)
- Weave — trip companion context from social graph (read-only)
- Chronicle — entity observations emitted via journal signal payloads
Journal outputs
Action Journal — all planning, recommendation, and reservation runs.
When entities are encountered during a run, include structured entity observations in decision.payload:
entities_observed— list of entities encountered (Place, Concept/Event, Concept/Action, Entity/Person), each with type, name, and contextrelationships_observed— connections between entities (e.g., a person associated with a trip, a restaurant located in a destination)preferences_observed— user preferences inferred from planning choices (e.g., budget range, dietary needs, pace preference)
Each entity observation must include a user_relevance field:
user— entity is directly related to the user's world (destinations, hotels, companions, reservations). Most Voyage entities areuser-relevant since they represent the user's actual travel plans and destinations.agent_only— entity encountered incidentally (e.g., a landmark mentioned only as a routing waypoint, not as a destination)unknown— relevance is unclear
Initialization
On first invocation of any Voyage command, run voyage.init. See references/initialization.md for the full 10-step procedure including Marriott MCP setup, Google Hotels setup, flights library install, optional credentials, and GoPlaces check.
Background tasks
| Job name | Mechanism | Schedule | Command |
|---|---|---|---|
voyage:update | cron | 0 0 * * * (midnight daily) | voyage.update |
# Task declared in SKILL.md frontmatter metadata.{platform}.cron
Self-update
voyage.update pulls the latest package from the source: URL in frontmatter. Runs silently — no output unless the version changed or an error occurred. See references/self-update.md for the full 7-step procedure.
Visibility
public
Gotchas
- GoPlaces is optional, not required — If
ocas-goplacesis not installed, Voyage surfaces unresolved location ambiguity to the user rather than guessing. The skill works normally but location resolution depends on user input. - Total cost rule is mandatory — Always surface headline price + taxes + mandatory fees + cancellation flexibility before recommending. Presenting a listing price as booking-final violates the booking gate rule.
- Flight prices are volatile — Always include an "as of" timestamp in flight search results. Prices change frequently and are never guaranteed. The
flilibrary queries Google Flights in real-time. - Multi-city searches may time out — For complex multi-leg itineraries, search legs individually and combine results rather than using a single multi-city query.
- Reference files are authoritative over SKILL.md — If a concept is described in both SKILL.md and a reference file, the reference file wins. Always read the relevant reference before executing a workflow.
Support File Map
| File | When to read |
|---|---|
references/voyage_schemas.md | Before creating plans, itineraries, or reservations; when validating data structures |
references/itinerary_constraints.md | Before constraint application or optimization; when checking feasibility rules |
references/recommendation_style.md | Before generating recommendations; when checking tone and format guidelines |
references/journal.md | Before calling voyage.journal; at end of every run |
references/flights.md | Before any flight search; when checking API patterns, airport resolution, or failure modes |
references/lodging-sources.md | Before lodging search; when checking per-source patterns and failure modes |
references/flight-search.md | Before any flight search; when checking API patterns, airport resolution, or failure modes |
references/storage-and-config.md | When inspecting or configuring the on-disk data files and default config |
references/okrs.md | When reviewing OKR definitions or scoring skill performance |
references/initialization.md | On first use; Marriott MCP setup, flights library install, GoPlaces check |
references/self-update.md | When running voyage.update; full 7-step update procedure |
scripts/flight_search.py | Reusable flight search script; call via venv Python for quick one-off searches |
Update command
This skill self-updates every 24 hours via:
voyage.update
This pulls the latest version from GitHub. Voyage has no background operational tasks, so there is nothing to restart.
What ships with it: 24 files
248.4 KB alongside SKILL.md, 1 of them executable
assets/
- readme/hero.jpg203.9 KB
evals/
- evals.json520 B
references/
- booking-gates.md1.2 KB
- flight-search.md4.7 KB
- flights.md7.6 KB
- initialization.md2.3 KB
- interactive-menu.md1.8 KB
- itinerary_constraints.md1.5 KB
- journal.md1.2 KB
- lodging-sources.md5.2 KB
- okrs.md627 B
- recommendation_style.md1.5 KB
- self-update.md1017 B
- storage-and-config.md571 B
- total-cost.md1.4 KB
- voyage_schemas.md2.1 KB
scripts/
- flight_search.pyruns3.0 KB
- CHANGELOG.md3.5 KB
- config.json88 B
- config.yaml25 B
- evals.json985 B
- .gitignore30 B
- LICENSE1.0 KB
- README.md2.8 KB