{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-x",
    "name": "Openclaw X",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/bosshuman/openclaw-x",
    "canonicalUrl": "https://clawhub.ai/bosshuman/openclaw-x",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/openclaw-x",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-x",
    "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",
      "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/openclaw-x"
    },
    "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/openclaw-x",
    "agentPageUrl": "https://openagent3.xyz/skills/openclaw-x/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-x/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-x/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": "OpenClaw X",
        "body": "Control your X/Twitter account via a local API."
      },
      {
        "title": "Prerequisites",
        "body": "Download the executable from GitHub Release\nExport your X cookies from Chrome (using Cookie-Editor extension), save as cookies.json in the same directory\nRun the executable, ensure the service is running at http://localhost:19816"
      },
      {
        "title": "1. Get Home Timeline",
        "body": "curl http://localhost:19816/timeline?count=20\n\nReturns the latest tweets including content, author, media URLs, etc."
      },
      {
        "title": "2. Get Tweet Details",
        "body": "curl http://localhost:19816/tweet/{tweet_id}\n\nSupports both tweet ID and full URL (e.g. https://x.com/user/status/123456)."
      },
      {
        "title": "3. Search Tweets",
        "body": "curl \"http://localhost:19816/search?q=keyword&sort=Latest&count=20\"\n\nParameters:\n\nq: Search keyword (required)\nsort: Latest or Top, default Latest\ncount: Number of results, default 20"
      },
      {
        "title": "4. Post a Tweet",
        "body": "curl -X POST http://localhost:19816/tweet \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"text\": \"Hello world\"}'\n\nReply to a tweet:\n\ncurl -X POST http://localhost:19816/tweet \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"text\": \"Reply content\", \"reply_to\": \"original_tweet_id\"}'"
      },
      {
        "title": "5. Like a Tweet",
        "body": "curl -X POST http://localhost:19816/tweet/{tweet_id}/like"
      },
      {
        "title": "6. Retweet",
        "body": "curl -X POST http://localhost:19816/tweet/{tweet_id}/retweet"
      },
      {
        "title": "7. Bookmark a Tweet",
        "body": "curl -X POST http://localhost:19816/tweet/{tweet_id}/bookmark"
      },
      {
        "title": "8. Get User Info",
        "body": "curl http://localhost:19816/user/{username}\n\nReturns username, avatar, bio, follower count, etc."
      },
      {
        "title": "9. Get User Tweets",
        "body": "curl http://localhost:19816/user/{username}/tweets?count=20"
      },
      {
        "title": "Common Use Cases",
        "body": "\"Show me what's new on my timeline\"\n\"Search for the latest tweets about AI Agents\"\n\"Post a tweet saying: What a beautiful day!\"\n\"Like this tweet https://x.com/xxx/status/123\"\n\"Check what @elonmusk has been posting\"\n\"Bookmark this tweet\""
      }
    ],
    "body": "OpenClaw X\n\nControl your X/Twitter account via a local API.\n\nPrerequisites\nDownload the executable from GitHub Release\nExport your X cookies from Chrome (using Cookie-Editor extension), save as cookies.json in the same directory\nRun the executable, ensure the service is running at http://localhost:19816\nAvailable Actions\n1. Get Home Timeline\ncurl http://localhost:19816/timeline?count=20\n\n\nReturns the latest tweets including content, author, media URLs, etc.\n\n2. Get Tweet Details\ncurl http://localhost:19816/tweet/{tweet_id}\n\n\nSupports both tweet ID and full URL (e.g. https://x.com/user/status/123456).\n\n3. Search Tweets\ncurl \"http://localhost:19816/search?q=keyword&sort=Latest&count=20\"\n\n\nParameters:\n\nq: Search keyword (required)\nsort: Latest or Top, default Latest\ncount: Number of results, default 20\n4. Post a Tweet\ncurl -X POST http://localhost:19816/tweet \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"text\": \"Hello world\"}'\n\n\nReply to a tweet:\n\ncurl -X POST http://localhost:19816/tweet \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"text\": \"Reply content\", \"reply_to\": \"original_tweet_id\"}'\n\n5. Like a Tweet\ncurl -X POST http://localhost:19816/tweet/{tweet_id}/like\n\n6. Retweet\ncurl -X POST http://localhost:19816/tweet/{tweet_id}/retweet\n\n7. Bookmark a Tweet\ncurl -X POST http://localhost:19816/tweet/{tweet_id}/bookmark\n\n8. Get User Info\ncurl http://localhost:19816/user/{username}\n\n\nReturns username, avatar, bio, follower count, etc.\n\n9. Get User Tweets\ncurl http://localhost:19816/user/{username}/tweets?count=20\n\nCommon Use Cases\n\"Show me what's new on my timeline\"\n\"Search for the latest tweets about AI Agents\"\n\"Post a tweet saying: What a beautiful day!\"\n\"Like this tweet https://x.com/xxx/status/123\"\n\"Check what @elonmusk has been posting\"\n\"Bookmark this tweet\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/bosshuman/openclaw-x",
    "publisherUrl": "https://clawhub.ai/bosshuman/openclaw-x",
    "owner": "bosshuman",
    "version": "0.2.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-x",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-x",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-x/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-x/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-x/agent.md"
  }
}