โ† All skills
Tencent SkillHub ยท Developer Tools

AgentBox Twitter

Twitter/X research via paid API: search tweets with 50+ operators, fetch tweets with threads/replies/quotes, get user profiles with tweets/followers/followin...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Twitter/X research via paid API: search tweets with 50+ operators, fetch tweets with threads/replies/quotes, get user profiles with tweets/followers/followin...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Twitter Research

Paid Twitter/X data API at https://twitter.x402.agentbox.fyi. Costs $0.003 USDC per call via x402 on Solana. Use the x402_payment tool for all requests.

Search Tweets

Find tweets matching a query with 50+ advanced operators. x402_payment({ "url": "https://twitter.x402.agentbox.fyi/search", "method": "GET", "params": "{\"q\": \"from:elonmusk AI\", \"type\": \"Latest\", \"limit\": 20}" }) Parameters: ParamTypeDefaultDescriptionqstringrequiredSearch query with operatorstype"Latest" or "Top"LatestSort by recency or popularitylimit1-20020Max tweets to returncursorstring-Pagination cursor from previous response Search operators: OperatorExampleDescriptionfrom:userfrom:elonmuskTweets by userto:userto:elonmuskReplies to user@user@solanaMentioning usermin_faves:Nmin_faves:100Minimum likesmin_retweets:Nmin_retweets:50Minimum retweetsmin_replies:Nmin_replies:10Minimum repliesfilter:mediafilter:mediaHas mediafilter:imagesfilter:imagesHas imagesfilter:videosfilter:videosHas videofilter:linksfilter:linksHas linksfilter:repliesfilter:repliesOnly replies-filter:replies-filter:repliesExclude repliessince:datesince:2025-01-01After dateuntil:dateuntil:2025-12-31Before datewithin_time:Nhwithin_time:24hLast N hourslang:codelang:enLanguage filterconversation_id:IDconversation_id:123In conversationfilter:self_threadsfrom:user filter:self_threadsUser's thread replies Combine operators: from:elonmusk AI min_faves:100 -filter:replies within_time:7d Response: { query, tweets[], count, hasMore, nextCursor, summary } The summary object includes: totalLikes, totalRetweets, totalReplies, avgLikes, maxLikes, topTweetId.

Fetch Tweets

Get tweet(s) by ID or URL with optional thread, replies, and quotes. x402_payment({ "url": "https://twitter.x402.agentbox.fyi/tweet/1585841080431321088", "method": "GET", "params": "{\"include\": \"thread,replies\", \"limit\": 50}" }) URL format: /tweet/{ref} where ref is: Tweet ID: 1585841080431321088 Comma-separated IDs: 123,456,789 (batch fetch, no includes) Parameters: ParamTypeDefaultDescriptionincludestring-Comma-separated: thread, replies, quoteslimit1-20050Max replies/quotes to return Include options (single tweet only): thread - author's self-reply chain in the conversation replies - replies from other users quotes - quote tweets of this tweet Response: { tweets[], count, parent?, thread?, replies?, quotes? } If the fetched tweet is a reply, parent is auto-included with the replied-to tweet.

Fetch Users

Get user profile(s) with optional tweets, followers, or following. x402_payment({ "url": "https://twitter.x402.agentbox.fyi/user/elonmusk", "method": "GET", "params": "{\"include\": \"tweets\", \"limit\": 20}" }) URL format: /user/{ref} where ref is: Username: elonmusk or @elonmusk User ID: 44196397 Comma-separated IDs: 123,456 (batch fetch, no includes) Parameters: ParamTypeDefaultDescriptionincludestring-Comma-separated: tweets, followers, followinglimit1-20050Max tweets/followers/following to returninclude_repliesbooleanfalseInclude replies in user's tweets Response (single): { user, tweets?, followers?, following? } Response (batch): { users[], count, hasMore }

Monitor a topic

x402_payment({ "url": "https://twitter.x402.agentbox.fyi/search", "method": "GET", "params": "{\"q\": \"x402 OR \\\"402 payment\\\" min_faves:5 within_time:24h\", \"type\": \"Latest\"}" })

Get a tweet with full context

x402_payment({ "url": "https://twitter.x402.agentbox.fyi/tweet/1585841080431321088", "method": "GET", "params": "{\"include\": \"thread,replies,quotes\", \"limit\": 20}" })

Research a user

x402_payment({ "url": "https://twitter.x402.agentbox.fyi/user/CoinbaseDev", "method": "GET", "params": "{\"include\": \"tweets\", \"limit\": 50}" })

Paginate results

Use nextCursor from a previous response: x402_payment({ "url": "https://twitter.x402.agentbox.fyi/search", "method": "GET", "params": "{\"q\": \"from:elonmusk\", \"cursor\": \"DAABCgAB...\"}" })

Cost

Every call costs $0.003 USDC on Solana mainnet. Each paginated request is a separate call. Plan queries to minimize calls - use specific operators and reasonable limits.

Errors

HTTPMeaning400Invalid parameters (check query syntax)402Payment required (handled automatically by x402_payment)404Tweet or user not found502Upstream API error

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc