opencli-agent

当用户希望通过命令行自动化与网站或在线服务交互时,应使用本技能。它支持在 Twitter/X 上发帖、浏览 Reddit、获取 B站热门、下载小红书内容等 70+ 个平台的操作——全部通过 opencli 工具完成。触发场景包括社交媒体操作(发帖、点赞、关注、搜索)、内容获取(热门、时间线、动态流)、下载(视频、图片、文章)以及 opencli 支持的任何网络服务自动化。

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "opencli-agent" with this command: npx skills add zhengmengkaizmk/opencli-agent

OpenCLI Agent

概述

本技能将自然语言指令转换为 opencli 命令,可自动与 70+ 个网站和服务(Twitter/X、Reddit、B站、小红书、YouTube 等)进行交互。OpenCLI 复用 Chrome 浏览器的登录会话,无需暴露密码或 API 密钥。

环境检查

在执行任何 opencli 命令之前,先运行环境检查脚本确认环境就绪:

bash {SKILL_DIR}/scripts/check_setup.sh

如果脚本报告问题,引导用户完成以下安装步骤:

  1. 安装 Node.js (>= 20.0.0): brew install node 或访问 https://nodejs.org
  2. 安装 OpenCLI: npm install -g @jackwener/opencli
  3. 安装浏览器扩展:
  4. 登录目标网站:在 Chrome 中登录目标网站(例如:发推前先在 Chrome 中登录 twitter.com)
  5. 验证:运行 opencli doctor 确认扩展和守护进程连接正常

命令执行流程

收到用户指令后,按以下流程执行:

第一步:解析意图

从用户请求中识别三个要素:

  • 平台 — 哪个服务(twitter, bilibili, reddit, xiaohongshu 等)
  • 动作 — 要做什么(post, search, like, follow, download, trending 等)
  • 参数 — 内容、数量限制、输出路径、格式等

第二步:映射为 OpenCLI 命令

使用以下格式构造命令:

opencli <platform> <action> [arguments] [--options]

参考 {SKILL_DIR}/references/command_reference.md 获取完整命令目录。如果不确定某个平台支持的命令,运行:

opencli <platform> --help

或列出所有可用命令:

opencli list

第三步:执行并反馈

通过终端执行命令,然后:

  • 解析输出,以易读格式呈现结果
  • 如果命令失败,检查错误信息并建议修复方法(例如"请先在 Chrome 中登录 Twitter")
  • 对于数据检索命令,需要进一步处理时使用 -f json 获取结构化输出

通用全局选项

选项缩写描述
--format <type>-f输出格式: table (默认), json, yaml, md, csv
--limit <n>限制结果数量
-v详细/调试模式

平台命令速查

社交媒体 — 发帖与互动

Twitter/X:

# 发布推文
opencli twitter post "Hello World"

# 回复特定推文
opencli twitter reply <tweet_id> "reply content"

# 点赞推文
opencli twitter like <tweet_id>

# 关注用户
opencli twitter follow <username>

# 取消关注
opencli twitter unfollow <username>

# 搜索推文
opencli twitter search "keyword" --limit 10

# 获取时间线
opencli twitter timeline --limit 20

# 获取热门话题
opencli twitter trending

# 获取用户资料
opencli twitter profile <username>

# 拉黑 / 解除拉黑
opencli twitter block <username>
opencli twitter unblock <username>

# 收藏
opencli twitter bookmark <tweet_id>
opencli twitter unbookmark <tweet_id>

# 删除推文
opencli twitter delete <tweet_id>

# 下载媒体
opencli twitter download <tweet_id> --output ./twitter

Reddit:

opencli reddit hot --limit 10                          # 获取热门帖子
opencli reddit search "keyword" --limit 10             # 搜索帖子
opencli reddit post <subreddit> "title" "body"         # 发帖
opencli reddit comment <post_id> "comment content"     # 评论

Facebook:

opencli facebook feed --limit 10     # 获取动态流
opencli facebook post "content"      # 发布动态

Instagram:

opencli instagram feed --limit 10        # 获取动态
opencli instagram profile <username>     # 查看用户资料

LinkedIn:

opencli linkedin feed --limit 10        # 获取动态
opencli linkedin profile <username>     # 查看用户资料

Bluesky:

opencli bluesky feed --limit 10     # 获取动态
opencli bluesky post "content"      # 发布帖子

