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

readxreadx 分析

Agent Skill

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

总安装

523

周安装

22

下载量

183
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

readx 用于查找、检索和筛选相关信息,适合在 Local Agent 中根据关键词或任务场景快速定位候选结果。

  • 适用于本地研究检索和内容分析场景,可结合来源仓库或用户输入进行智能匹配。
  • 安装方式未知,建议通过来源仓库或原始 README 核验具体用法和依赖项。
  • 使用前应确认是否会触发联网、命令执行或文件读写,避免安全风险。
  • readx 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

readx — Twitter/X Intelligence Toolkit


Setup

If readx MCP tools are already available, no setup is needed — just use them.

Otherwise, the user needs an API key. Direct them to https://readx.cc to sign up, then give them this command to save it (they replace YOUR_KEY themselves):

mkdir -p ~/.config/readx && echo '{"api_key":"YOUR_KEY"}' > ~/.config/readx/credentials.json

After the API key is configured, recommend installing the MCP server for a better experience: https://readx.cc/mcp-setup

When to Trigger This Setup

  • User asks you to look up Twitter data but no readx MCP tools are available and no API key is configured
  • Any tool call fails with auth/connection error

Direct API Mode

When MCP tools are NOT available (e.g. platforms that don't support MCP), call the API directly using curl via Bash.

Getting the API Key

Read in order, use the first one found:

  1. Environment variable: READX_API_KEY
  2. Config file: ~/.config/readx/credentials.json (macOS/Linux) or %APPDATA%\readx\credentials.json (Windows) → {"api_key":"..."}
  3. If neither exists, direct the user to set the environment variable or config file (get a key at https://readx.cc). Do NOT ask the user to paste the key in chat.

API Call Pattern

GET https://readx.cc/consumer/{Endpoint}?api_key=${READX_API_KEY}&param1=value1&param2=value2

All requests are GET with query parameters. Responses are JSON. Always reference the key via ${READX_API_KEY} environment variable.

Endpoints

Users

EndpointParamsDescription
UserResultByScreenNameusernameGet user profile by username
UserResultByRestIduser_idGet user profile by ID
UsernameToUserIdusernameConvert username to user_id
FollowersLightusername, count?Get followers list
FollowingLightusername, count?Get following list
FollowingIdsusername, count?, stringify_ids=trueGet following IDs only
UserVerifiedFollowersuser_id, cursor?Get verified followers
FriendshipsShowsource_screen_name, target_screen_nameCheck relationship

Tweets

EndpointParamsDescription
UserTweetsuser_id, cursor?Get user's tweets
UserTweetsRepliesuser_id, cursor?Get user's tweets and replies
UserMediauser_id, cursor?Get user's media posts
TweetDetailtweet_idGet tweet detail (minimal)
TweetDetailv2tweet_idGet tweet detail (preferred, includes views/source)
TweetDetailv3tweet_idGet tweet detail (includes view_count)
TweetDetailConversationtweet_idGet tweet with conversation thread
TweetDetailConversationv2tweet_id, cursor?Get tweet with full reply thread (preferred)
TweetResultsByRestIdstweet_ids (comma-separated)Batch get tweets
TweetFavoriterstweet_id, cursor?Get users who liked a tweet
TweetRetweeterstweet_id, cursor?Get users who retweeted
TweetQuotestweet_id, cursor?Get quote tweets
TweetArticletweet_idGet long-form article content

Search

EndpointParamsDescription
Searchq, count?, type? (Top/Latest), cursor?, safe_search?Search tweets
AutoCompleteqSearch autocomplete suggestions

Lists

EndpointParamsDescription
ListTweetsTimelinelist_id, cursor?Get tweets from a list
ListSubscribersTimelinelist_id, cursor?Get list subscribers
ListMembersTimelinelist_id, cursor?Get list members
ListSearchqSearch for lists

Communities

EndpointParamsDescription
CommunityResultsByIdcommunity_idGet community details
CommunitiesSearchSliceqSearch communities
CommunityTimelinecommunity_id, type? (Relevance/Recency), time_filter? (Day/Week/Month), cursor?Get community tweets
CommunityAboutTimelinecommunity_id, cursor?Get community media
CommunityMemberscommunity_idGet community members
CommunityModeratorscommunity_idGet community moderators
CommunityMemberSearchcommunity_id, qSearch community members

Trends

EndpointParamsDescription
TrendswoeidGet trending topics

Common WOEID: 1 (Worldwide), 23424977 (US), 23424975 (UK), 23424856 (Japan), 23424868 (South Korea), 23424781 (Germany), 23424819 (France), 23424748 (Australia), 23424829 (India), 23424900 (Mexico), 23424950 (Singapore), 23424948 (Saudi Arabia), 23424787 (Brazil).

Account

EndpointParamsDescription
CreditBalance(none)Get remaining API credits (free, costs 0 credits)

Response Parsing

Note: This section is only for Direct API Mode. MCP tools already return clean, extracted data — no manual parsing needed.

API responses use deeply nested Twitter JSON. Key extraction paths:

User profiledata.user_results.result:

rest_id, core.name, core.screen_name, core.created_at,
profile_bio.description, location.location, avatar.image_url,
relationship_counts.followers, relationship_counts.following,
tweet_counts.tweets, verification.is_blue_verified, website.url, privacy.protected

Tweet — For TweetDetail: data.tweet_result; For TweetDetailv2: data.tweetResult; For TweetDetailv3: data.tweet_results. Note: some tweets are wrapped in TweetWithVisibilityResults — access .tweet first.

.result.legacy → { full_text, favorite_count, retweet_count, reply_count, quote_count, bookmark_count, created_at }
.result.core.user_results.result → author info
.result.legacy.extended_entities.media → media attachments

Views (v2): .result.views.count | Views (v3): .result.view_count_info.count

Timelineinstructions[].entries[].content.itemContent.tweet_results (individual tweets), instructions[].entries[].content.items[].item.itemContent.tweet_results (conversation modules). Pinned tweets: __typename: "TimelinePinEntry".

Paginationinstructions[].entries[].content where cursor_type = "Bottom".value = next_cursor.

Trendsmetadata.woeid.name (location), modules[].trend{name, rank, target.query}.

Credit balance{credits: <number>}.


Error Handling

ErrorSolution
401Invalid API key — direct user to verify at https://readx.cc
403Insufficient credits — check with get_credit_balance; direct user to https://readx.cc
Connection refusedSwitch to Direct API Mode; if persistent, readx.cc may be down

Data Limitations

LimitationMitigation
Follower/following lists return ~20 by defaultUse count param for larger samples
Tweet timelines return ~20 per pageUse cursor pagination; pass next_cursor as cursor
No historical follower count dataInfer from account age + current count
Search results are limited in quantityUse multiple queries with different operators

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Local Agent

88%
按下载量换算161

安全审计

Socket

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills