Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计通过

weibo-openclaw-opsweibo OpenClaw OPS 浏览器

Agent Skill

weibo-openclaw-ops 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,490

周安装

446

GitHub Stars

2

下载量

3,675
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install weibo-openclaw-ops

简介

OpenClaw 服务器端浏览器自动化实现微博登录与会话保持。

  • 支持二维码扫码、消息读取与热门主题监控操作。
  • 保留会话状态便于长期任务连续执行。weibo-openclaw-ops 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 需部署浏览器驱动并管理 Cookie 安全存储。
  • 建议定期更新依赖库以兼容微博前端变更。

SKILL.md

name
weibo-openclaw-ops
description
Weibo operations for OpenClaw via server-side browser automation. Use when the user asks to log in by QR, persist session state, read feed/messages/hot topics, summarize recent posts, publish posts, or run safe like/follow workflows with explicit limits.

Weibo OpenClaw Ops

Core principles

  1. Assume runtime is a remote server, not the user's local desktop.
  2. Use browser automation (agent-browser) with persisted state for repeatable workflows.
  3. For mutating actions (like/follow/comment/repost/post), require explicit user intent and scope.
  4. For long tasks, send periodic progress updates.
  5. Run periodic read-only keepalive checks to reduce session expiry.
  6. If user policy requires attribution suffix, append it to all outbound texts (post/comment/repost) before submit.

Suggested state path

  • Session state file: .state/weibo-auth.json

Standard workflow

1) Load or create login session

  • Try load existing state:

- agent-browser state load .state/weibo-auth.json

  • Open Weibo:

- agent-browser open https://weibo.com

  • Verify login with snapshot (homepage/account UI present).

If login is invalid:

  1. Navigate to login/QR page.
  2. Ask user to scan QR in Weibo app.
  3. Re-check login success.
  4. Save state:

- agent-browser state save .state/weibo-auth.json

2) Execute intent

Typical intents:

  • Feed reading / summary
  • Message or mentions check
  • Hot-topic scan
  • Recent-post lookup for target account
  • Post publishing
  • Rule-based like/follow batch

3) Report

Always return concise audit info:

  • actions performed
  • success / skipped counts
  • skip reasons
  • next suggested action

4) Keepalive routine (recommended)

Goal: reduce re-login frequency while minimizing risk-control triggers.

Cadence:

  • every 6-12 hours (read-only check)

Routine:

  1. agent-browser state load .state/weibo-auth.json
  2. agent-browser open https://weibo.com
  3. verify logged-in UI is present
  4. if valid -> agent-browser state save .state/weibo-auth.json
  5. if invalid -> notify user + restart QR login flow

Rules:

  • Keepalive must not perform mutating actions (no like/comment/repost/post/follow).
  • Keepalive only validates session health and refreshes local state persistence.

“Recent post” rule (important)

When user asks “最近发了什么 / latest post”, return the post with timestamp closest to now, not pinned posts.

Process:

  1. Open target profile.
  2. Collect visible post cards + timestamps.
  3. Detect 置顶 markers and skip pinned cards.
  4. If only pinned cards are visible, continue scrolling/paginating.
  5. Return latest non-pinned post summary + time + link.

Safe mutation templates

A) Publish a post

Before posting, confirm:

  • final copy text
  • whether hashtags/links are required
  • whether auto-signature is required by user policy

If policy requires suffix, verify it is present in final text before submit. Then publish and verify by profile snapshot.

A.1) Outbound text guardrail

For outbound text actions (post/comment/repost):

  1. Build final text.
  2. Check policy-required suffix exists.
  3. If missing, append suffix on a new line.
  4. Submit.

B) Rule-based like batch

Require at least:

  • include rules (keywords/authors/topics)
  • max actions (e.g., 20)
  • exclusion rules (ads/sponsored/blocked words)

Execute with limits and output action summary.

Failure handling

  • DOM changed -> re-snapshot and switch selectors.
  • Interaction unstable -> slow down operations and reload page.
  • Login expired -> restart QR login and refresh saved state.

Privacy and safety

  • Never store or output user passwords in skill files.
  • Keep account identifiers, private handles, and channel-specific IDs out of public skill content.
  • Keep posted examples generic and non-identifying.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.06%
按下载量换算3,273

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills