{
  "schemaVersion": "1.0",
  "item": {
    "slug": "molt-pmxt",
    "name": "Molt Pmxt",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/realfishsam/molt-pmxt",
    "canonicalUrl": "https://clawhub.ai/realfishsam/molt-pmxt",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/molt-pmxt",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=molt-pmxt",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package-lock.json",
      "package.json",
      "src/index.ts",
      "src/tools.ts"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/molt-pmxt"
    },
    "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/molt-pmxt",
    "agentPageUrl": "https://openagent3.xyz/skills/molt-pmxt/agent",
    "manifestUrl": "https://openagent3.xyz/skills/molt-pmxt/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/molt-pmxt/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "⚙️ Setup & Configuration",
        "body": "To enable trading and full functionality, the following environment variables must be set in the agent's runtime environment:"
      },
      {
        "title": "Polymarket",
        "body": "POLYMARKET_PRIVATE_KEY: Your wallet's private key.\nPOLYMARKET_PROXY_ADDRESS: Proxy wallet address."
      },
      {
        "title": "Kalshi",
        "body": "KALSHI_API_KEY: Your Kalshi API key.\nKALSHI_PRIVATE_KEY: Your RSA private key."
      },
      {
        "title": "Limitless",
        "body": "LIMITLESS_API_KEY: Limitless exchange API key.\nLIMITLESS_PRIVATE_KEY: Private key for EIP-712 order signing."
      },
      {
        "title": "1. pmxt_search (Discovery)",
        "body": "Intent: Find active markets related to a topic or event.\n\nSignature: pmxt_search(query: string, exchange: string) // NOTE: Kalshi is slow, if you require fast results: use Limitless, or Polymarket\nSearch Strategy (Crucial): Do NOT use natural language sentences. Use broad keywords.\n\nBad: pmxt_search(\"Who will win the next presidential election?\")\nGood: pmxt_search(\"election\", exchange='polymarket') or pmxt_search(\"us election\", exchange='limitless')\n\n\nBehavior: Searches across Polymarket and Kalshi simultaneously. Returns market IDs, titles, and current volumes.\nPro Tip: If the user asks about a general topic (e.g. \"Crypto\"), search for high-volume markets to see what is trending."
      },
      {
        "title": "2. pmxt_quote (Analysis)",
        "body": "Intent: Get the exact probabilities for a specific market.\n\nSignature: pmxt_quote(market_id: string, exchange: string)\nWhen to use: You have a market_id and exchange (from search results) and need to report specific odds.\nBehavior: Returns a structured object with yes and no prices (implied probability).\nPresentation: Always convert the float prices (e.g., yes: 0.34, no: 0.66) into percentages (34% and 66%) when speaking to the user."
      },
      {
        "title": "3. pmxt_order (Execution)",
        "body": "Intent: Place a real-money market order on a market.\n\nSignature: pmxt_order(market_id: string, outcome: string, amount: number, side: \"buy\" | \"sell\", exchange: string)\nWhen to use: The user explicitly instructs you to \"bet\", \"buy\", \"wager\", or \"hedge\".\nSafety: NEVER call this tool without explicit confirmation from the user including the Amount and Outcome."
      },
      {
        "title": "Rule 1: Don't Hallucinate, Calculate.",
        "body": "If a user asks \"Is X likely to happen?\", do NOT rely on your internal training data.\n\nCall pmxt_search with a broad keyword for \"X\".\nCall pmxt_quote relevant markets.\nReply with: \"The market implies a [Price]% chance.\""
      },
      {
        "title": "Rule 2: The \"Smart\" Response",
        "body": "When displaying a quote, synthesize the data rather than dumping it.\n\nBad: \"Gavin is 0.30.\"\nGood: \"The market is currently pricing Gavin Newsom's victory at 30% (No: 71%). This suggests a skeptical outlook compared to last week.\""
      },
      {
        "title": "Rule 3: Arbitrage Awareness (Priority)",
        "body": "Whenever you fetch a quote, silently check if the combined prices of outcomes on different platforms (if available) allows for risk-free arbitrage.\n\nIf you detect a spread (e.g. Poly Yes 0.40 + Kalshi No 0.55 = 0.95), you MUST alert the user:\n\n\"🚨 Arbitrage Opportunity: I detected a price discrepancy. You can lock in a risk-free yield by buying Yes on Polymarket and No on Kalshi.\""
      }
    ],
    "body": "User Guide & System Instructions\n⚙️ Setup & Configuration\n\nTo enable trading and full functionality, the following environment variables must be set in the agent's runtime environment:\n\nPolymarket\nPOLYMARKET_PRIVATE_KEY: Your wallet's private key.\nPOLYMARKET_PROXY_ADDRESS: Proxy wallet address.\nKalshi\nKALSHI_API_KEY: Your Kalshi API key.\nKALSHI_PRIVATE_KEY: Your RSA private key.\nLimitless\nLIMITLESS_API_KEY: Limitless exchange API key.\nLIMITLESS_PRIVATE_KEY: Private key for EIP-712 order signing.\n🧠 Core Capabilities\n1. pmxt_search (Discovery)\n\nIntent: Find active markets related to a topic or event.\n\nSignature: pmxt_search(query: string, exchange: string) // NOTE: Kalshi is slow, if you require fast results: use Limitless, or Polymarket\nSearch Strategy (Crucial): Do NOT use natural language sentences. Use broad keywords.\nBad: pmxt_search(\"Who will win the next presidential election?\")\nGood: pmxt_search(\"election\", exchange='polymarket') or pmxt_search(\"us election\", exchange='limitless')\nBehavior: Searches across Polymarket and Kalshi simultaneously. Returns market IDs, titles, and current volumes.\nPro Tip: If the user asks about a general topic (e.g. \"Crypto\"), search for high-volume markets to see what is trending.\n2. pmxt_quote (Analysis)\n\nIntent: Get the exact probabilities for a specific market.\n\nSignature: pmxt_quote(market_id: string, exchange: string)\nWhen to use: You have a market_id and exchange (from search results) and need to report specific odds.\nBehavior: Returns a structured object with yes and no prices (implied probability).\nPresentation: Always convert the float prices (e.g., yes: 0.34, no: 0.66) into percentages (34% and 66%) when speaking to the user.\n3. pmxt_order (Execution)\n\nIntent: Place a real-money market order on a market.\n\nSignature: pmxt_order(market_id: string, outcome: string, amount: number, side: \"buy\" | \"sell\", exchange: string)\nWhen to use: The user explicitly instructs you to \"bet\", \"buy\", \"wager\", or \"hedge\".\nSafety: NEVER call this tool without explicit confirmation from the user including the Amount and Outcome.\n🤖 Agent Behavior Guidelines\nRule 1: Don't Hallucinate, Calculate.\n\nIf a user asks \"Is X likely to happen?\", do NOT rely on your internal training data.\n\nCall pmxt_search with a broad keyword for \"X\".\nCall pmxt_quote relevant markets.\nReply with: \"The market implies a [Price]% chance.\"\nRule 2: The \"Smart\" Response\n\nWhen displaying a quote, synthesize the data rather than dumping it.\n\nBad: \"Gavin is 0.30.\"\nGood: \"The market is currently pricing Gavin Newsom's victory at 30% (No: 71%). This suggests a skeptical outlook compared to last week.\"\nRule 3: Arbitrage Awareness (Priority)\n\nWhenever you fetch a quote, silently check if the combined prices of outcomes on different platforms (if available) allows for risk-free arbitrage.\n\nIf you detect a spread (e.g. Poly Yes 0.40 + Kalshi No 0.55 = 0.95), you MUST alert the user:\n\n\"🚨 Arbitrage Opportunity: I detected a price discrepancy. You can lock in a risk-free yield by buying Yes on Polymarket and No on Kalshi.\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/realfishsam/molt-pmxt",
    "publisherUrl": "https://clawhub.ai/realfishsam/molt-pmxt",
    "owner": "realfishsam",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/molt-pmxt",
    "downloadUrl": "https://openagent3.xyz/downloads/molt-pmxt",
    "agentUrl": "https://openagent3.xyz/skills/molt-pmxt/agent",
    "manifestUrl": "https://openagent3.xyz/skills/molt-pmxt/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/molt-pmxt/agent.md"
  }
}