Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

x-masterx 大师

Agent Skill

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

总安装

8,775

周安装

362

GitHub Stars

公开资料未说明

下载量

2,867
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install x-master

简介

统一路由所有 X/Twitter 操作的核心控制器。

  • 根据任务类型自动分发给专用子工具。
  • 涵盖阅读研究发帖参与全链路能力。x-master 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 输入自然语言需求即可启动智能路由。
  • 内置策略库持续优化任务分配逻辑。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
x-master
description
Master routing skill for all X/Twitter operations — reading, researching, posting, and engaging. Routes to the correct sub-tool based on the task. Covers reading tweets by URL, searching X, trend research, posting tweets/replies, and handling mentions.
license
MIT
compatibility
Requires fxtwitter API access. All X/Twitter operations route through this skill.
metadata
author
x-master-contributors
version
1.0.0
tags

X Master Skill — Master Routing for X/Twitter Operations

This skill is the single entry point for all X/Twitter work. Read it first, then route to the correct sub-tool based on your task. Never attempt raw x.com fetches. Never guess at routing.


⚠️ ABSOLUTE RULE: Never fetch x.com directly

Direct web_fetch of x.com or twitter.com URLs will fail silently or return garbage.

Always use fxtwitter for reading tweet content:

https://api.fxtwitter.com/{username}/status/{tweet_id}

Extract username and tweet_id from the x.com URL:

  • https://x.com/example/status/1234567890api.fxtwitter.com/example/status/1234567890
  • https://twitter.com/example/status/1234567890 → same pattern

This is a hard rule. No exceptions. See references/fxtwitter-pattern.md for full details.


Account Configuration

This skill routes posting operations to one or more X accounts. Before using, configure your target account(s):

ConfigurationWhat It MeansApproval Required?
Single accountAll posts go to one accountYes — always. Get human approval before posting.
Multiple accountsRoute based on content typeYes — always. Confirm account + text before posting.
Draft-only modeGenerate drafts, never auto-postRecommended for new users. Learn the flow first.

Golden rule: Never post autonomously to X. Always draft first, get human approval before publishing.

Posting flow:

  1. Draft the post in your voice
  2. Share draft with the human for approval (via chat, email, or local review)
  3. Only after approval: execute posting script
  4. Log the URL and confirmation

Task Router

1. Read a tweet or thread by URL

Tool: fxtwitter API via web_fetch When: You have an x.com/twitter.com link and need to read the content How:

web_fetch("https://api.fxtwitter.com/{username}/status/{id}")

Response includes: full text, author, engagement stats, media URLs, thread context via reply_to

If fxtwitter is unavailable (5xx errors or timeout): fall back to x-research-skill for tweet content retrieval.


2. Search X for real-time opinions or discourse

Tool: xai-grok-search skill When: "What are people saying about X", "search X for Y", real-time pulse check, breaking news context Notes:

  • Responses may take 30–60s (involves reasoning)
  • Results include citations with URLs
  • Use for real-time social sentiment

3. Deep X research — threads, profiles, discourse

Tool: x-research-skill When: Need to research a topic across many tweets, follow a conversation, understand discourse depth, or cache results Supports: Filtering by handle, sorting by engagement, saving results for reuse


4. Multi-platform trend research (last 30 days)

Tool: last30days-skill When: "What's trending about X topic", understanding broader cultural moments across Reddit + X + HN + YouTube Triggers: Trend research requests, topic popularity analysis


5. Post a tweet, reply, or quote tweet

Tool: Custom posting script (see Setup) When: Any posting action. Always requires human approval first.

Posting flow:

  1. Draft the tweet in your voice
  2. Share draft with human for approval
  3. After approval: execute posting script
  4. Log the URL in your conversation/record

Never skip the approval step. Even if you think you have permission, confirm the exact text before executing.


6. Handle mentions / replies to your account

Tool: x-engage skill When: Your account receives a mention, reply, or engagement Notes:

  • Drafts replies automatically
  • Always get human approval before posting
  • Provides thread context for informed responses

7. Direct X API v2 calls

Tool: xurl skill (or your configured X API client) When: Specific API operations — follower management, analytics, batch operations, anything not covered above Requires: X OAuth configured in your environment


Decision Tree (Quick Reference)

Got an x.com URL?
  → Read it: fxtwitter (NEVER direct web_fetch)

Need to search X for discourse?
  → Real-time pulse: xai-grok-search
  → Deep thread context: x-research-skill
  → Last 30 days across platforms: last30days-skill

Need to post/reply?
  → Draft → get human approval → execute script

Received a mention/reply?
  → x-engage (generates draft, awaits approval)

Need raw API access?
  → xurl or your configured X API client

Key Resources

ResourceLocationPurpose
fxtwitter patternreferences/fxtwitter-pattern.mdHow and why to use fxtwitter; error handling
Algorithm intelligencereferences/algo-intel.md2026 X ranking signals, engagement weights, strategy
Skill dependenciesREADME.md § Sub-SkillsWhat to install and when
Account config templateconfig/accounts.json.exampleStarting point for posting setup
Posting scriptscripts/x-post.js (if bundled)Executes approved posts
xurl skill docs~/.openclaw/skills/xurl/ or clawhubDirect X API v2 access
x-engage skill docs~/.openclaw/skills/x-engage/ or clawhubMention handling pipeline

What Was Deprecated / Removed from X Tooling

If you're migrating from older X agent setups, be aware:

Tool/PatternStatusReplacement
Herald/Barker agentDeprecated — purpose-built X agents are fragilex-engage skill handles mentions
x-twitter-api npm packageDeleted — third-party duplicatexurl (first-party)
x-react.js / x-poll.jsArchived — standalone reaction scriptsCovered by xurl
Direct x.com web_fetchNever worked reliablyfxtwitter (mandatory)

Algorithm Intelligence (Updated 2026-03-13)

*For full details, see references/algo-intel.md*

Key Takeaways

  • Engagement hierarchy: Replies (27x) and conversations (150x) beat likes *(human accounts — see note below)*
  • Velocity window: Posts live or die in first 30 minutes
  • Content format: Native video > threads > articles > images > text
  • Account signals: X Premium, verification, consistency matter
  • Posting frequency: >5x/day triggers suppression
⚠️ Bot/AI account note: Engagement weights above apply to human accounts. AI assistant or bot accounts are weighted differently by the algorithm. See references/algo-intel.md § "Strategy by Account Type" for bot-specific guidance.
⚠️ Freshness: Algorithm data last verified 2026-03-13. If today is past 2026-06-13, check references/algo-intel.md for a newer version before relying on specific weights.

For Best Results

  • Lead with video (15–30s, captions, motion hook)
  • Reply to your own posts within 15 minutes of publishing
  • Post at your audience's peak times
  • Engagement pods and clickbait are algorithmically penalized

*This skill was created for AI agents to route X/Twitter work correctly. Adapt the account routing and approval flow to your needs, but keep the fxtwitter rule and task router structure unchanged.*

*Version: 1.0.0 | License: MIT*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.67%
按下载量换算2,255

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills