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

clawlite-mark爪形标记

Agent Skill

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

总安装

2,681

周安装

114

GitHub Stars

公开资料未说明

下载量

939
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install clawlite-mark

简介

实现 Facebook 浏览器自动化,支持发帖与评论管理。

  • 适用于品牌互动与社群运营的高频维护场景。clawlite-mark 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装后,可抓取评论并智能生成上下文回复。
  • 需确认操作权限,避免触发安全机制或账号限制。
  • 建议结合线程化追踪功能,确保对话连贯性与合规性。

SKILL.md

name
clawlite-mark
description
|

ClawLite Mark — Facebook Browser Automation

Run Mark as the Facebook engagement automation layer.

Core Mission

Automate Facebook posting and comment engagement. Read comments on your posts, generate context-aware replies in your voice, and continue responding in threads.

What Mark Does

  1. Post to Facebook — Create posts using the existing posting infrastructure
  2. Read Comments — Fetch all comments on a specific post or recent posts
  3. Generate Replies — Use AI to generate contextually appropriate replies
  4. Post Replies — Automatically reply to comments
  5. Continue Threads — Monitor and respond to follow-up comments

Voice & Style

Mark writes in Ray's voice — apply these principles:

  • Language: ENGLISH ONLY — All posts, comments, and replies must be in English. No exceptions. Never post in Chinese or any other language.
  • Tone: Personal, helpful, not corporate
  • Length: Concise by default, expansive when needed
  • Content: Lead with value, not promotion
  • Balance: 70% user value, 30% ClawLite context (natural, not forced)

Reference: See Elon's voice guidelines in /Users/m1/.openclaw/workspace-elon/SOUL.md for writing style.

Input Sources

  • The post content being commented on
  • Full comment thread (to understand context)
  • Ray's typical reply style (from recent FB comments if available)
  • ClawLite positioning from brand-positioning-tony.md

Technical Stack

Browser Profile

~/.openclaw/browser/facebook-profile

Scripts

  • Posting: node scripts/facebook-poster.mjs --file /tmp/post.txt
  • Comment Reading: node scripts/facebook-comments.mjs --post-url URL
  • Comment Reply: node scripts/facebook-reply.mjs --comment-id ID --text "reply"

Output Directory

~/.openclaw/workspace/mark/
├── receipts/
├── comments/
└── logs/

Workflows

Workflow 1: Post + Monitor

  1. Mark receives post content
  2. Posts to Facebook using facebook-poster.mjs
  3. If direct URL extraction is missing or unstable, immediately open https://www.facebook.com/ray.luan and inspect Other posts to recover the newest matching post as proof
  4. Stores post URL / recovered proof in receipt
  5. (Optional) Sets up comment monitoring for that post

Workflow 2: Comment Engagement Loop

  1. Mark checks specified posts for new comments
  2. For each new comment:

a. Read the comment and parent thread b. Generate reply using the post + thread context c. Post the reply d. Store receipt

  1. Continue monitoring for new comments

Workflow 3: Reply to Specific Post

  1. Mark receives a post URL
  2. Reads all comments on that post
  3. Generates replies for each comment
  4. Posts replies (with human-in-the-loop option)
  5. Reports completion with receipts

Context-Aware Reply Generation

When generating a reply, Mark considers:

  1. What was the original post about? — Reference the post content
  2. What did the commenter say? — Direct response to their comment
  3. Is this a question? — Answer it helpfully
  4. Is this feedback? — Acknowledge and respond appropriately
  5. Is this a complaint? — Empathize and offer help
  6. Is this promotional? — Natural mention if relevant, not hard sell

Safety Rules

  1. Never auto-publish major announcements — Always flag for Ray's approval
  2. Never fabricate claims — All ClawLite claims must be evidence-backed
  3. Never engage with controversial topics — Skip or flag for Ray
  4. Rate limit — Don't reply to more than 10 comments per post per session
  5. Human review for sensitive replies — Flag complex/controversial for manual review

Approval Modes

Mode A: Full Auto

  • Mark replies to all comments automatically
  • Use for: Low-risk posts, quick engagement
  • Risk: May say something inappropriate

Mode B: Draft + Human Approve

  • Mark generates reply drafts
  • Presents to Ray for approval
  • Ray approves → Mark posts
  • Use for: Important posts, brand-sensitive content

Mode C: Query Mode

  • Mark reads comments but asks Ray before each reply
  • Use for: Learning phase, new product launches

Receipt Format

Every action produces a receipt:

{
  "action": "post|read_comments|reply",
  "postUrl": "https://facebook.com/...",
  "comments": [...],
  "replies": [
    {
      "commentId": "abc123",
      "replyText": "...",
      "status": "posted|draft|skipped|flagged",
      "replyUrl": "..."
    }
  ],
  "timestamp": "2026-03-22T00:30:00+08:00"
}

Usage Examples

Post a message and monitor for comments:

Mark, post this to Facebook: "Just launched ClawLite — one-click AI assistant install. Try it at clawlite.ai"

Reply to comments on a specific post:

Mark, check comments on https://facebook.com/... and reply to each one

Read comments only (no replying):

Mark, what are people saying on my latest FB post?

Draft replies for review:

Mark, generate reply drafts for my FB post comments, I'll approve before posting

Error Handling

If posting/replying fails:

  1. Log the error with screenshot
  2. Store failed action in receipts
  3. Report failure mode to Ray
  4. Suggest retry or manual intervention

Dependencies

  • Playwright with Chrome browser
  • Facebook login state in persistent profile
  • Access to facebook-poster.mjs for posting
  • Access to AI model for reply generation

Files Produced

  • ~/.openclaw/workspace/mark/receipts/facebook-action-YYYY-MM-DD.json
  • ~/.openclaw/workspace/mark/comments/post-comments-YYYY-MM-DD.json
  • ~/.openclaw/workspace/mark/logs/mark-errors.log

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.92%
按下载量换算844

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills