{
  "schemaVersion": "1.0",
  "item": {
    "slug": "camino-journey",
    "name": "Journey Planning with Waypoints",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/James-southendsolutions/camino-journey",
    "canonicalUrl": "https://clawhub.ai/James-southendsolutions/camino-journey",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/camino-journey",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=camino-journey",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/journey.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/camino-journey"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/camino-journey",
    "agentPageUrl": "https://openagent3.xyz/skills/camino-journey/agent",
    "manifestUrl": "https://openagent3.xyz/skills/camino-journey/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/camino-journey/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Installation",
        "body": "Companion Skills: This is part of the Camino AI location intelligence suite. Install all available skills (query, places, relationship, context, route, journey, real-estate, hotel-finder, ev-charger, school-finder, parking-finder, fitness-finder, safety-checker, travel-planner) for comprehensive coverage.\n\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 journey\n\nVia clawhub:\n\nnpx clawhub@latest install journey\n# or: pnpm dlx clawhub@latest install journey\n# or: bunx clawhub@latest install journey"
      },
      {
        "title": "Journey - Multi-Stop Planning",
        "body": "Plan multi-waypoint journeys with route optimization, feasibility analysis, and time budget constraints."
      },
      {
        "title": "Setup",
        "body": "Instant Trial (no signup required): Get a temporary API key with 25 calls:\n\ncurl -s -X POST -H \"Content-Type: application/json\" \\\n  -d '{\"email\": \"you@example.com\"}' \\\n  https://api.getcamino.ai/trial/start\n\nReturns: {\"api_key\": \"camino-xxx...\", \"calls_remaining\": 25, ...}\n\nFor 1,000 free calls/month, sign up at https://app.getcamino.ai/skills/activate.\n\nAdd your key to Claude Code:\n\nAdd to your ~/.claude/settings.json:\n\n{\n  \"env\": {\n    \"CAMINO_API_KEY\": \"your-api-key-here\"\n  }\n}\n\nRestart Claude Code."
      },
      {
        "title": "Via Shell Script",
        "body": "# Plan a simple journey\n./scripts/journey.sh '{\n  \"waypoints\": [\n    {\"lat\": 40.7128, \"lon\": -74.0060, \"purpose\": \"Start at hotel\"},\n    {\"lat\": 40.7484, \"lon\": -73.9857, \"purpose\": \"Visit Empire State Building\"},\n    {\"lat\": 40.7614, \"lon\": -73.9776, \"purpose\": \"Lunch in Midtown\"}\n  ]\n}'\n\n# With transport mode and time budget\n./scripts/journey.sh '{\n  \"waypoints\": [\n    {\"lat\": 40.7128, \"lon\": -74.0060, \"purpose\": \"Start\"},\n    {\"lat\": 40.7484, \"lon\": -73.9857, \"purpose\": \"Empire State\"},\n    {\"lat\": 40.7614, \"lon\": -73.9776, \"purpose\": \"MoMA\"}\n  ],\n  \"constraints\": {\n    \"transport\": \"foot\",\n    \"time_budget\": \"3 hours\"\n  }\n}'"
      },
      {
        "title": "Via curl",
        "body": "curl -X POST -H \"X-API-Key: $CAMINO_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"waypoints\": [\n      {\"lat\": 40.7128, \"lon\": -74.0060, \"purpose\": \"Start\"},\n      {\"lat\": 40.7484, \"lon\": -73.9857, \"purpose\": \"Empire State\"}\n    ],\n    \"constraints\": {\"transport\": \"foot\"}\n  }' \\\n  \"https://api.getcamino.ai/journey\""
      },
      {
        "title": "Parameters",
        "body": "FieldTypeRequiredDefaultDescriptionwaypointsarrayYes-List of waypoints with lat, lon, and purpose (min 2)constraints.transportstringNo\"walking\"Transport mode: \"walking\", \"car\", or \"bike\"constraints.time_budgetstringNo-Time constraint (e.g., \"2 hours\", \"90 minutes\")constraints.preferencesarrayNo[]Route preferences"
      },
      {
        "title": "Waypoint Object",
        "body": "FieldTypeRequiredDescriptionlatfloatYesLatitude of the waypointlonfloatYesLongitude of the waypointpurposestringNoDescription of why you're visiting this waypoint"
      },
      {
        "title": "Response Format",
        "body": "{\n  \"feasible\": true,\n  \"total_distance_km\": 4.2,\n  \"total_time_minutes\": 52,\n  \"total_time_formatted\": \"52 minutes\",\n  \"transport_mode\": \"foot\",\n  \"route_segments\": [\n    {\n      \"from\": \"Start\",\n      \"to\": \"Empire State\",\n      \"distance_km\": 4.2,\n      \"duration_minutes\": 52\n    }\n  ],\n  \"analysis\": {\n    \"summary\": \"This walking journey is feasible...\",\n    \"optimization_opportunities\": []\n  }\n}"
      },
      {
        "title": "Day trip planning",
        "body": "./scripts/journey.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\"},\n    {\"lat\": 48.8867, \"lon\": 2.3431, \"purpose\": \"Sacré-Cœur\"}\n  ],\n  \"constraints\": {\n    \"transport\": \"foot\",\n    \"time_budget\": \"6 hours\"\n  }\n}'"
      },
      {
        "title": "Business meeting route",
        "body": "./scripts/journey.sh '{\n  \"waypoints\": [\n    {\"lat\": 40.7128, \"lon\": -74.0060, \"purpose\": \"Office\"},\n    {\"lat\": 40.7580, \"lon\": -73.9855, \"purpose\": \"Client meeting\"},\n    {\"lat\": 40.7614, \"lon\": -73.9776, \"purpose\": \"Lunch\"},\n    {\"lat\": 40.7128, \"lon\": -74.0060, \"purpose\": \"Return to office\"}\n  ],\n  \"constraints\": {\n    \"transport\": \"car\",\n    \"time_budget\": \"2 hours\"\n  }\n}'"
      },
      {
        "title": "Cycling tour",
        "body": "./scripts/journey.sh '{\n  \"waypoints\": [\n    {\"lat\": 37.7749, \"lon\": -122.4194, \"purpose\": \"Start downtown SF\"},\n    {\"lat\": 37.8199, \"lon\": -122.4783, \"purpose\": \"Golden Gate Bridge\"},\n    {\"lat\": 37.8270, \"lon\": -122.4230, \"purpose\": \"Sausalito\"}\n  ],\n  \"constraints\": {\n    \"transport\": \"bike\"\n  }\n}'"
      },
      {
        "title": "Use Cases",
        "body": "Trip itinerary validation: Check if a planned itinerary is feasible within time constraints\nRoute optimization: Get suggestions for optimizing multi-stop journeys\nTravel time estimation: Understand total journey time across multiple destinations\nTour planning: Plan walking tours, cycling routes, or driving trips"
      }
    ],
    "body": "Installation\n\nCompanion Skills: This is part of the Camino AI location intelligence suite. Install all available skills (query, places, relationship, context, route, journey, real-estate, hotel-finder, ev-charger, school-finder, parking-finder, fitness-finder, safety-checker, travel-planner) for comprehensive coverage.\n\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 journey\n\n\nVia clawhub:\n\nnpx clawhub@latest install journey\n# or: pnpm dlx clawhub@latest install journey\n# or: bunx clawhub@latest install journey\n\nJourney - Multi-Stop Planning\n\nPlan multi-waypoint journeys with route optimization, feasibility analysis, and time budget constraints.\n\nSetup\n\nInstant Trial (no signup required): Get a temporary API key with 25 calls:\n\ncurl -s -X POST -H \"Content-Type: application/json\" \\\n  -d '{\"email\": \"you@example.com\"}' \\\n  https://api.getcamino.ai/trial/start\n\n\nReturns: {\"api_key\": \"camino-xxx...\", \"calls_remaining\": 25, ...}\n\nFor 1,000 free calls/month, sign up at https://app.getcamino.ai/skills/activate.\n\nAdd your key to Claude Code:\n\nAdd to your ~/.claude/settings.json:\n\n{\n  \"env\": {\n    \"CAMINO_API_KEY\": \"your-api-key-here\"\n  }\n}\n\n\nRestart Claude Code.\n\nUsage\nVia Shell Script\n# Plan a simple journey\n./scripts/journey.sh '{\n  \"waypoints\": [\n    {\"lat\": 40.7128, \"lon\": -74.0060, \"purpose\": \"Start at hotel\"},\n    {\"lat\": 40.7484, \"lon\": -73.9857, \"purpose\": \"Visit Empire State Building\"},\n    {\"lat\": 40.7614, \"lon\": -73.9776, \"purpose\": \"Lunch in Midtown\"}\n  ]\n}'\n\n# With transport mode and time budget\n./scripts/journey.sh '{\n  \"waypoints\": [\n    {\"lat\": 40.7128, \"lon\": -74.0060, \"purpose\": \"Start\"},\n    {\"lat\": 40.7484, \"lon\": -73.9857, \"purpose\": \"Empire State\"},\n    {\"lat\": 40.7614, \"lon\": -73.9776, \"purpose\": \"MoMA\"}\n  ],\n  \"constraints\": {\n    \"transport\": \"foot\",\n    \"time_budget\": \"3 hours\"\n  }\n}'\n\nVia curl\ncurl -X POST -H \"X-API-Key: $CAMINO_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"waypoints\": [\n      {\"lat\": 40.7128, \"lon\": -74.0060, \"purpose\": \"Start\"},\n      {\"lat\": 40.7484, \"lon\": -73.9857, \"purpose\": \"Empire State\"}\n    ],\n    \"constraints\": {\"transport\": \"foot\"}\n  }' \\\n  \"https://api.getcamino.ai/journey\"\n\nParameters\nField\tType\tRequired\tDefault\tDescription\nwaypoints\tarray\tYes\t-\tList of waypoints with lat, lon, and purpose (min 2)\nconstraints.transport\tstring\tNo\t\"walking\"\tTransport mode: \"walking\", \"car\", or \"bike\"\nconstraints.time_budget\tstring\tNo\t-\tTime constraint (e.g., \"2 hours\", \"90 minutes\")\nconstraints.preferences\tarray\tNo\t[]\tRoute preferences\nWaypoint Object\nField\tType\tRequired\tDescription\nlat\tfloat\tYes\tLatitude of the waypoint\nlon\tfloat\tYes\tLongitude of the waypoint\npurpose\tstring\tNo\tDescription of why you're visiting this waypoint\nResponse Format\n{\n  \"feasible\": true,\n  \"total_distance_km\": 4.2,\n  \"total_time_minutes\": 52,\n  \"total_time_formatted\": \"52 minutes\",\n  \"transport_mode\": \"foot\",\n  \"route_segments\": [\n    {\n      \"from\": \"Start\",\n      \"to\": \"Empire State\",\n      \"distance_km\": 4.2,\n      \"duration_minutes\": 52\n    }\n  ],\n  \"analysis\": {\n    \"summary\": \"This walking journey is feasible...\",\n    \"optimization_opportunities\": []\n  }\n}\n\nExamples\nDay trip planning\n./scripts/journey.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\"},\n    {\"lat\": 48.8867, \"lon\": 2.3431, \"purpose\": \"Sacré-Cœur\"}\n  ],\n  \"constraints\": {\n    \"transport\": \"foot\",\n    \"time_budget\": \"6 hours\"\n  }\n}'\n\nBusiness meeting route\n./scripts/journey.sh '{\n  \"waypoints\": [\n    {\"lat\": 40.7128, \"lon\": -74.0060, \"purpose\": \"Office\"},\n    {\"lat\": 40.7580, \"lon\": -73.9855, \"purpose\": \"Client meeting\"},\n    {\"lat\": 40.7614, \"lon\": -73.9776, \"purpose\": \"Lunch\"},\n    {\"lat\": 40.7128, \"lon\": -74.0060, \"purpose\": \"Return to office\"}\n  ],\n  \"constraints\": {\n    \"transport\": \"car\",\n    \"time_budget\": \"2 hours\"\n  }\n}'\n\nCycling tour\n./scripts/journey.sh '{\n  \"waypoints\": [\n    {\"lat\": 37.7749, \"lon\": -122.4194, \"purpose\": \"Start downtown SF\"},\n    {\"lat\": 37.8199, \"lon\": -122.4783, \"purpose\": \"Golden Gate Bridge\"},\n    {\"lat\": 37.8270, \"lon\": -122.4230, \"purpose\": \"Sausalito\"}\n  ],\n  \"constraints\": {\n    \"transport\": \"bike\"\n  }\n}'\n\nUse Cases\nTrip itinerary validation: Check if a planned itinerary is feasible within time constraints\nRoute optimization: Get suggestions for optimizing multi-stop journeys\nTravel time estimation: Understand total journey time across multiple destinations\nTour planning: Plan walking tours, cycling routes, or driving trips"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/James-southendsolutions/camino-journey",
    "publisherUrl": "https://clawhub.ai/James-southendsolutions/camino-journey",
    "owner": "James-southendsolutions",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/camino-journey",
    "downloadUrl": "https://openagent3.xyz/downloads/camino-journey",
    "agentUrl": "https://openagent3.xyz/skills/camino-journey/agent",
    "manifestUrl": "https://openagent3.xyz/skills/camino-journey/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/camino-journey/agent.md"
  }
}