travel-itinerary-data

travel-itinerary-data is a skill for Claude Code, Codex from cxcscmu/SkillLearnBench. It costs 31 tokens per session (682 once invoked), scanned A, original, MIT.

A guide for finding and filtering travel data such as cities, restaurants, lodging, attractions, and distances from provided files.

In plain words
What is it for?
Use it to search datasets, compare routes, find restaurants and attractions, and filter accommodations by city and rules.
Why use it?
It helps build an itinerary that satisfies constraints such as valid locations, pet-friendly accommodation, and travel distance limits.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to search datasets, compare routes, find restaurants and attractions, and filter accommodations by city and rules.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cxcscmu/skilllearnbench/travel-itinerary-data
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add cxcscmu/SkillLearnBench --skill travel-itinerary-data
Clone the repo
git clone --depth 1 https://github.com/cxcscmu/SkillLearnBench

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for travel-itinerary-data

README.md
[![agentmods](https://agentmods.dev/badge/skills/cxcscmu/skilllearnbench/travel-itinerary-data/github.svg)](https://agentmods.dev/skills/cxcscmu/skilllearnbench/travel-itinerary-data)
Your own site
<a href="https://agentmods.dev/skills/cxcscmu/skilllearnbench/travel-itinerary-data"><img src="https://agentmods.dev/badge/skills/cxcscmu/skilllearnbench/travel-itinerary-data/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for travel-itinerary-data

Your own site · 80×15
<a href="https://agentmods.dev/skills/cxcscmu/skilllearnbench/travel-itinerary-data"><img src="https://agentmods.dev/badge/skills/cxcscmu/skilllearnbench/travel-itinerary-data.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 682 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00031 $0.00682
Opus 5 $0.00015 $0.00341
Sonnet 5 $0.00006 $0.00136
Haiku 4.5 $0.00003 $0.00068

Measured 5d ago against content hash e6604c304663, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

travel-itinerary-data scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/b1-one-shot-claude-sonnet-4-6/travel-planning/travel-itinerary-data/SKILL.md · 66 lines

How it starts

The opening of the file, as written. The whole thing — 66 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Travel Itinerary Data Querying

Dataset locations (relative to /app/data/)

File Key columns
background/citySet_with_states.txt city TAB state — enumerate valid cities
restaurants/clean_restaurant_2022.csv id, Name, City, Cuisines, Average Cost, Aggregate Rating
accommodations/clean_accommodations_2022.csv id, NAME, room type, price, minimum nights, review rate number, house_rules, maximum occupancy, city
attractions/attractions.csv Name, Latitude, Longitude, Address, Phone, Website, City
googleDistanceMatrix/distance.csv origin, destination, cost, duration, distance

Common grep patterns

Find cities in a state

grep -i "ohio" data/background/citySet_with_states.txt
# → Toledo, Cleveland, Dayton, Columbus, Akron, Cincinnati

Find distances between two cities

grep -i "^Minneapolis," data/googleDistanceMatrix/distance.csv | grep -i "Cleveland"
# → Minneapolis,Cleveland,,11 hours 14 mins,1219 km

Find pet-friendly accommodations in a city

# "No pets" in house_rules = NOT pet-friendly; absence = pet-friendly
grep -i ",Cleveland$" data/accommodations/clean_accommodations_2022.csv | grep -v "No pets"

Filter by min occupancy

# column 8 (0-indexed) = maximum_occupancy
grep -i ",Columbus$" data/accommodations/clean_accommodations_2022.csv \
  | grep -v "No pets" \
  | awk -F',' '$8 >= 2'

Find restaurants by cuisine and city

grep -i ",Cleveland," data/restaurants/clean_restaurant_2022.csv \
  | grep -i "american\|mediterranean\|chinese\|italian"

Find attractions in a city

grep -i ",Cleveland$" data/attractions/attractions.csv | cut -d',' -f1

Budget calculation approach

  1. Accommodation: price × number_of_nights; respect minimum nights.
  2. Meals: Average Cost in the restaurant CSV is the estimated cost for the meal.
  3. No flights means all travel is self-driving; use the distance.csv for durations.

Read the full file on GitHub · 66 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 66 lines · 31 tokens per session scan A e6604c304663

Subscribe to this mod's changes

travel-itinerary-data is a skill published in the GitHub repository cxcscmu/SkillLearnBench (83 stars, last pushed 2mo ago), licensed MIT. It adds 31 tokens to every session and 682 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

ceo-setup

One-time onboarding for the executive/manager commitment workflow — delegation-heavy, meeting prep, decision capture, morning and evening digests. Creates a commitments project and installs two dashboard widgets. After successful setup this skill is excluded from selection until the marker file is deleted.

suyoumo/ClawProBench · 60 tokens

content-creator-setup

One-time onboarding for the content creator workflow — content pipeline stages, trend expiration, cross-platform cascades, heavy idea parking. After successful setup this skill is excluded from selection until the marker file is deleted.

suyoumo/ClawProBench · 47 tokens

github

GitHub API integration via HTTP tool with automatic credential injection.

suyoumo/ClawProBench · 13 tokens

idea-parking

Park interesting ideas for later consideration, resurface them periodically, and promote to commitments when ready.

suyoumo/ClawProBench · 23 tokens

codspeed-optimize

Autonomously optimize code for performance using CodSpeed benchmarks, flamegraph analysis, and iterative improvement. Use this skill whenever the user wants to make code faster, reduce CPU usage, optimize memory, improve throughput, find performance bottlenecks, or asks to 'optimize', 'speed up', 'make faster'…

CodSpeedHQ/codspeed · 113 tokens

agentsop-llm-artifact-versioning

Enhancement overlay — version the WHOLE deployable LLM-app artifact as one bundle: prompts + compiled programs + model snapshot pins + retrieval config + eval-set version, versioned together so a deploy is reproducible and rollback is atomic. Activate when preparing to deploy an LLM app, when asking "what exactly is…

agentsope/SkillAlchemy · 223 tokens