内容平台 — 中文

Bilibili (B站):

opencli bilibili hot --limit 10                            # 获取热门视频
opencli bilibili search "keyword" --limit 10               # 搜索视频
opencli bilibili download <BV_ID> --output ./bilibili      # 下载视频(需 yt-dlp)

Xiaohongshu (小红书):

opencli xiaohongshu hot --limit 10                             # 获取热门笔记
opencli xiaohongshu search "keyword" --limit 10                # 搜索笔记
opencli xiaohongshu download <note_id> --output ./xhs          # 下载笔记(图片/视频)

Zhihu (知乎):

opencli zhihu hot --limit 10                   # 获取热门问题
opencli zhihu search "keyword" --limit 10      # 搜索问答

Weibo (微博):

opencli weibo hot --limit 10                   # 获取热搜
opencli weibo search "keyword" --limit 10      # 搜索微博

Douyin (抖音):

opencli douyin hot --limit 10                  # 获取热门视频
opencli douyin search "keyword" --limit 10     # 搜索视频

新闻与科技

HackerNews:

opencli hackernews top --limit 10      # 获取热门文章
opencli hackernews new --limit 10      # 获取最新文章

Product Hunt:

opencli producthunt top --limit 10     # 获取热门产品

桌面应用控制

opencli cursor chat "message"          # 在 Cursor IDE 中发送消息
opencli chatgpt send "message"         # 向 ChatGPT 桌面版发送消息
opencli notion search "keyword"        # 在 Notion 中搜索

外部 CLI 集线器

OpenCLI 可以代理并自动安装外部 CLI 工具:

# 如果 gh 未安装,会自动安装后再执行命令
opencli gh pr list --limit 5
opencli docker ps

错误处理

错误原因解决方案
Extension not connectedChrome 扩展未加载或 Chrome 未运行确保 Chrome 已打开且扩展已启用
Unauthorized / 空数据未登录目标网站在 Chrome 中登录该网站
Command not foundopencli 未安装或不在 PATH 中运行 npm install -g @jackwener/opencli
Node version errorNode.js 版本过低 (< 20.0.0)升级 Node.js 到 20.0.0 以上
Timeout页面加载过慢或站点被屏蔽检查网络连接;使用 -v 查看调试信息

重要说明

  • 执行写操作(发帖、点赞、关注等)前,始终确保用户已在 Chrome 中登录目标网站
  • 对于公开数据的只读操作(如 hackernews top),无需登录
  • 视频下载可能需要安装 yt-dlp:brew install yt-dlp
  • 需要程序化处理输出时使用 -f json
  • 当用户请求中平台不明确时,请求用户澄清
  • 发现新命令或未文档化命令,运行 opencli listopencli <platform> --help

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

Claude Chrome

Use Claude Code with Chrome browser extension for web browsing and automation tasks. Alternative to OpenClaw's built-in browser tools.

Registry SourceRecently Updated
Coding

App Builder

Build, edit, and deploy Instant-backed apps using npx instant-cli, create-instant-app (Next.js + Codex), GitHub (gh), and Vercel (vercel). Use when asked to create a new app, modify an existing app, fix bugs, add features, or deploy/update an app. Projects live under ~/apps; always work inside the relevant app folder.

Registry SourceRecently Updated
Coding

Opengraph Io

Extract web data, capture screenshots, scrape content, and generate AI images via OpenGraph.io. Use when working with URLs (unfurling, previews, metadata), capturing webpage screenshots, scraping HTML content, asking questions about webpages, or generating images (diagrams, icons, social cards, QR codes). Triggers: 'get the OG tags', 'screenshot this page', 'scrape this URL', 'generate a diagram', 'create a social card', 'what does this page say about'.

Registry SourceRecently Updated
Coding

Xlsx Pro

Compétence pour manipuler les fichiers Excel (.xlsx, .xlsm, .csv, .tsv). Utiliser quand l'utilisateur veut : ouvrir, lire, éditer ou créer un fichier tableur ; ajouter des colonnes, calculer des formules, formater, créer des graphiques, nettoyer des données ; convertir entre formats tabulaires. Le livrable doit être un fichier tableur. NE PAS utiliser si le livrable est un document Word, HTML, script Python standalone, ou intégration Google Sheets.

Registry SourceRecently Updated