x-operations
Installation
SKILL.md
Cross-Channel X (Twitter) Operations
QVerisBot has a built-in X (Twitter) plugin already configured with OAuth credentials. All X operations go through this plugin via the message tool's x-* actions. You do not need to call any external API, use browser automation, or search for third-party tools.
Critical: Understand How This Works
The X plugin is a platform-level service, not a channel-bound feature. It uses pre-configured OAuth credentials to execute X operations on behalf of the user.
Your current conversation channel is just where you receive instructions. X operations always execute through the X plugin regardless of whether you are talking to the user on Feishu, Telegram, CLI, Web UI, or X itself.
| Conversation channel | User says | What you do |
|---|---|---|
| Feishu | "帮我发一条推文" | message({ action: "x-post", message: "..." }) |
| Feishu | "搜索 AI 相关推文" | message({ action: "x-search", query: "AI" }) |
| Telegram | "Follow @elonmusk" | message({ action: "x-follow", target: "@elonmusk" }) |
| CLI | "看看 @openai 的推文" | message({ action: "x-timeline", target: "@openai" }) |
| Web UI | "转发这条推" | message({ action: "x-repost", target: "<tweet>" }) |
| X (mention) | "@bot 关注 @xxx" | message({ action: "x-follow", target: "@xxx" }) |