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

desearch-x-search研究 x 搜索

Agent Skill

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

总安装

32,748

周安装

1,312

GitHub Stars

1

下载量

10,601
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install desearch-x-search

简介

实时搜索 X(原 Twitter)帖子、用户动态与主题标签相关内容。

  • 适用于舆情监控、趋势分析与社交数据挖掘。desearch-x-search 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持按关键词、用户名或推文 ID 精准定位信息。
  • 部分私有账户或受限内容无法访问,需遵守平台使用政策。
  • 输出信息为公开数据,不得用于骚扰或非法用途。

SKILL.md

name
desearch-x-search
description
Search X (Twitter) in real time. Find posts by keyword, user, or hashtag. Get a user's timeline, replies, retweeters, or fetch specific posts by ID or URL. Supports advanced filters like date range, language, engagement thresholds, and media type.
metadata
{"clawdbot":{"emoji":"𝕏","homepage":"https://desearch.ai","requires":{"env":["DESEARCH_API_KEY"]}}}

X (Twitter) Search By Desearch

Real-time X/Twitter search and monitoring. Search posts, track users, get timelines, replies, and retweeters with powerful filtering.

Setup

  1. Get an API key from https://console.desearch.ai
  2. Set environment variable: export DESEARCH_API_KEY='your-key-here'

Common Fields

All tweet-returning endpoints share these shapes. Fields marked * are always present.

Tweet

FieldTypeDescription
id*stringPost ID
text*stringPost content
created_at*stringISO 8601 timestamp
urlstring\nullDirect link: https://x.com/{username}/status/{id}
like_count*intLikes
retweet_count*intRetweets
reply_count*intReplies
quote_count*intQuotes
bookmark_count*intBookmarks
view_countint\nullViews
langstring\nullLanguage code (e.g. en)
is_retweetbool\nullIs a retweet
is_quote_tweetbool\nullIs a quote tweet
conversation_idstring\nullThread ID
in_reply_to_screen_namestring\nullUsername of post being replied to
in_reply_to_status_idstring\nullID of post being replied to
mediaarray\null[{media_url, type}] — type: photo, video, animated_gif
entitiesobject\null{hashtags, symbols, urls, user_mentions}
quoteTweet\nullNested quoted tweet
retweetTweet\nullOriginal tweet _(timeline endpoint only)_
userUser\nullPost author — see User below

User

FieldTypeDescription
id*stringUser ID
username*string@handle (without @)
namestring\nullDisplay name
urlstring\nullProfile URL
descriptionstring\nullBio
followers_countint\nullFollowers
followings_countint\nullFollowing
statuses_countint\nullTotal tweets posted
verifiedbool\nullLegacy verified badge
is_blue_verifiedbool\nullTwitter Blue subscriber
locationstring\nullSelf-reported location
created_atstring\nullAccount creation date
profile_image_urlstring\nullAvatar URL

Endpoints

x — Search Posts

Search X posts by keyword, hashtag, or user with engagement filters.

scripts/desearch.py x "Bittensor TAO" --sort Latest --count 10
scripts/desearch.py x "AI news" --user elonmusk --start-date 2025-01-01
scripts/desearch.py x "crypto" --min-likes 100 --verified --lang en

Options:

OptionDescription
--sortTop (default) or Latest
--user, -uFilter to posts by username
--start-dateStart date UTC (YYYY-MM-DD)
--end-dateEnd date UTC (YYYY-MM-DD)
--langLanguage code (e.g. en, es)
--verifiedOnly verified users
--blue-verifiedOnly Twitter Blue users
--is-quoteOnly quote tweets
--is-videoOnly posts with video
--is-imageOnly posts with images
--min-retweetsMinimum retweet count
--min-repliesMinimum reply count
--min-likesMinimum like count
--count, -nResults count (default: 20, max: 100)

Response: Tweet[]

x_post — Retrieve Post by ID

Fetch a single post by its numeric ID.

scripts/desearch.py x_post 1892527552029499853

Response: Tweet

x_urls — Fetch Posts by URLs

Retrieve one or more posts by their X URLs.

scripts/desearch.py x_urls "https://x.com/user/status/123" "https://x.com/user/status/456"

Response: Tweet[]

x_user — Search Posts by User

Search within a specific user's posts for a keyword.

scripts/desearch.py x_user elonmusk --query "AI" --count 10

Options:

OptionDescription
--query, -qKeyword to filter the user's posts
--count, -nResults count (default: 10, max: 100)

Response: Tweet[]

x_timeline — Get User Timeline

Fetch the most recent posts from a user's timeline. Retweets include a retweet field with the original post.

scripts/desearch.py x_timeline elonmusk --count 20

Options:

OptionDescription
--count, -nNumber of posts (default: 20, max: 100)

Response: { user: User, tweets: Tweet[] }

x_retweeters — Get Retweeters of a Post

List users who retweeted a specific post. Supports cursor-based pagination.

scripts/desearch.py x_retweeters 1982770537081532854
scripts/desearch.py x_retweeters 1982770537081532854 --cursor "AAAAANextCursorValue=="

Options:

OptionDescription
--cursorPagination cursor from a previous response

Response: { users: User[], next_cursor: string|null }next_cursor is null when no more pages remain.

x_replies — Get User's Replies

Fetch a user's tweets-and-replies timeline. Replies have in_reply_to_screen_name and in_reply_to_status_id set.

scripts/desearch.py x_replies elonmusk --count 10
scripts/desearch.py x_replies elonmusk --query "AI" --count 10

Options:

OptionDescription
--count, -nResults count (default: 10, max: 100)
--query, -qFilter keyword

Response: Tweet[]

x_post_replies — Get Replies to a Post

Fetch replies to a specific post by ID.

scripts/desearch.py x_post_replies 1234567890 --count 10
scripts/desearch.py x_post_replies 1234567890 --query "thanks" --count 5

Options:

OptionDescription
--count, -nResults count (default: 10, max: 100)
--query, -qFilter keyword within replies

Response: Tweet[]

Errors

Status 401, Unauthorized (e.g., missing/invalid API key)

{
  "detail": "Invalid or missing API key"
}

Status 402, Payment Required (e.g., balance depleted)

{
  "detail": "Insufficient balance, please add funds to your account to continue using the service."
}

Resources

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.1%
按下载量换算9,127

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills