← 返回 Skills 市场
tenequm

AgentBox Twitter

作者 Misha Kolesnik · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
345
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install 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.md)

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.

Endpoints

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:

Param Type Default Description
q string required Search query with operators
type "Latest" or "Top" Latest Sort by recency or popularity
limit 1-200 20 Max tweets to return
cursor string - Pagination cursor from previous response

Search operators:

Operator Example Description
from:user from:elonmusk Tweets by user
to:user to:elonmusk Replies to user
@user @solana Mentioning user
min_faves:N min_faves:100 Minimum likes
min_retweets:N min_retweets:50 Minimum retweets
min_replies:N min_replies:10 Minimum replies
filter:media filter:media Has media
filter:images filter:images Has images
filter:videos filter:videos Has video
filter:links filter:links Has links
filter:replies filter:replies Only replies
-filter:replies -filter:replies Exclude replies
since:date since:2025-01-01 After date
until:date until:2025-12-31 Before date
within_time:Nh within_time:24h Last N hours
lang:code lang:en Language filter
conversation_id:ID conversation_id:123 In conversation
filter:self_threads from:user filter:self_threads User'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:

Param Type Default Description
include string - Comma-separated: thread, replies, quotes
limit 1-200 50 Max 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:

Param Type Default Description
include string - Comma-separated: tweets, followers, following
limit 1-200 50 Max tweets/followers/following to return
include_replies boolean false Include replies in user's tweets

Response (single): { user, tweets?, followers?, following? } Response (batch): { users[], count, hasMore }

Usage Patterns

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

HTTP Meaning
400 Invalid parameters (check query syntax)
402 Payment required (handled automatically by x402_payment)
404 Tweet or user not found
502 Upstream API error
安全使用建议
This skill appears to be what it claims: an instruction-only wrapper for a paid Twitter/X data service that charges $0.003 USDC per call via the x402_payment tool. Before enabling: (1) confirm you trust the service host (twitter.x402.agentbox.fyi) — it is not the official twitter.com domain; (2) verify the x402_payment tool’s wallet/key handling and that you are comfortable the agent can spend funds from any configured wallet; (3) be aware each paginated request is billed separately and could incur unexpected costs if invoked repeatedly; (4) consider limiting agent autonomy or auditing calls until you’re comfortable with the endpoint and payment tool. If you want higher assurance, ask the publisher for a homepage, source repo, or documentation for the x402 service and for how x402_payment manages keys/funds.
功能分析
Type: OpenClaw Skill Name: agentbox-twitter Version: 1.0.0 The skill bundle defines how to interact with a paid Twitter/X data API (`https://twitter.x402.agentbox.fyi`) using the `x402_payment` tool. The `SKILL.md` clearly outlines the API endpoints, parameters, and usage examples. The `allowed-tools` manifest restricts the agent to only use `x402_payment`. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts designed to subvert the agent's behavior or access unauthorized resources. The instructions are straightforward and align with the stated purpose of Twitter research.
能力评估
Purpose & Capability
Name and description state a paid Twitter/X research API. The SKILL.md only instructs calls to a dedicated twitter.x402.agentbox.fyi service and to use the x402_payment tool for payment; requiring the openclaw binary and permitting the x402_payment tool is consistent with that purpose.
Instruction Scope
Runtime instructions are narrowly scoped to making GET requests to the stated endpoints via the x402_payment tool; they do not instruct reading local files, other environment variables, or contacting unrelated endpoints. Parameters, response shapes, and pagination are documented and limited to the Twitter research use case.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so it does not write files or install third-party code. That minimizes on-disk risk.
Credentials
The skill itself requests no environment variables or credentials (proportionate). However it depends on the x402_payment tool to perform Solana/USDC payments; that tool will require wallet keys/funds and permissions which are not described here. Also the API host (twitter.x402.agentbox.fyi) is a third-party domain rather than an official twitter.com/API endpoint — verify its trustworthiness before use.
Persistence & Privilege
The skill is not marked 'always', does not install or persist state, and does not modify other skills or system-wide settings. It can be invoked by the agent (default behavior) but requires explicit invocation or eligibility.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agentbox-twitter
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agentbox-twitter 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug agentbox-twitter
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 345 次。

如何安装 AgentBox Twitter?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install agentbox-twitter」即可一键安装,无需额外配置。

AgentBox Twitter 是免费的吗?

是的,AgentBox Twitter 完全免费(开源免费),可自由下载、安装和使用。

AgentBox Twitter 支持哪些平台?

AgentBox Twitter 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 AgentBox Twitter?

由 Misha Kolesnik(@tenequm)开发并维护,当前版本 v1.0.0。

💬 留言讨论