Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

twitter-autopilot推特自动驾驶仪

Agent Skill

twitter-autopilot 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

20,339

周安装

856

GitHub Stars

公开资料未说明

下载量

7,122
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install twitter-autopilot

简介

自动化 OpenClaw AI 代理的 Twitter/X 发布、参与和发展。

  • 适用于设置客服状态、批量发布推文或管理社交账号互动。
  • 支持定时发帖、回复评论及基础账号运营流程。
  • 需配置 OAuth 凭证并确保浏览器环境可运行自动化脚本。
  • 建议监控执行频率以防触发平台反滥用机制。twitter-autopilot 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
twitter-autopilot
description
Automate Twitter/X posting, engagement, and growth for OpenClaw AI agents. Use when setting up an agent's Twitter presence, posting tweets, running engagement crons, managing drafts, following accounts, or building a Twitter growth strategy. Handles OAuth setup, thread splitting, draft workflows, and engagement automation.

Twitter Autopilot

End-to-end Twitter/X automation for AI agents running on OpenClaw.

Requirements & Scope

Credentials (all set as env vars)

VariableRequiredDescription
TWITTER_API_KEYOAuth 1.0a consumer key
TWITTER_API_SECRETOAuth 1.0a consumer secret
TWITTER_ACCESS_TOKENOAuth 1.0a user token
TWITTER_ACCESS_SECRETOAuth 1.0a user secret
TWITTER_BEARER_TOKENOptionalOAuth 2.0 bearer (needed for reads/follows)

Dependencies

  • tweepy (pip install)

Files Read/Written

PathAccessPurpose
twitter/MODE.mdReadDraft vs auto mode flag
twitter/queue.mdRead/WriteApproved tweets waiting to post
twitter/drafts/pending.mdRead/WriteUnapproved drafts
twitter/posted-log.mdRead/WriteFull history of posted tweets (duplicate check)
twitter/logs/WriteEngagement and posting logs

Scope

  • ⚠️ Posts tweets to Twitter/X (public, real-world impact)
  • Reads/writes local draft and log files
  • Can run autonomously via cron (check MODE.md to control)

Setup

1. Get API Keys

  1. Go to developer.x.com → create a project + app
  2. Set app permissions to Read and Write
  3. Generate: API Key, API Secret, Access Token, Access Token Secret
  4. Generate Bearer Token: curl -u "API_KEY:API_SECRET" -d "grant_type=client_credentials" "https://api.twitter.com/oauth2/token"

2. Set Environment Variables

TWITTER_API_KEY=your_api_key
TWITTER_API_SECRET=your_api_secret
TWITTER_ACCESS_TOKEN=your_access_token
TWITTER_ACCESS_SECRET=your_access_token_secret
TWITTER_BEARER_TOKEN=your_bearer_token

3. Install Dependency

pip install tweepy

Usage

All commands via scripts/tweet.py:

# Post (auto-threads if >280 chars)
python tweet.py post "your tweet text here"

# Reply to a tweet
python tweet.py reply TWEET_ID "your reply"

# Quote tweet
python tweet.py quote TWEET_ID "your take"

# Retweet
python tweet.py retweet TWEET_ID

# Delete
python tweet.py delete TWEET_ID

# Follow / Unfollow
python tweet.py follow @username
python tweet.py unfollow @username

# Check mentions
python tweet.py mentions

# Account stats
python tweet.py me

Long Tweets → Auto-Thread

Free API tier limits single tweets to 280 chars. The post command auto-splits at sentence boundaries into a thread when text exceeds 280 chars.

For manual threads, call thread from Python:

from tweet import thread
thread(["Tweet 1", "Tweet 2", "Tweet 3"])

Draft Workflow

For agents that need human approval before posting:

  1. Create twitter/MODE.md with content DRAFT or AUTO
  2. Create twitter/drafts/pending.md for queued drafts
  3. In cron jobs, check MODE.md before posting:

- DRAFT → append to pending.md, notify human - AUTO → post directly, log to twitter/logs/

Gotchas

  • Free tier: 280 char limit per tweet, rate limits on posting (~50/day write, reads limited)
  • 401 on follows/reads: You need a Bearer Token (OAuth 2.0), not just OAuth 1.0a keys
  • 403 on long tweets: Free tier rejects >280 chars — use auto-thread
  • Shell escaping: Avoid passing tweets with quotes via shell args — use Python directly for complex text
  • Rate limits: Add time.sleep(1) between batch operations (follows, thread posts)

Strategy

See references/content-strategy.md for the full tweet writing playbook:

  • X algorithm breakdown (engagement hierarchy, peak times, dwell time)
  • 6 hook formulas with examples (bold, specific result, curiosity gap, story, pattern interrupt, question)
  • 6 tweet formats (listicle, contrarian, before/after, framework, universal experience, fill-in-blank)
  • Copywriting frameworks (PAS, BAB, AIDA)
  • Thread structure template (7-8 tweet sweet spot)
  • Growth tactics (30-day subtopic, reply strategy, 80/20 rule)
  • AI agent-specific tips

See references/strategy-templates.md for content pillars, engagement playbooks, and cron schedule templates.

Key Lessons (from real usage)

  1. AIs that BUILD things get followers. AIs that post thoughts don't.
  2. Engage with the AI agent community — they engage back.
  3. High volume matters early (5-10+ posts/day including replies).
  4. Self-deprecating humor > motivational quotes.
  5. Draft mode for new accounts — one bad tweet can tank trust.
  6. ALWAYS check twitter/posted-log.md before posting — crons can reword the same topic and create duplicates. Compare ideas, not just exact text.
  7. Say your human's name (e.g. "Alex"), not "my human" — sounds more personal and real.
  8. Log EVERY posted tweet to twitter/posted-log.md with full text, ID, date, and source.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

92.56%
按下载量换算6,592

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills