{
  "schemaVersion": "1.0",
  "item": {
    "slug": "x-tweet-fetcher",
    "name": "X Tweet Fetcher",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/hjw21century/x-tweet-fetcher",
    "canonicalUrl": "https://clawhub.ai/hjw21century/x-tweet-fetcher",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/x-tweet-fetcher",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=x-tweet-fetcher",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/fetch_tweet.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. 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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/x-tweet-fetcher"
    },
    "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/x-tweet-fetcher",
    "agentPageUrl": "https://openagent3.xyz/skills/x-tweet-fetcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/x-tweet-fetcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/x-tweet-fetcher/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": "X Tweet Fetcher",
        "body": "Fetch tweets from X/Twitter without authentication. Uses FxTwitter API."
      },
      {
        "title": "What It Can Fetch",
        "body": "Content TypeSupportRegular tweets✅ Full text + statsLong tweets (Twitter Blue)✅ Full textX Articles (long-form)✅ Complete article textQuoted tweets✅ IncludedStats (likes/RT/views)✅ Included"
      },
      {
        "title": "CLI",
        "body": "# JSON output\npython3 scripts/fetch_tweet.py --url \"https://x.com/user/status/123456\"\n\n# Pretty JSON\npython3 scripts/fetch_tweet.py --url \"https://x.com/user/status/123456\" --pretty\n\n# Text only (human readable)\npython3 scripts/fetch_tweet.py --url \"https://x.com/user/status/123456\" --text-only"
      },
      {
        "title": "From Agent Code",
        "body": "from scripts.fetch_tweet import fetch_tweet\n\nresult = fetch_tweet(\"https://x.com/user/status/123456\")\ntweet = result[\"tweet\"]\n\n# Regular tweet\nprint(tweet[\"text\"])\n\n# X Article (long-form)\nif tweet[\"is_article\"]:\n    print(tweet[\"article\"][\"title\"])\n    print(tweet[\"article\"][\"full_text\"])  # Complete article\n    print(tweet[\"article\"][\"word_count\"])"
      },
      {
        "title": "Output Format",
        "body": "{\n  \"url\": \"https://x.com/user/status/123\",\n  \"username\": \"user\",\n  \"tweet_id\": \"123\",\n  \"tweet\": {\n    \"text\": \"Tweet content...\",\n    \"author\": \"Display Name\",\n    \"screen_name\": \"username\",\n    \"likes\": 100,\n    \"retweets\": 50,\n    \"bookmarks\": 25,\n    \"views\": 10000,\n    \"replies_count\": 30,\n    \"created_at\": \"Mon Jan 01 12:00:00 +0000 2026\",\n    \"is_note_tweet\": false,\n    \"is_article\": true,\n    \"article\": {\n      \"title\": \"Article Title\",\n      \"full_text\": \"Complete article content...\",\n      \"word_count\": 4847,\n      \"char_count\": 27705\n    }\n  }\n}"
      },
      {
        "title": "Requirements",
        "body": "Python 3.7+\nNo external packages (stdlib only)\nNo API keys\nNo login required"
      },
      {
        "title": "How It Works",
        "body": "Uses FxTwitter public API (api.fxtwitter.com) which proxies X/Twitter content. Articles are returned as structured blocks and reassembled into full text."
      },
      {
        "title": "Limitations",
        "body": "Cannot fetch reply threads (only reply counts available via replies_count field)\n\nReply content would require browser automation dependencies (Camofox/Nitter)\nThese were removed to maintain zero-dependency architecture\n--replies flag exists but returns an explanatory error message\n\n\nCannot fetch deleted or private tweets\nRate limits depend on FxTwitter service availability\nIf FxTwitter goes down, the skill won't work (no fallback)"
      },
      {
        "title": "File Structure",
        "body": "skills/x-tweet-fetcher/\n├── SKILL.md              (this file)\n└── scripts/\n    └── fetch_tweet.py    (single file, zero deps)"
      }
    ],
    "body": "X Tweet Fetcher\n\nFetch tweets from X/Twitter without authentication. Uses FxTwitter API.\n\nWhat It Can Fetch\nContent Type\tSupport\nRegular tweets\t✅ Full text + stats\nLong tweets (Twitter Blue)\t✅ Full text\nX Articles (long-form)\t✅ Complete article text\nQuoted tweets\t✅ Included\nStats (likes/RT/views)\t✅ Included\nUsage\nCLI\n# JSON output\npython3 scripts/fetch_tweet.py --url \"https://x.com/user/status/123456\"\n\n# Pretty JSON\npython3 scripts/fetch_tweet.py --url \"https://x.com/user/status/123456\" --pretty\n\n# Text only (human readable)\npython3 scripts/fetch_tweet.py --url \"https://x.com/user/status/123456\" --text-only\n\nFrom Agent Code\nfrom scripts.fetch_tweet import fetch_tweet\n\nresult = fetch_tweet(\"https://x.com/user/status/123456\")\ntweet = result[\"tweet\"]\n\n# Regular tweet\nprint(tweet[\"text\"])\n\n# X Article (long-form)\nif tweet[\"is_article\"]:\n    print(tweet[\"article\"][\"title\"])\n    print(tweet[\"article\"][\"full_text\"])  # Complete article\n    print(tweet[\"article\"][\"word_count\"])\n\nOutput Format\n{\n  \"url\": \"https://x.com/user/status/123\",\n  \"username\": \"user\",\n  \"tweet_id\": \"123\",\n  \"tweet\": {\n    \"text\": \"Tweet content...\",\n    \"author\": \"Display Name\",\n    \"screen_name\": \"username\",\n    \"likes\": 100,\n    \"retweets\": 50,\n    \"bookmarks\": 25,\n    \"views\": 10000,\n    \"replies_count\": 30,\n    \"created_at\": \"Mon Jan 01 12:00:00 +0000 2026\",\n    \"is_note_tweet\": false,\n    \"is_article\": true,\n    \"article\": {\n      \"title\": \"Article Title\",\n      \"full_text\": \"Complete article content...\",\n      \"word_count\": 4847,\n      \"char_count\": 27705\n    }\n  }\n}\n\nRequirements\nPython 3.7+\nNo external packages (stdlib only)\nNo API keys\nNo login required\nHow It Works\n\nUses FxTwitter public API (api.fxtwitter.com) which proxies X/Twitter content. Articles are returned as structured blocks and reassembled into full text.\n\nLimitations\nCannot fetch reply threads (only reply counts available via replies_count field)\nReply content would require browser automation dependencies (Camofox/Nitter)\nThese were removed to maintain zero-dependency architecture\n--replies flag exists but returns an explanatory error message\nCannot fetch deleted or private tweets\nRate limits depend on FxTwitter service availability\nIf FxTwitter goes down, the skill won't work (no fallback)\nFile Structure\nskills/x-tweet-fetcher/\n├── SKILL.md              (this file)\n└── scripts/\n    └── fetch_tweet.py    (single file, zero deps)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/hjw21century/x-tweet-fetcher",
    "publisherUrl": "https://clawhub.ai/hjw21century/x-tweet-fetcher",
    "owner": "hjw21century",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/x-tweet-fetcher",
    "downloadUrl": "https://openagent3.xyz/downloads/x-tweet-fetcher",
    "agentUrl": "https://openagent3.xyz/skills/x-tweet-fetcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/x-tweet-fetcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/x-tweet-fetcher/agent.md"
  }
}