Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

clawbirdclawbird 搜索

Agent Skill

clawbird 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

23,198

周安装

957

GitHub Stars

公开资料未说明

下载量

7,579
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:clawbird(clawbird 搜索)
来源仓库:https://github.com/xonder/clawbird
安装命令:
openclaw skills install clawbird
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install clawbird

简介

X/Twitter 集成 — 通过官方 X API v2 发布、回复、搜索、点赞、关注、DM 和提及

SKILL.md

name
clawbird
description
X/Twitter integration — post, reply, search, like, follow, DMs, and mentions via the official X API v2
homepage
https://github.com/xonder/clawbird
metadata
openclaw
emoji
🐦
requires
plugins
["clawbird"]
env
["X_API_KEY", "X_API_SECRET", "X_ACCESS_TOKEN", "X_ACCESS_SECRET"]
primaryEnv
X_API_KEY
install
kind
node
package
@xonder/clawbird
label
Install clawbird plugin (npm)

Clawbird — X/Twitter Tools

You have access to 13 tools for interacting with X (Twitter) via the official X API v2. All tools return JSON with results and estimated API cost.

Authentication & Credentials

This plugin authenticates to the X API using OAuth 1.0a User Context for write operations (posting, liking, following, DMs) and optionally a Bearer Token for read-only operations (search, user lookup).

Where credentials come from: You must generate them at the X Developer Portal:

  1. Create a Project and App at developer.x.com
  2. Generate OAuth 1.0a keys: API Key, API Secret, Access Token, Access Token Secret
  3. Optionally generate a Bearer Token for read-only operations

How credentials are provided: Credentials are passed to the plugin at runtime by the OpenClaw plugin config system (pluginConfig). The plugin never reads config files directly. Fallback: environment variables X_API_KEY, X_API_SECRET, X_ACCESS_TOKEN, X_ACCESS_SECRET, X_BEARER_TOKEN.

No credentials are hardcoded or bundled. The plugin will return a clear error if credentials are missing.

External Endpoints

All network requests go exclusively to the official X API v2. No other hosts are contacted.

EndpointMethodTool(s)Data Sent
https://api.x.com/2/tweetsPOSTx_post_tweet, x_post_thread, x_reply_tweetTweet text, reply metadata
https://api.x.com/2/tweets/:idGETx_get_tweetTweet ID
https://api.x.com/2/tweets/search/recentGETx_search_tweetsSearch query string
https://api.x.com/2/users/meGETx_like_tweet, x_get_mentions, x_follow_user(auth headers only)
https://api.x.com/2/users/by/username/:usernameGETx_get_user_profile, x_send_dm, x_follow_userUsername
https://api.x.com/2/users/:id/likesPOSTx_like_tweetTweet ID
https://api.x.com/2/users/:id/mentionsGETx_get_mentionsUser ID, pagination params
https://api.x.com/2/users/:id/followingPOSTx_follow_userTarget user ID
https://api.x.com/2/dm_conversations/with/:id/messagesPOSTx_send_dmMessage text, recipient ID
https://api.x.com/2/dm_conversations/with/:id/dm_eventsGETx_get_dms (filtered)Participant ID
https://api.x.com/2/dm_eventsGETx_get_dms (all)Pagination params

Security & Privacy

  • Network access: Only api.x.com (official X API). No other domains are contacted.
  • Local file access: Writes a session-scoped clawbird-interactions.jsonl file to the working directory, logging mutation actions (posts, likes, follows, DMs) so the agent can avoid duplicating work. No other files are read or written beyond the declared environment variables.
  • Credential handling: OAuth tokens are read from plugin config or env vars at runtime and passed to the X API via signed HTTP headers. They are never logged, cached to disk, or transmitted to any third party.
  • Data sent to X: Only the data you explicitly provide in tool parameters (tweet text, search queries, usernames, message text). No additional user data is collected or sent.
  • Data received from X: Tweet content, user profiles, DM messages, and engagement metrics as returned by the X API. This data is returned to the agent as JSON and not stored.

Trust Statement

Clawbird is an npm-distributed skill — the runtime code is installed via npm i -g @xonder/clawbird and is not bundled in the ClawHub skill archive. The security properties below can be verified by auditing the source:

  • Source: https://github.com/xonder/clawbird (MIT)
  • npm: https://www.npmjs.com/package/@xonder/clawbird
  • Makes no network requests other than to api.x.com (source: src/client.ts)
  • Reads and writes one local file (clawbird-interactions.jsonl) for session interaction logging — no other filesystem access (source: src/interaction-log.ts)
  • Has zero transitive dependencies beyond the official @xdevplatform/xdk SDK and @sinclair/typebox
  • Includes a comprehensive test suite (200+ tests) verifiable via npm test

Since this skill installs code from npm at runtime, review the source or pin a specific version (npm i -g @xonder/clawbird@1.1.0) before granting credentials.

Write Actions & Autonomous Use

The following tools modify remote state on your X account:

ToolActionReversible?
x_post_tweetPosts a tweetDelete manually
x_post_threadPosts multiple tweetsDelete manually
x_reply_tweetPosts a replyDelete manually
x_like_tweetLikes a tweetUnlike manually
x_follow_userFollows a userUnfollow manually
x_send_dmSends a direct messageCannot unsend

