{"skill":{"slug":"camino-travel-planner","displayName":"Travel Planner","summary":"Plan complete day trips, walking tours, and multi-stop itineraries with time budgets using Camino AI's journey planning and route optimization.","description":"---\nname: camino-travel-planner\ndescription: \"Plan complete day trips, walking tours, and multi-stop itineraries with time budgets using Camino AI's journey planning and route optimization.\"\nmetadata: {\"clawdbot\":{\"emoji\":\"✈️\",\"requires\":{\"env\":[\"CAMINO_API_KEY\"],\"binaries\":[\"curl\",\"jq\"]},\"primaryEnv\":\"CAMINO_API_KEY\"}}\n---\n\n## Installation\n\n**Companion Skills**: This is part of the Camino AI location intelligence suite. Install all available skills (camino-query, camino-places, camino-relationship, camino-context, camino-route, camino-journey, camino-real-estate, camino-hotel-finder, camino-ev-charger, camino-school-finder, camino-parking-finder, camino-fitness-finder, camino-safety-checker, camino-travel-planner) for comprehensive coverage.\n\n```bash\n# Install all skills from repo\nnpx skills add https://github.com/barneyjm/camino-skills\n\n# Or install specific skills\nnpx skills add https://github.com/barneyjm/camino-skills --skill camino-travel-planner\n```\n\n**Via clawhub:**\n```bash\nnpx clawhub@latest install camino-travel-planner\n# or: pnpm dlx clawhub@latest install camino-travel-planner\n# or: bunx clawhub@latest install camino-travel-planner\n```\n\n# Travel Planner\n\nPlan complete day trips, walking tours, and multi-stop itineraries with time budgets. Wraps the Camino AI journey endpoint with opinionated defaults for travel planning.\n\n## Setup\n\nThese skills shell out to `curl` and authenticate via the `CAMINO_API_KEY` environment variable. Sign up at [https://app.getcamino.ai/skills/activate](https://app.getcamino.ai/skills/activate) for 100 free calls/month and an API key.\n\n**Add your key to Claude Code:**\n\nAdd to your `~/.claude/settings.json`:\n\n```json\n{\n  \"env\": {\n    \"CAMINO_API_KEY\": \"your-api-key-here\"\n  }\n}\n```\n\nRestart Claude Code.\n\n**Alternative — pay-per-request via [x402](https://x402.org):** Camino's paid endpoints also accept HTTP 402 payments in USDC on Base ($0.001/request) from any x402-capable client, with no signup or API key. These skills don't use this path; it's for agents and clients that speak x402 natively.\n\n## Usage\n\n### Via Shell Script\n\n```bash\n# Plan a walking tour in Paris\n./scripts/travel-planner.sh '{\n  \"waypoints\": [\n    {\"lat\": 48.8584, \"lon\": 2.2945, \"purpose\": \"Eiffel Tower\"},\n    {\"lat\": 48.8606, \"lon\": 2.3376, \"purpose\": \"Louvre Museum\"}\n  ],\n  \"constraints\": {\"transport\": \"foot\", \"time_budget\": \"4 hours\"}\n}'\n\n# Plan a driving day trip\n./scripts/travel-planner.sh '{\n  \"waypoints\": [\n    {\"lat\": 34.0195, \"lon\": -118.4912, \"purpose\": \"Santa Monica Pier\"},\n    {\"lat\": 34.0259, \"lon\": -118.7798, \"purpose\": \"Malibu Beach\"},\n    {\"lat\": 34.0922, \"lon\": -118.3287, \"purpose\": \"Hollywood Sign viewpoint\"}\n  ],\n  \"constraints\": {\"transport\": \"car\", \"time_budget\": \"6 hours\"}\n}'\n\n# Simple two-stop trip\n./scripts/travel-planner.sh '{\n  \"waypoints\": [\n    {\"lat\": 40.7484, \"lon\": -73.9857, \"purpose\": \"Empire State Building\"},\n    {\"lat\": 40.7614, \"lon\": -73.9776, \"purpose\": \"MoMA\"}\n  ]\n}'\n```\n\n### Via curl\n\n```bash\ncurl -X POST -H \"X-API-Key: $CAMINO_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"waypoints\": [\n      {\"lat\": 48.8584, \"lon\": 2.2945, \"purpose\": \"Eiffel Tower\"},\n      {\"lat\": 48.8606, \"lon\": 2.3376, \"purpose\": \"Louvre\"}\n    ],\n    \"constraints\": {\"transport\": \"foot\", \"time_budget\": \"4 hours\"}\n  }' \\\n  \"https://api.getcamino.ai/journey\"\n```\n\n## Parameters\n\n| Field | Type | Required | Default | Description |\n|-------|------|----------|---------|-------------|\n| waypoints | array | Yes | - | List of stops with lat, lon, and purpose (min 2) |\n| constraints | object | No | - | Trip constraints |\n| constraints.transport | string | No | \"walking\" | Transport mode: \"walking\", \"car\", or \"bike\" |\n| constraints.time_budget | string | No | - | Time limit (e.g., \"4 hours\", \"90 minutes\") |\n| constraints.preferences | array | No | [] | Route preferences |\n\n### Waypoint Object\n\n| Field | Type | Required | Description |\n|-------|------|----------|-------------|\n| lat | float | Yes | Latitude of the stop |\n| lon | float | Yes | Longitude of the stop |\n| purpose | string | No | Description of the stop (e.g., \"Eiffel Tower\", \"lunch break\") |\n\n## Response Format\n\n```json\n{\n  \"feasible\": true,\n  \"total_distance_km\": 6.8,\n  \"total_time_minutes\": 85,\n  \"total_time_formatted\": \"1 hour 25 minutes\",\n  \"transport_mode\": \"foot\",\n  \"route_segments\": [\n    {\n      \"from\": \"Eiffel Tower\",\n      \"to\": \"Louvre Museum\",\n      \"distance_km\": 3.4,\n      \"duration_minutes\": 42\n    },\n    {\n      \"from\": \"Louvre Museum\",\n      \"to\": \"Notre-Dame\",\n      \"distance_km\": 3.4,\n      \"duration_minutes\": 43\n    }\n  ],\n  \"analysis\": {\n    \"summary\": \"This walking tour is feasible within your 4-hour time budget...\",\n    \"optimization_opportunities\": [\"Consider starting at the Louvre to reduce backtracking\"]\n  }\n}\n```\n\n## Examples\n\n### Paris walking tour\n```bash\n./scripts/travel-planner.sh '{\n  \"waypoints\": [\n    {\"lat\": 48.8584, \"lon\": 2.2945, \"purpose\": \"Eiffel Tower\"},\n    {\"lat\": 48.8606, \"lon\": 2.3376, \"purpose\": \"Louvre Museum\"},\n    {\"lat\": 48.8530, \"lon\": 2.3499, \"purpose\": \"Notre-Dame Cathedral\"},\n    {\"lat\": 48.8867, \"lon\": 2.3431, \"purpose\": \"Sacre-Coeur\"}\n  ],\n  \"constraints\": {\n    \"transport\": \"foot\",\n    \"time_budget\": \"6 hours\"\n  }\n}'\n```\n\n### NYC cycling tour\n```bash\n./scripts/travel-planner.sh '{\n  \"waypoints\": [\n    {\"lat\": 40.7128, \"lon\": -74.0060, \"purpose\": \"Start at Battery Park\"},\n    {\"lat\": 40.6892, \"lon\": -74.0445, \"purpose\": \"Statue of Liberty viewpoint\"},\n    {\"lat\": 40.7061, \"lon\": -73.9969, \"purpose\": \"Brooklyn Bridge\"},\n    {\"lat\": 40.7580, \"lon\": -73.9855, \"purpose\": \"Times Square\"}\n  ],\n  \"constraints\": {\n    \"transport\": \"bike\",\n    \"time_budget\": \"3 hours\"\n  }\n}'\n```\n\n### Business meeting circuit\n```bash\n./scripts/travel-planner.sh '{\n  \"waypoints\": [\n    {\"lat\": 37.7749, \"lon\": -122.4194, \"purpose\": \"Office downtown\"},\n    {\"lat\": 37.7849, \"lon\": -122.4094, \"purpose\": \"Client meeting\"},\n    {\"lat\": 37.7900, \"lon\": -122.4000, \"purpose\": \"Lunch\"},\n    {\"lat\": 37.7749, \"lon\": -122.4194, \"purpose\": \"Return to office\"}\n  ],\n  \"constraints\": {\n    \"transport\": \"car\",\n    \"time_budget\": \"2 hours\"\n  }\n}'\n```\n\n## Best Practices\n\n- Always include a `purpose` for each waypoint to get better route analysis\n- Set a `time_budget` to get feasibility checks and optimization suggestions\n- Use \"foot\" transport for city walking tours, \"bike\" for cycling tours, \"car\" for road trips\n- Order waypoints in your preferred visiting sequence; the API will check feasibility\n- Combine with the `camino-query` skill to discover points of interest to add as waypoints\n- Combine with the `camino-hotel-finder` skill to find accommodation near your first or last waypoint\n- Combine with the `camino-context` skill to learn more about each waypoint's neighborhood\n- For longer trips, break the itinerary into manageable day segments\n","topics":["Travel"],"tags":{"latest":"2.0.1"},"stats":{"comments":0,"downloads":1392,"installsAllTime":52,"installsCurrent":2,"stars":3,"versions":3},"createdAt":1771299752625,"updatedAt":1778699518179},"latestVersion":{"version":"2.0.1","createdAt":1778699284632,"changelog":"Sync from camino-skills@2.0.1","license":"MIT-0"},"metadata":{"setup":[{"key":"CAMINO_API_KEY","required":true}],"os":null,"systems":null},"owner":{"handle":"james-southendsolutions","userId":"s17dekpybzcxf10vsx8arm960n86hhnf","displayName":"James-southendsolutions","image":"https://avatars.githubusercontent.com/u/93152760?v=4"},"moderation":null}