{
  "schemaVersion": "1.0",
  "item": {
    "slug": "idfm-journey-skill",
    "name": "IDFM Journey",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/anthonymq/idfm-journey-skill",
    "canonicalUrl": "https://clawhub.ai/anthonymq/idfm-journey-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/idfm-journey-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=idfm-journey-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/idfm-prim.md",
      "scripts/idfm.py"
    ],
    "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/idfm-journey-skill"
    },
    "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/idfm-journey-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/idfm-journey-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/idfm-journey-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/idfm-journey-skill/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": "IDFM Journey (PRIM/Navitia)",
        "body": "Use the bundled script to call PRIM/Navitia endpoints without extra dependencies."
      },
      {
        "title": "Metadata",
        "body": "Author: anthonymq\nVersion: 0.1.6"
      },
      {
        "title": "Trigger phrases (examples)",
        "body": "\"Itinéraire de {origine} à {destination}\"\n\"Route from {origin} to {destination} in Paris / Île-de-France\"\n\"Check RER/metro disruptions\" / \"incidents on line {line}\""
      },
      {
        "title": "Prereqs",
        "body": "Set IDFM_PRIM_API_KEY in the environment before running."
      },
      {
        "title": "Generating an API Key",
        "body": "To obtain an IDFM PRIM API key:\n\nVisit https://prim.iledefrance-mobilites.fr/\nCreate an account or log in\nNavigate to \"Espace développeur\" or the developer portal\nSubscribe to the \"Navitia\" API\nYour API key will be generated and displayed in your dashboard\nExport it in your environment: export IDFM_PRIM_API_KEY=\"your-key-here\""
      },
      {
        "title": "Quick commands",
        "body": "Run from anywhere (path is inside the skill folder):\n\nResolve places (best match + list):\n\npython3 scripts/idfm.py places \"Ivry-sur-Seine\" --count 5\n\n\n\nJourneys (free-text from/to; resolves place ids first):\n\npython3 scripts/idfm.py journeys --from \"Ivry-sur-Seine\" --to \"Boulainvilliers\" --count 3\n\n\n\nIncidents / disruptions (by line id or filter):\n\npython3 scripts/idfm.py incidents --line-id line:IDFM:C01727\npython3 scripts/idfm.py incidents --filter 'disruption.status=active'\n\nAdd --json to print raw API output."
      },
      {
        "title": "Notes",
        "body": "If place resolution is ambiguous, increase --count and choose the right stop_area id.\nFor API details and examples, read: references/idfm-prim.md."
      }
    ],
    "body": "IDFM Journey (PRIM/Navitia)\n\nUse the bundled script to call PRIM/Navitia endpoints without extra dependencies.\n\nMetadata\nAuthor: anthonymq\nVersion: 0.1.6\nTrigger phrases (examples)\n\"Itinéraire de {origine} à {destination}\"\n\"Route from {origin} to {destination} in Paris / Île-de-France\"\n\"Check RER/metro disruptions\" / \"incidents on line {line}\"\nPrereqs\nSet IDFM_PRIM_API_KEY in the environment before running.\nGenerating an API Key\n\nTo obtain an IDFM PRIM API key:\n\nVisit https://prim.iledefrance-mobilites.fr/\nCreate an account or log in\nNavigate to \"Espace développeur\" or the developer portal\nSubscribe to the \"Navitia\" API\nYour API key will be generated and displayed in your dashboard\nExport it in your environment: export IDFM_PRIM_API_KEY=\"your-key-here\"\nQuick commands\n\nRun from anywhere (path is inside the skill folder):\n\nResolve places (best match + list):\n\npython3 scripts/idfm.py places \"Ivry-sur-Seine\" --count 5\n\nJourneys (free-text from/to; resolves place ids first):\n\npython3 scripts/idfm.py journeys --from \"Ivry-sur-Seine\" --to \"Boulainvilliers\" --count 3\n\nIncidents / disruptions (by line id or filter):\n\npython3 scripts/idfm.py incidents --line-id line:IDFM:C01727\npython3 scripts/idfm.py incidents --filter 'disruption.status=active'\n\nAdd --json to print raw API output.\n\nNotes\nIf place resolution is ambiguous, increase --count and choose the right stop_area id.\nFor API details and examples, read: references/idfm-prim.md."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/anthonymq/idfm-journey-skill",
    "publisherUrl": "https://clawhub.ai/anthonymq/idfm-journey-skill",
    "owner": "anthonymq",
    "version": "0.1.6",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/idfm-journey-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/idfm-journey-skill",
    "agentUrl": "https://openagent3.xyz/skills/idfm-journey-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/idfm-journey-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/idfm-journey-skill/agent.md"
  }
}