{
  "schemaVersion": "1.0",
  "item": {
    "slug": "camino-route",
    "name": "Route between two locations",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/James-southendsolutions/camino-route",
    "canonicalUrl": "https://clawhub.ai/James-southendsolutions/camino-route",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/camino-route",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=camino-route",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/route.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-route"
    },
    "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-route",
    "agentPageUrl": "https://openagent3.xyz/skills/camino-route/agent",
    "manifestUrl": "https://openagent3.xyz/skills/camino-route/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/camino-route/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 route\n\nVia clawhub:\n\nnpx clawhub@latest install route\n# or: pnpm dlx clawhub@latest install route\n# or: bunx clawhub@latest install route"
      },
      {
        "title": "Route - Point-to-Point Navigation",
        "body": "Get detailed routing between two points with distance, duration, and optional turn-by-turn directions."
      },
      {
        "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": "# Get driving directions\n./scripts/route.sh '{\n  \"start_lat\": 40.7128,\n  \"start_lon\": -74.0060,\n  \"end_lat\": 40.7589,\n  \"end_lon\": -73.9851\n}'\n\n# Walking directions\n./scripts/route.sh '{\n  \"start_lat\": 40.7128,\n  \"start_lon\": -74.0060,\n  \"end_lat\": 40.7589,\n  \"end_lon\": -73.9851,\n  \"mode\": \"foot\"\n}'\n\n# With route geometry for mapping\n./scripts/route.sh '{\n  \"start_lat\": 40.7128,\n  \"start_lon\": -74.0060,\n  \"end_lat\": 40.7589,\n  \"end_lon\": -73.9851,\n  \"mode\": \"bike\",\n  \"include_geometry\": true\n}'"
      },
      {
        "title": "Via curl",
        "body": "curl -H \"X-API-Key: $CAMINO_API_KEY\" \\\n  \"https://api.getcamino.ai/route?start_lat=40.7128&start_lon=-74.0060&end_lat=40.7589&end_lon=-73.9851&mode=car\""
      },
      {
        "title": "Parameters",
        "body": "ParameterTypeRequiredDefaultDescriptionstart_latfloatYes-Starting latitudestart_lonfloatYes-Starting longitudeend_latfloatYes-Ending latitudeend_lonfloatYes-Ending longitudemodestringNo\"car\"Transport mode: \"car\", \"bike\", or \"foot\"include_geometryboolNofalseInclude detailed route geometry for mappinginclude_imageryboolNofalseInclude street-level imagery at waypoints"
      },
      {
        "title": "Response Format",
        "body": "{\n  \"distance_km\": 6.8,\n  \"duration_minutes\": 18,\n  \"mode\": \"car\",\n  \"summary\": \"Head north on Broadway, then east on 42nd Street\",\n  \"steps\": [\n    {\n      \"instruction\": \"Head north on Broadway\",\n      \"distance_m\": 2400,\n      \"duration_s\": 420\n    },\n    {\n      \"instruction\": \"Turn right onto 42nd Street\",\n      \"distance_m\": 1800,\n      \"duration_s\": 300\n    }\n  ]\n}"
      },
      {
        "title": "Walking directions",
        "body": "./scripts/route.sh '{\n  \"start_lat\": 51.5074,\n  \"start_lon\": -0.1278,\n  \"end_lat\": 51.5014,\n  \"end_lon\": -0.1419,\n  \"mode\": \"foot\"\n}'"
      },
      {
        "title": "Cycling with geometry",
        "body": "./scripts/route.sh '{\n  \"start_lat\": 37.7749,\n  \"start_lon\": -122.4194,\n  \"end_lat\": 37.8199,\n  \"end_lon\": -122.4783,\n  \"mode\": \"bike\",\n  \"include_geometry\": true\n}'"
      },
      {
        "title": "Driving directions with imagery",
        "body": "./scripts/route.sh '{\n  \"start_lat\": 40.7128,\n  \"start_lon\": -74.0060,\n  \"end_lat\": 40.7589,\n  \"end_lon\": -73.9851,\n  \"mode\": \"car\",\n  \"include_imagery\": true\n}'"
      },
      {
        "title": "Use Cases",
        "body": "Navigation: Get turn-by-turn directions for any transport mode\nTravel time estimation: Know how long it takes to get between two points\nMap visualization: Include geometry data for drawing routes on maps\nCommute planning: Compare driving, cycling, and walking times"
      }
    ],
    "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 route\n\n\nVia clawhub:\n\nnpx clawhub@latest install route\n# or: pnpm dlx clawhub@latest install route\n# or: bunx clawhub@latest install route\n\nRoute - Point-to-Point Navigation\n\nGet detailed routing between two points with distance, duration, and optional turn-by-turn directions.\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# Get driving directions\n./scripts/route.sh '{\n  \"start_lat\": 40.7128,\n  \"start_lon\": -74.0060,\n  \"end_lat\": 40.7589,\n  \"end_lon\": -73.9851\n}'\n\n# Walking directions\n./scripts/route.sh '{\n  \"start_lat\": 40.7128,\n  \"start_lon\": -74.0060,\n  \"end_lat\": 40.7589,\n  \"end_lon\": -73.9851,\n  \"mode\": \"foot\"\n}'\n\n# With route geometry for mapping\n./scripts/route.sh '{\n  \"start_lat\": 40.7128,\n  \"start_lon\": -74.0060,\n  \"end_lat\": 40.7589,\n  \"end_lon\": -73.9851,\n  \"mode\": \"bike\",\n  \"include_geometry\": true\n}'\n\nVia curl\ncurl -H \"X-API-Key: $CAMINO_API_KEY\" \\\n  \"https://api.getcamino.ai/route?start_lat=40.7128&start_lon=-74.0060&end_lat=40.7589&end_lon=-73.9851&mode=car\"\n\nParameters\nParameter\tType\tRequired\tDefault\tDescription\nstart_lat\tfloat\tYes\t-\tStarting latitude\nstart_lon\tfloat\tYes\t-\tStarting longitude\nend_lat\tfloat\tYes\t-\tEnding latitude\nend_lon\tfloat\tYes\t-\tEnding longitude\nmode\tstring\tNo\t\"car\"\tTransport mode: \"car\", \"bike\", or \"foot\"\ninclude_geometry\tbool\tNo\tfalse\tInclude detailed route geometry for mapping\ninclude_imagery\tbool\tNo\tfalse\tInclude street-level imagery at waypoints\nResponse Format\n{\n  \"distance_km\": 6.8,\n  \"duration_minutes\": 18,\n  \"mode\": \"car\",\n  \"summary\": \"Head north on Broadway, then east on 42nd Street\",\n  \"steps\": [\n    {\n      \"instruction\": \"Head north on Broadway\",\n      \"distance_m\": 2400,\n      \"duration_s\": 420\n    },\n    {\n      \"instruction\": \"Turn right onto 42nd Street\",\n      \"distance_m\": 1800,\n      \"duration_s\": 300\n    }\n  ]\n}\n\nExamples\nWalking directions\n./scripts/route.sh '{\n  \"start_lat\": 51.5074,\n  \"start_lon\": -0.1278,\n  \"end_lat\": 51.5014,\n  \"end_lon\": -0.1419,\n  \"mode\": \"foot\"\n}'\n\nCycling with geometry\n./scripts/route.sh '{\n  \"start_lat\": 37.7749,\n  \"start_lon\": -122.4194,\n  \"end_lat\": 37.8199,\n  \"end_lon\": -122.4783,\n  \"mode\": \"bike\",\n  \"include_geometry\": true\n}'\n\nDriving directions with imagery\n./scripts/route.sh '{\n  \"start_lat\": 40.7128,\n  \"start_lon\": -74.0060,\n  \"end_lat\": 40.7589,\n  \"end_lon\": -73.9851,\n  \"mode\": \"car\",\n  \"include_imagery\": true\n}'\n\nUse Cases\nNavigation: Get turn-by-turn directions for any transport mode\nTravel time estimation: Know how long it takes to get between two points\nMap visualization: Include geometry data for drawing routes on maps\nCommute planning: Compare driving, cycling, and walking times"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/James-southendsolutions/camino-route",
    "publisherUrl": "https://clawhub.ai/James-southendsolutions/camino-route",
    "owner": "James-southendsolutions",
    "version": "0.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/camino-route",
    "downloadUrl": "https://openagent3.xyz/downloads/camino-route",
    "agentUrl": "https://openagent3.xyz/skills/camino-route/agent",
    "manifestUrl": "https://openagent3.xyz/skills/camino-route/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/camino-route/agent.md"
  }
}