by inferen-sh
管理 Twitter/X 平台需要重复的发帖和互动任务。该技能通过 inference.sh CLI 平台自动化推文、点赞、转发、私信和关注功能。
1. 打开 Claude 聊天界面
2. 点击下方 "📋 复制" 按钮
3. 粘贴到 Claude 聊天框中并发送
4. 输入 "使用 twitter-automation 技能" 开始使用
=== twitter-automation 技能 === 作者: inferen-sh 描述: 管理 Twitter/X 平台需要重复的发帖和互动任务。该技能通过 inference.sh CLI 平台自动化推文、点赞、转发、私信和关注功能。 使用方法: 1. 调用技能: "使用 twitter-automation 技能" 2. 提供相关信息: 根据技能要求提供必要参数 3. 查看结果: 技能会返回处理结果 示例: "使用 twitter-automation 技能,帮我分析一下这段代码"
这种方法适用于所有 Claude 用户,不需要安装额外工具。
productivity
low
Automate Twitter/X via inference.sh CLI.

Requires inference.sh CLI (
infsh). Get installation instructions:npx skills add inference-sh/skills@agent-tools
infsh login
# Post a tweet
infsh app run x/post-tweet --input '{"text": "Hello from inference.sh!"}'
| App | App ID | Description |
|---|---|---|
| Post Tweet | x/post-tweet | Post text tweets |
| Create Post | x/post-create | Post with media |
| Like Post | x/post-like | Like a tweet |
| Retweet | x/post-retweet | Retweet a post |
| Delete Post | x/post-delete | Delete a tweet |
| Get Post | x/post-get | Get tweet by ID |
| Send DM | x/dm-send | Send direct message |
| Follow User | x/user-follow | Follow a user |
| Get User | x/user-get | Get user profile |
infsh app run x/post-tweet --input '{"text": "Just shipped a new feature! 🚀"}'
infsh app sample x/post-create --save input.json
# Edit input.json:
# {
# "text": "Check out this AI-generated image!",
# "media_url": "https://your-image-url.jpg"
# }
infsh app run x/post-create --input input.json
infsh app run x/post-like --input '{"tweet_id": "1234567890"}'
infsh app run x/post-retweet --input '{"tweet_id": "1234567890"}'
infsh app run x/dm-send --input '{
"recipient_id": "user_id_here",
"text": "Hey! Thanks for the follow."
}'
infsh app run x/user-follow --input '{"username": "elonmusk"}'
infsh app run x/user-get --input '{"username": "OpenAI"}'
infsh app run x/post-get --input '{"tweet_id": "1234567890"}'
infsh app run x/post-delete --input '{"tweet_id": "1234567890"}'
# 1. Generate image
infsh app run falai/flux-dev-lora --input '{"prompt": "sunset over mountains"}' > image.json
# 2. Post to Twitter with the image URL
infsh app run x/post-create --input '{
"text": "AI-generated art of a sunset 🌅",
"media_url": "<image-url-from-step-1>"
}'
# 1. Generate video
infsh app run google/veo-3-1-fast --input '{"prompt": "waves on a beach"}' > video.json
# 2. Post to Twitter
infsh app run x/post-create --input '{
"text": "AI-generated video 🎬",
"media_url": "<video-url-from-step-1>"
}'
# Full platform skill (all 150+ apps)
npx skills add inference-sh/skills@agent-tools
# Image generation (create images to post)
npx skills add inference-sh/skills@ai-image-generation
# Video generation (create videos to post)
npx skills add inference-sh/skills@ai-video-generation
# AI avatars (create presenter videos)
npx skills add inference-sh/skills@ai-avatar-video
Browse all apps: infsh app list
View Count
0
Download Count
0
Favorite Count
0
Quality Score
72