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

x-twitter-apiX twitter API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

3,920

周安装

165

GitHub Stars

公开资料未说明

下载量

1,373
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tato418/x-twitter-api --skill x-twitter-api

简介

用于辅助 API 设计、接口文档和请求响应结构梳理。

  • 适合生成 OpenAPI 草稿、检查字段命名或整理错误码。
  • 使用时需确认业务语义、鉴权方式和分页规则,避免凭空补字段。
  • 安装命令:npx skills add https://github.com/tato418/x-twitter-api --skill x-twitter-api。
  • 建议从现有代码或样例中提取事实,确保接口定义准确。

SKILL.md

X (Twitter) API v2 skill using the authenticated user's own developer credentials (OAuth 1.0a, pay-per-use). All commands go through a single entry point: node x.js <command> [flags]. Each command has its its own doc file with the full reference for flags and behavior.

[!SETUP] Before first use, check whether ./node_modules exists. If it does NOT exist, run npm install. Then check whether ./dist/x.js exists. If it does NOT exist, run npm run build. NEVER cd into the skill directory; use relative paths or --prefix to target it without changing your working directory.

[!COMMANDS]

Core: a) me — authenticated user's own account data (profile, metrics, verification). @docs/me.md. b) search — search posts by query (last 7 days or full archive). @docs/search.md. c) get — retrieve one or more posts by ID. @docs/get.md. d) post — create a tweet, reply, or quote tweet. @docs/post.md. e) delete — delete a post owned by the authenticated user. @docs/delete.md.

Engagement: f) like — like a post by tweet ID. @docs/like.md. g) unlike — remove a like from a post. @docs/like.md. h) repost — repost (retweet) a post. @docs/repost.md. i) unrepost — remove a repost. @docs/repost.md.

Social: j) user — look up user(s) by username or ID. @docs/user.md. k) follow — follow a user by username or ID. @docs/follow.md. l) unfollow — unfollow a user. @docs/follow.md. m) followers — list a user's followers. @docs/followers.md. n) following — list accounts a user follows. @docs/followers.md.

Feed: o) timeline — your home timeline (reverse chronological). @docs/timeline.md. p) mentions — posts that mention you. @docs/mentions.md.

Bookmarks: q) bookmark — bookmark a post. @docs/bookmark.md. r) unbookmark — remove a bookmark. @docs/bookmark.md. s) bookmarks — list your bookmarks. @docs/bookmark.md.

Moderation: t) mute — mute a user. @docs/mute.md. u) unmute — unmute a user. @docs/mute.md. v) muted — list muted accounts. @docs/mute.md. w) blocked — list blocked accounts. @docs/blocked.md. x) hide-reply — hide a reply to your post. @docs/hide-reply.md.

Analytics: y) likers — users who liked a post. @docs/likers.md. z) reposters — users who reposted a post. @docs/reposters.md. aa) quotes — quote tweets of a post. @docs/quotes.md. ab) count — count posts matching a query over time. @docs/count.md. ac) reposts-of-me — reposts of your posts by others. @docs/reposts-of-me.md.

Discovery: ad) search-users — search users by query. @docs/search-users.md. ae) trending — trending topics (worldwide or personalized). @docs/trending.md.

[!PARAMETERS]

Core:

  • me: No parameters
  • search: query:string, [max_results?:number, since?:date, until?:date]
  • get: id:string | ids:string[]
  • post: text:string, [reply_to?:string, quote_id?:string]
  • delete: id:string

Engagement:

  • like: id:string
  • unlike: id:string
  • repost: id:string
  • unrepost: id:string

Social:

  • user: user:string, [expansions?:string, tweet_fields?:string, user_fields?:string]
  • follow: user:string
  • unfollow: user:string
  • followers: [user?:string, max_results?:number, pagination_token?:string]
  • following: [user?:string, max_results?:number, pagination_token?:string]

Feed:

  • timeline: [max_results?:number, pagination_token?:string]
  • mentions: [max_results?:number, pagination_token?:string]

Bookmarks:

  • bookmark: id:string
  • unbookmark: id:string
  • bookmarks: [max_results?:number, pagination_token?:string]

Moderation:

  • mute: user:string
  • unmute: user:string
  • muted: [max_results?:number, pagination_token?:string]
  • blocked: [max_results?:number, pagination_token?:string]
  • hide-reply: id:string

Analytics:

  • likers: id:string, [max_results?:number, pagination_token?:string]
  • reposters: id:string, [max_results?:number, pagination_token?:string]
  • quotes: id:string, [max_results?:number, pagination_token?:string]
  • count: query:string, [granularity?:string, start_time?:date, end_time?:date]
  • reposts-of-me: [max_results?:number, pagination_token?:string]

Discovery:

  • search-users: query:string, [max_results?:number]
  • trending: [woeid?:number]

[!OUTPUT]

All commands return JSON with standard structure:

{
  "success": boolean,
  "data": object | array | string,
  "error": string | null
}

Examples:

  • Single object: {"success": true, "data": {...}, "error": null}
  • Array response: {"success": true, "data": [...], "error": null}
  • Error response: {"success": false, "data": null, "error": "Error description"}

[!ERRORS]

Standard error codes:

  • 400 - Bad Request: Invalid parameters or malformed request
  • 401 - Unauthorized: Invalid or expired credentials
  • 403 - Forbidden: Access denied or insufficient permissions
  • 404 - Not Found: Resource does not exist
  • 429 - Too Many Requests: Rate limit exceeded
  • 500 - Internal Server Error: X API server error
  • 502 - Bad Gateway: X API unavailable
  • 503 - Service Unavailable: X API overloaded

Error handling:

  • Rate limit errors include retry-after header
  • Authentication errors require credential refresh
  • Validation errors include specific field issues

[!RATE-LIMITS]

X API v2 rate limits (OAuth 1.0a):

  • User authentication: 50 requests per 15 minutes
  • App authentication: 450 requests per 15 minutes (shared across all users)
  • POST requests (tweets, likes, etc.): 300 requests per 3 hours

Best practices:

  • Implement exponential backoff on 429 errors
  • Cache timeline and search results when possible
  • Batch requests where supported

[!CREDENTIALS]

Four OAuth 1.0a variables are REQUIRED: X_API_KEY, X_API_SECRET, X_ACCESS_TOKEN, X_ACCESS_TOKEN_SECRET. They resolve from the first source that provides them:

a) .env.local in cwd b) .env in cwd c) .env.local in the plugin directory d) .env in the plugin directory f) Environment variables

Obtain them from the X Developer Console (Apps > Keys and tokens).

Security notes:

  • Never commit credentials to version control
  • Use .env files for local development
  • Rotate credentials if compromised

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.8%
按下载量换算478

Claude

31.5%
按下载量换算432

Cursor

17.37%
按下载量换算238

Gemini CLI

10.05%
按下载量换算138

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills