{
  "schemaVersion": "1.0",
  "item": {
    "slug": "opentwitter-2",
    "name": "Opentwitter",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/infra403/opentwitter-2",
    "canonicalUrl": "https://clawhub.ai/infra403/opentwitter-2",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/opentwitter-2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=opentwitter-2",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "package.json"
    ],
    "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/opentwitter-2"
    },
    "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/opentwitter-2",
    "agentPageUrl": "https://openagent3.xyz/skills/opentwitter-2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/opentwitter-2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/opentwitter-2/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": "Twitter/X Data Skill",
        "body": "Query Twitter/X data from the 6551 platform REST API. All endpoints require a Bearer token via $TWITTER_TOKEN.\n\nGet your token: https://6551.io/mcp\n\nBase URL: https://ai.6551.io"
      },
      {
        "title": "Authentication",
        "body": "All requests require the header:\n\nAuthorization: Bearer $TWITTER_TOKEN"
      },
      {
        "title": "1. Get Twitter User Info",
        "body": "Get user profile by username.\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_user_info\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"elonmusk\"}'"
      },
      {
        "title": "2. Get Twitter User by ID",
        "body": "Get user profile by numeric ID.\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_user_by_id\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"userId\": \"44196397\"}'"
      },
      {
        "title": "3. Get User Tweets",
        "body": "Get recent tweets from a user.\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_user_tweets\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"elonmusk\", \"maxResults\": 20, \"product\": \"Latest\"}'\n\nParameterTypeDefaultDescriptionusernamestringrequiredTwitter username (without @)maxResultsinteger20Max tweets (1-100)productstring\"Latest\"\"Latest\" or \"Top\"includeRepliesbooleanfalseInclude reply tweetsincludeRetweetsbooleanfalseInclude retweets"
      },
      {
        "title": "4. Search Twitter",
        "body": "Search tweets with various filters.\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_search\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"keywords\": \"bitcoin\", \"maxResults\": 20, \"product\": \"Top\"}'\n\nSearch from specific user:\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_search\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"fromUser\": \"VitalikButerin\", \"maxResults\": 20}'\n\nSearch by hashtag:\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_search\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"hashtag\": \"crypto\", \"minLikes\": 100, \"maxResults\": 20}'"
      },
      {
        "title": "Twitter Search Parameters",
        "body": "ParameterTypeDefaultDescriptionkeywordsstring-Search keywordsfromUserstring-Tweets from specific usertoUserstring-Tweets to specific usermentionUserstring-Tweets mentioning userhashtagstring-Filter by hashtag (without #)excludeRepliesbooleanfalseExclude reply tweetsexcludeRetweetsbooleanfalseExclude retweetsminLikesinteger0Minimum likes thresholdminRetweetsinteger0Minimum retweets thresholdminRepliesinteger0Minimum replies thresholdsinceDatestring-Start date (YYYY-MM-DD)untilDatestring-End date (YYYY-MM-DD)langstring-Language code (e.g. \"en\", \"zh\")productstring\"Top\"\"Top\" or \"Latest\"maxResultsinteger20Max tweets (1-100)"
      },
      {
        "title": "5. Get Follower Events",
        "body": "Get new followers or unfollowers for a user.\n\n# Get new followers\ncurl -s -X POST \"https://ai.6551.io/open/twitter_follower_events\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"elonmusk\", \"isFollow\": true, \"maxResults\": 20}'\n\n# Get unfollowers\ncurl -s -X POST \"https://ai.6551.io/open/twitter_follower_events\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"elonmusk\", \"isFollow\": false, \"maxResults\": 20}'\n\nParameterTypeDefaultDescriptionusernamestringrequiredTwitter username (without @)isFollowbooleantruetrue=new followers, false=unfollowersmaxResultsinteger20Max events (1-100)"
      },
      {
        "title": "6. Get Deleted Tweets",
        "body": "Get deleted tweets from a user.\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_deleted_tweets\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"elonmusk\", \"maxResults\": 20}'\n\nParameterTypeDefaultDescriptionusernamestringrequiredTwitter username (without @)maxResultsinteger20Max tweets (1-100)"
      },
      {
        "title": "7. Get KOL Followers",
        "body": "Get which KOLs (Key Opinion Leaders) are following a user.\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_kol_followers\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"elonmusk\"}'\n\nParameterTypeDefaultDescriptionusernamestringrequiredTwitter username (without @)"
      },
      {
        "title": "Twitter User",
        "body": "{\n  \"userId\": \"44196397\",\n  \"screenName\": \"elonmusk\",\n  \"name\": \"Elon Musk\",\n  \"description\": \"...\",\n  \"followersCount\": 170000000,\n  \"friendsCount\": 500,\n  \"statusesCount\": 30000,\n  \"verified\": true\n}"
      },
      {
        "title": "Tweet",
        "body": "{\n  \"id\": \"1234567890\",\n  \"text\": \"Tweet content...\",\n  \"createdAt\": \"2024-02-20T12:00:00Z\",\n  \"retweetCount\": 1000,\n  \"favoriteCount\": 5000,\n  \"replyCount\": 200,\n  \"userScreenName\": \"elonmusk\",\n  \"hashtags\": [\"crypto\", \"bitcoin\"],\n  \"urls\": [{\"url\": \"https://...\"}]\n}"
      },
      {
        "title": "Crypto Twitter KOL Tweets",
        "body": "curl -s -X POST \"https://ai.6551.io/open/twitter_user_tweets\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"VitalikButerin\", \"maxResults\": 10}'"
      },
      {
        "title": "Trending Crypto Tweets",
        "body": "curl -s -X POST \"https://ai.6551.io/open/twitter_search\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"keywords\": \"bitcoin\", \"minLikes\": 1000, \"product\": \"Top\", \"maxResults\": 20}'"
      },
      {
        "title": "Notes",
        "body": "Get your API token at https://6551.io/mcp\nRate limits apply; max 100 results per request\nTwitter usernames should not include the @ symbol"
      }
    ],
    "body": "Twitter/X Data Skill\n\nQuery Twitter/X data from the 6551 platform REST API. All endpoints require a Bearer token via $TWITTER_TOKEN.\n\nGet your token: https://6551.io/mcp\n\nBase URL: https://ai.6551.io\n\nAuthentication\n\nAll requests require the header:\n\nAuthorization: Bearer $TWITTER_TOKEN\n\nTwitter Operations\n1. Get Twitter User Info\n\nGet user profile by username.\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_user_info\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"elonmusk\"}'\n\n2. Get Twitter User by ID\n\nGet user profile by numeric ID.\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_user_by_id\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"userId\": \"44196397\"}'\n\n3. Get User Tweets\n\nGet recent tweets from a user.\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_user_tweets\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"elonmusk\", \"maxResults\": 20, \"product\": \"Latest\"}'\n\nParameter\tType\tDefault\tDescription\nusername\tstring\trequired\tTwitter username (without @)\nmaxResults\tinteger\t20\tMax tweets (1-100)\nproduct\tstring\t\"Latest\"\t\"Latest\" or \"Top\"\nincludeReplies\tboolean\tfalse\tInclude reply tweets\nincludeRetweets\tboolean\tfalse\tInclude retweets\n4. Search Twitter\n\nSearch tweets with various filters.\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_search\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"keywords\": \"bitcoin\", \"maxResults\": 20, \"product\": \"Top\"}'\n\n\nSearch from specific user:\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_search\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"fromUser\": \"VitalikButerin\", \"maxResults\": 20}'\n\n\nSearch by hashtag:\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_search\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"hashtag\": \"crypto\", \"minLikes\": 100, \"maxResults\": 20}'\n\nTwitter Search Parameters\nParameter\tType\tDefault\tDescription\nkeywords\tstring\t-\tSearch keywords\nfromUser\tstring\t-\tTweets from specific user\ntoUser\tstring\t-\tTweets to specific user\nmentionUser\tstring\t-\tTweets mentioning user\nhashtag\tstring\t-\tFilter by hashtag (without #)\nexcludeReplies\tboolean\tfalse\tExclude reply tweets\nexcludeRetweets\tboolean\tfalse\tExclude retweets\nminLikes\tinteger\t0\tMinimum likes threshold\nminRetweets\tinteger\t0\tMinimum retweets threshold\nminReplies\tinteger\t0\tMinimum replies threshold\nsinceDate\tstring\t-\tStart date (YYYY-MM-DD)\nuntilDate\tstring\t-\tEnd date (YYYY-MM-DD)\nlang\tstring\t-\tLanguage code (e.g. \"en\", \"zh\")\nproduct\tstring\t\"Top\"\t\"Top\" or \"Latest\"\nmaxResults\tinteger\t20\tMax tweets (1-100)\n5. Get Follower Events\n\nGet new followers or unfollowers for a user.\n\n# Get new followers\ncurl -s -X POST \"https://ai.6551.io/open/twitter_follower_events\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"elonmusk\", \"isFollow\": true, \"maxResults\": 20}'\n\n# Get unfollowers\ncurl -s -X POST \"https://ai.6551.io/open/twitter_follower_events\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"elonmusk\", \"isFollow\": false, \"maxResults\": 20}'\n\nParameter\tType\tDefault\tDescription\nusername\tstring\trequired\tTwitter username (without @)\nisFollow\tboolean\ttrue\ttrue=new followers, false=unfollowers\nmaxResults\tinteger\t20\tMax events (1-100)\n6. Get Deleted Tweets\n\nGet deleted tweets from a user.\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_deleted_tweets\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"elonmusk\", \"maxResults\": 20}'\n\nParameter\tType\tDefault\tDescription\nusername\tstring\trequired\tTwitter username (without @)\nmaxResults\tinteger\t20\tMax tweets (1-100)\n7. Get KOL Followers\n\nGet which KOLs (Key Opinion Leaders) are following a user.\n\ncurl -s -X POST \"https://ai.6551.io/open/twitter_kol_followers\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"elonmusk\"}'\n\nParameter\tType\tDefault\tDescription\nusername\tstring\trequired\tTwitter username (without @)\nData Structures\nTwitter User\n{\n  \"userId\": \"44196397\",\n  \"screenName\": \"elonmusk\",\n  \"name\": \"Elon Musk\",\n  \"description\": \"...\",\n  \"followersCount\": 170000000,\n  \"friendsCount\": 500,\n  \"statusesCount\": 30000,\n  \"verified\": true\n}\n\nTweet\n{\n  \"id\": \"1234567890\",\n  \"text\": \"Tweet content...\",\n  \"createdAt\": \"2024-02-20T12:00:00Z\",\n  \"retweetCount\": 1000,\n  \"favoriteCount\": 5000,\n  \"replyCount\": 200,\n  \"userScreenName\": \"elonmusk\",\n  \"hashtags\": [\"crypto\", \"bitcoin\"],\n  \"urls\": [{\"url\": \"https://...\"}]\n}\n\nCommon Workflows\nCrypto Twitter KOL Tweets\ncurl -s -X POST \"https://ai.6551.io/open/twitter_user_tweets\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\": \"VitalikButerin\", \"maxResults\": 10}'\n\nTrending Crypto Tweets\ncurl -s -X POST \"https://ai.6551.io/open/twitter_search\" \\\n  -H \"Authorization: Bearer $TWITTER_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"keywords\": \"bitcoin\", \"minLikes\": 1000, \"product\": \"Top\", \"maxResults\": 20}'\n\nNotes\nGet your API token at https://6551.io/mcp\nRate limits apply; max 100 results per request\nTwitter usernames should not include the @ symbol"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/infra403/opentwitter-2",
    "publisherUrl": "https://clawhub.ai/infra403/opentwitter-2",
    "owner": "infra403",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/opentwitter-2",
    "downloadUrl": "https://openagent3.xyz/downloads/opentwitter-2",
    "agentUrl": "https://openagent3.xyz/skills/opentwitter-2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/opentwitter-2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/opentwitter-2/agent.md"
  }
}