{
  "schemaVersion": "1.0",
  "item": {
    "slug": "linz-public-transport",
    "name": "Linz Public Transport",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/fjrevoredo/linz-public-transport",
    "canonicalUrl": "https://clawhub.ai/fjrevoredo/linz-public-transport",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/linz-public-transport",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linz-public-transport",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/linz_transport.py",
      "references/endpoints.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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/linz-public-transport"
    },
    "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/linz-public-transport",
    "agentPageUrl": "https://openagent3.xyz/skills/linz-public-transport/agent",
    "manifestUrl": "https://openagent3.xyz/skills/linz-public-transport/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/linz-public-transport/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": "Linz Public Transport",
        "body": "Use this skill to interact with Linz Linien EFA endpoints:\n\nGET /efa/XML_STOPFINDER_REQUEST\nGET /efa/XML_DM_REQUEST\n\nRead endpoint details in {baseDir}/references/endpoints.md before implementation.\nUse {baseDir}/scripts/linz_transport.py as the default execution path."
      },
      {
        "title": "Workflow",
        "body": "Resolve the API base URL.\nRun the script subcommand that matches the task.\nReturn a compact, user-facing summary."
      },
      {
        "title": "Primary Tooling",
        "body": "Script path: {baseDir}/scripts/linz_transport.py\nRuntime: Python 3, standard library only.\nBase URL input:\n\n--base-url <url> argument, or\nLINZ_TRANSPORT_API_BASE_URL environment variable, or\ndefault http://www.linzag.at/linz2.\n\nPreferred commands:\n\nSearch stops:\n\npython {baseDir}/scripts/linz_transport.py stops \"taubenmarkt\"\n\n\nFetch departures by stop ID:\n\npython {baseDir}/scripts/linz_transport.py departures --stop-id 60501160 --limit 10\n\n\nResolve stop and fetch departures in one call:\n\npython {baseDir}/scripts/linz_transport.py next \"taubenmarkt\" --limit 10 --pick-first"
      },
      {
        "title": "Step 1: Resolve Base URL",
        "body": "Use user-provided base URL first.\nOtherwise use LINZ_TRANSPORT_API_BASE_URL if available.\nIf neither exists, use http://www.linzag.at/linz2."
      },
      {
        "title": "Step 2: Present Output",
        "body": "Sort by countdownInMinutes ascending if needed.\nShow the next 5-10 departures unless user asks for more.\nInclude both relative (countdownInMinutes) and absolute (time) times.\nKeep field names stable when returning JSON."
      },
      {
        "title": "Error Handling",
        "body": "If stop search returns empty list, suggest nearby spellings and retry with a shorter query token.\nIf multiple stop matches are returned, rerun with explicit --stop-id or use next ... --pick-first only when ambiguity is acceptable.\nIf departures response is empty, state that no upcoming departures are currently available.\nIf HTTP request fails, report status code, endpoint, and retry guidance.\nIf EFA response includes a message code, include that code in diagnostics."
      },
      {
        "title": "Minimal Examples",
        "body": "python {baseDir}/scripts/linz_transport.py stops \"taubenmarkt\"\npython {baseDir}/scripts/linz_transport.py departures --stop-id 60501160 --limit 10\npython {baseDir}/scripts/linz_transport.py next \"taubenmarkt\" --limit 10 --pick-first\n\npython \"{baseDir}/scripts/linz_transport.py\" stops \"taubenmarkt\"\npython \"{baseDir}/scripts/linz_transport.py\" departures --stop-id 60501160 --limit 10\npython \"{baseDir}/scripts/linz_transport.py\" next \"taubenmarkt\" --limit 10 --pick-first"
      }
    ],
    "body": "Linz Public Transport\n\nUse this skill to interact with Linz Linien EFA endpoints:\n\nGET /efa/XML_STOPFINDER_REQUEST\nGET /efa/XML_DM_REQUEST\n\nRead endpoint details in {baseDir}/references/endpoints.md before implementation. Use {baseDir}/scripts/linz_transport.py as the default execution path.\n\nWorkflow\nResolve the API base URL.\nRun the script subcommand that matches the task.\nReturn a compact, user-facing summary.\nPrimary Tooling\nScript path: {baseDir}/scripts/linz_transport.py\nRuntime: Python 3, standard library only.\nBase URL input:\n--base-url <url> argument, or\nLINZ_TRANSPORT_API_BASE_URL environment variable, or\ndefault http://www.linzag.at/linz2.\n\nPreferred commands:\n\nSearch stops:\npython {baseDir}/scripts/linz_transport.py stops \"taubenmarkt\"\nFetch departures by stop ID:\npython {baseDir}/scripts/linz_transport.py departures --stop-id 60501160 --limit 10\nResolve stop and fetch departures in one call:\npython {baseDir}/scripts/linz_transport.py next \"taubenmarkt\" --limit 10 --pick-first\nStep 1: Resolve Base URL\nUse user-provided base URL first.\nOtherwise use LINZ_TRANSPORT_API_BASE_URL if available.\nIf neither exists, use http://www.linzag.at/linz2.\nStep 2: Present Output\nSort by countdownInMinutes ascending if needed.\nShow the next 5-10 departures unless user asks for more.\nInclude both relative (countdownInMinutes) and absolute (time) times.\nKeep field names stable when returning JSON.\nError Handling\nIf stop search returns empty list, suggest nearby spellings and retry with a shorter query token.\nIf multiple stop matches are returned, rerun with explicit --stop-id or use next ... --pick-first only when ambiguity is acceptable.\nIf departures response is empty, state that no upcoming departures are currently available.\nIf HTTP request fails, report status code, endpoint, and retry guidance.\nIf EFA response includes a message code, include that code in diagnostics.\nMinimal Examples\npython {baseDir}/scripts/linz_transport.py stops \"taubenmarkt\"\npython {baseDir}/scripts/linz_transport.py departures --stop-id 60501160 --limit 10\npython {baseDir}/scripts/linz_transport.py next \"taubenmarkt\" --limit 10 --pick-first\n\npython \"{baseDir}/scripts/linz_transport.py\" stops \"taubenmarkt\"\npython \"{baseDir}/scripts/linz_transport.py\" departures --stop-id 60501160 --limit 10\npython \"{baseDir}/scripts/linz_transport.py\" next \"taubenmarkt\" --limit 10 --pick-first"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/fjrevoredo/linz-public-transport",
    "publisherUrl": "https://clawhub.ai/fjrevoredo/linz-public-transport",
    "owner": "fjrevoredo",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/linz-public-transport",
    "downloadUrl": "https://openagent3.xyz/downloads/linz-public-transport",
    "agentUrl": "https://openagent3.xyz/skills/linz-public-transport/agent",
    "manifestUrl": "https://openagent3.xyz/skills/linz-public-transport/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/linz-public-transport/agent.md"
  }
}