{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pcmiler",
    "name": "PC*Miler",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/nchoudhury-trimble/pcmiler",
    "canonicalUrl": "https://clawhub.ai/nchoudhury-trimble/pcmiler",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pcmiler",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pcmiler",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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",
      "slug": "pcmiler",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T19:27:13.725Z",
      "expiresAt": "2026-05-13T19:27:13.725Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pcmiler",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pcmiler",
        "contentDisposition": "attachment; filename=\"pcmiler-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pcmiler"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/pcmiler"
    },
    "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/pcmiler",
    "agentPageUrl": "https://openagent3.xyz/skills/pcmiler/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pcmiler/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pcmiler/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": "PCMiler",
        "body": "Access the PCMiler REST API with API authentication. Manage truck routing needs."
      },
      {
        "title": "Quick Start",
        "body": "# Show route report\ncurl -s -X GET \"https://pcmiler.alk.com/apis/rest/v1.0/Service.svc/route/routeReports?stops=-75.173297%2C39.942892%3B-74.83153%2C39.61703%3B-74.438942%2C39.362469&reports=RoutePath\" -H \"Authorization: $PCMILER_API_KEY\"\n\nExample JSON Response\n[\n    {\n        \"__type\": \"RoutePathReport:http://pcmiler.alk.com/APIs/v1.0\",\n        \"RouteID\": null,\n        \"type\": \"Feature\",\n        \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        -75.173297,\n                        39.942892\n                    ],\n                    [\n                        -74.439742,\n                        39.362342\n                    ]\n                ]\n            ]\n        },\n        \"TMinutes\": 102,\n        \"TDistance\": 74.411,\n        \"properties\": null\n    }\n]\n\n# Geocode an address to fir lat/lon\ncurl -s -X GET \"https://pcmiler.alk.com/apis/rest/v1.0/Service.svc/locations?street=1%20Independence%20Way&city=princeton&state=nj&country=US&postcode=08540&postcodeFilter=us&region=NA&dataset=Current\" -H \"Authorization: $PCMILER_API_KEY\"\n\nExample JSON Response\n[\n    {\n        \"Address\": {\n            \"StreetAddress\": \"1 Independence Way\",\n            \"City\": \"Princeton\",\n            \"State\": \"NJ\",\n            \"Zip\": \"08540\",\n            \"County\": \"Mercer\",\n            \"Country\": \"United States\",\n            \"SPLC\": null,\n            \"CountryPostalFilter\": 0,\n            \"AbbreviationFormat\": 0,\n            \"StateName\": \"New Jersey\",\n            \"StateAbbreviation\": \"NJ\",\n            \"CountryAbbreviation\": \"US\"\n        },\n        \"Coords\": {\n            \"Lat\": \"40.360639\",\n            \"Lon\": \"-74.599867\"\n        },\n        \"Region\": 4,\n        \"Label\": \"\",\n        \"PlaceName\": \"\",\n        \"TimeZone\": \"EST\",\n        \"Errors\": [],\n        \"SpeedLimitInfo\": null,\n        \"ConfidenceLevel\": \"Exact\",\n        \"DistanceFromRoad\": null,\n        \"CrossStreet\": null,\n        \"TimeZoneOffset\": \"GMT-5:00\",\n        \"TimeZoneAbbreviation\": \"EST\",\n        \"IsDST\": false\n    }\n]"
      },
      {
        "title": "Setup",
        "body": "Requires environment variable\n\nPCMILER_API_KEY - PCMiler API Key"
      }
    ],
    "body": "PCMiler\n\nAccess the PCMiler REST API with API authentication. Manage truck routing needs.\n\nQuick Start\n# Show route report\ncurl -s -X GET \"https://pcmiler.alk.com/apis/rest/v1.0/Service.svc/route/routeReports?stops=-75.173297%2C39.942892%3B-74.83153%2C39.61703%3B-74.438942%2C39.362469&reports=RoutePath\" -H \"Authorization: $PCMILER_API_KEY\"\n\nExample JSON Response\n[\n    {\n        \"__type\": \"RoutePathReport:http://pcmiler.alk.com/APIs/v1.0\",\n        \"RouteID\": null,\n        \"type\": \"Feature\",\n        \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n                [\n                    [\n                        -75.173297,\n                        39.942892\n                    ],\n                    [\n                        -74.439742,\n                        39.362342\n                    ]\n                ]\n            ]\n        },\n        \"TMinutes\": 102,\n        \"TDistance\": 74.411,\n        \"properties\": null\n    }\n]\n\n# Geocode an address to fir lat/lon\ncurl -s -X GET \"https://pcmiler.alk.com/apis/rest/v1.0/Service.svc/locations?street=1%20Independence%20Way&city=princeton&state=nj&country=US&postcode=08540&postcodeFilter=us&region=NA&dataset=Current\" -H \"Authorization: $PCMILER_API_KEY\"\n\nExample JSON Response\n[\n    {\n        \"Address\": {\n            \"StreetAddress\": \"1 Independence Way\",\n            \"City\": \"Princeton\",\n            \"State\": \"NJ\",\n            \"Zip\": \"08540\",\n            \"County\": \"Mercer\",\n            \"Country\": \"United States\",\n            \"SPLC\": null,\n            \"CountryPostalFilter\": 0,\n            \"AbbreviationFormat\": 0,\n            \"StateName\": \"New Jersey\",\n            \"StateAbbreviation\": \"NJ\",\n            \"CountryAbbreviation\": \"US\"\n        },\n        \"Coords\": {\n            \"Lat\": \"40.360639\",\n            \"Lon\": \"-74.599867\"\n        },\n        \"Region\": 4,\n        \"Label\": \"\",\n        \"PlaceName\": \"\",\n        \"TimeZone\": \"EST\",\n        \"Errors\": [],\n        \"SpeedLimitInfo\": null,\n        \"ConfidenceLevel\": \"Exact\",\n        \"DistanceFromRoad\": null,\n        \"CrossStreet\": null,\n        \"TimeZoneOffset\": \"GMT-5:00\",\n        \"TimeZoneAbbreviation\": \"EST\",\n        \"IsDST\": false\n    }\n]\n\nSetup\n\nRequires environment variable\n\nPCMILER_API_KEY - PCMiler API Key"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/nchoudhury-trimble/pcmiler",
    "publisherUrl": "https://clawhub.ai/nchoudhury-trimble/pcmiler",
    "owner": "nchoudhury-trimble",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pcmiler",
    "downloadUrl": "https://openagent3.xyz/downloads/pcmiler",
    "agentUrl": "https://openagent3.xyz/skills/pcmiler/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pcmiler/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pcmiler/agent.md"
  }
}