Recommendation: If running autonomously, consider requiring explicit user confirmation before write actions by configuring agent-level tool policies. Read-only tools (x_get_tweet, x_search_tweets, x_get_user_profile, x_get_mentions, x_get_dms, x_get_cost_summary) are safe for autonomous use.

Available Tools

Posting

x_post_tweet — Post a single tweet.

  • text (required): Tweet content (max 280 chars)
  • Returns: { id, text, url, estimatedCost }

x_post_thread — Post a multi-tweet thread.

  • tweets (required): Array of tweet texts (posted in order, each as a reply to the previous)
  • Returns: { threadId, tweetCount, tweets: [{ id, text, url }], estimatedCost }

x_reply_tweet — Reply to an existing tweet.

  • tweetId (required): Tweet ID or full URL (e.g. https://x.com/user/status/123456)
  • text (required): Reply content (max 280 chars)
  • Returns: { id, text, url, inReplyTo, estimatedCost }

Engagement

x_like_tweet — Like a tweet.

  • tweetId (required): Tweet ID or full URL
  • Returns: { liked, tweetId, estimatedCost }

Social

x_follow_user — Follow a user.

  • username (required): Username to follow (with or without @)
  • Returns: { following, user: { id, username }, estimatedCost }

Research

x_get_tweet — Get a single tweet by ID or URL.

  • tweetId (required): Tweet ID or full URL (e.g. https://x.com/user/status/123456)
  • Returns: { id, text, authorId, createdAt, metrics, conversationId, lang, url, author: { id, name, username, verified, profileImageUrl }, estimatedCost }

x_search_tweets — Search recent tweets (last 7 days).

  • query (required): Search query — supports X operators like from:user, #hashtag, "exact phrase", -exclude, lang:en
  • maxResults (optional): 10–100, default 10
  • Returns: { query, resultCount, tweets: [{ id, text, authorId, createdAt, metrics, url }], estimatedCost }

x_get_user_profile — Get a user's profile.

  • username (required): Username with or without @
  • Returns: { id, name, username, description, followersCount, followingCount, tweetCount, verified, profileImageUrl, url, createdAt, location, profileUrl, estimatedCost }

x_get_mentions — Get recent mentions of the authenticated account.

  • maxResults (optional): 5–100, default 10
  • Returns: { resultCount, mentions: [{ id, text, authorId, createdAt, metrics, url }], estimatedCost }

Direct Messages

x_send_dm — Send a direct message to a user.

  • username (required): Recipient's username (with or without @)
  • text (required): Message content
  • Returns: { sent, eventId, conversationId, recipient: { id, username }, estimatedCost }

x_get_dms — Get recent direct messages.

  • username (optional): Filter DMs to a specific user's conversation
  • maxResults (optional): 1–100, default 10
  • Returns: { resultCount, messages: [{ id, text, senderId, createdAt, conversationId, eventType }], estimatedCost }

Utility

x_get_interaction_log — Get the log of all write actions performed this session (posts, replies, likes, follows, DMs). Useful to review what has already been done and avoid duplicating actions.

  • limit (optional): Maximum number of recent entries to return (default: all)
  • Returns: { totalEntries, returned, logFile, entries: [{ timestamp, action, summary, details }] }

x_get_cost_summary — Get cumulative API cost for this session.

  • No parameters required
  • Returns: { totalCost, breakdown: { [action]: { calls, totalCost } } }

Best Practices

Search Queries

  • Use from:username to search a specific user's tweets
  • Use #hashtag for hashtag search
  • Use "exact phrase" for exact matches
  • Combine operators: #AI from:openai -is:retweet lang:en
  • Use -is:retweet to filter out retweets

Thread Formatting

  • Keep each tweet under 280 characters
  • Start with a strong hook in tweet 1
  • Number tweets (1/N) for long threads
  • End with a call to action or summary

Cost Awareness

Every tool response includes an estimatedCost field. Approximate costs:

  • Post/Reply: ~$0.01 per tweet
  • Like: ~$0.005
  • Search: ~$0.005 per result
  • User lookup: ~$0.001
  • Mentions: ~$0.005 per result
  • Send DM: ~$0.01
  • Read DMs: ~$0.005 per result
  • Get tweet: ~$0.005

Use x_get_cost_summary to check cumulative session spend before expensive operations.

Rate Limits

  • Posting: 200 tweets per 15 minutes
  • Search: 180 requests per 15 minutes (user), 450 (app)
  • Likes: 50 per 15 minutes
  • User lookup: 900 per 15 minutes
  • Mentions: 180 per 15 minutes
  • DMs: 200 messages per 15 minutes, 1000 per 24 hours
  • Following: 400 per 24 hours

Error Handling

All tools return errors as { error: "message", details?: ... }. Common issues:

  • Rate limiting (wait and retry)
  • Authentication errors (check API credentials)
  • Tweet not found (verify ID/URL)
  • Empty text (provide non-empty content)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

87.06%
按下载量换算6,598

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills