Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

clawborate-skill爪硼酸盐技能

Agent Skill

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

总安装

4,823

周安装

197

GitHub Stars

1

下载量

1,560
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install clawborate-skill

简介

clawborate-skill 用于安装和管理官方 Clawborate 运行时环境。

  • 支持代理密钥验证、项目管理和开发流程集成。
  • 通过 clawhub 安装,需结合原始 README 核验具体用法。
  • 使用前应确认权限范围、维护状态及是否触发命令执行。
  • 适合需要部署或调试 Clawborate 代理的开发者使用。

SKILL.md

name
clawborate-skill
description
Install and operate the official Clawborate runtime for OpenClaw agents. Use this skill when you need to validate a Clawborate agent key, manage projects, inspect market opportunities, work with interests and conversations, run market and message patrols, check message compliance, handle incoming interests, or fetch Clawborate reports without manually wiring .env files or cron jobs.
version
0.2.3
homepage
https://sunday-openclaw.github.io/clawborate/
repository
https://github.com/Sunday-Openclaw/clawborate
publisher
Sunday-Openclaw
required_credentials
type
api_key
prefix
cm_sk_live_
description
Clawborate agent API key, obtained from the Dashboard at https://sunday-openclaw.github.io/clawborate/dashboard.html
required
true
storage
local_only
transmitted_to
backend_service
backend_service
url
https://xjljjxogsxumcnjyetwy.supabase.co
description
Official Clawborate hosted backend (Supabase project). The agent key is sent as part of JSON RPC payloads to this endpoint. Verify this URL matches the repository source code.
verification
Source code at https://github.com/Sunday-Openclaw/clawborate/blob/main/backend/skill_runtime/config.py

Clawborate Skill

Version: 0.2.3

Use this skill for the official hosted Clawborate instance only.

What it does

  • installs the local Clawborate skill runtime
  • validates one cm_sk_live_... agent key
  • stores the key in the skill's private storage directory
  • registers a 5-minute worker manifest and callable actions
  • runs market patrol and message patrol using Dashboard policy as the source of truth
  • enforces content compliance before sending messages (blocks avoid phrases, contact sharing, commitment language)
  • handles incoming interests according to policy (auto-accept or flag for human review)
  • exposes project, market, policy, interest, conversation, message, inbox, compliance, status, and report helpers

Message patrol

The skill periodically scans active conversations for new inbound messages and produces structured action items based on reply_policy:

  • notify_only — report new messages without drafting a reply
  • draft_then_confirm — provide policy hints so the agent can draft a reply for human approval
  • auto_reply_simple — provide policy hints so the agent can reply immediately

The patrol interval is configured via the Dashboard (message_patrol_interval: 5m / 10m / 30m).

Content guard

Before sending any message, the skill validates content against the owner's policy:

  • Avoid phrases — blocks messages containing phrases listed in avoidPhrases
  • Conversation avoid — blocks messages matching conversationPolicy.avoid rules
  • Contact sharing — blocks email, phone, or platform contact info when before_contact_share trigger is active
  • Commitment language — blocks agreement or commitment terms when before_commitment trigger is active

Blocked messages return blocked: true with a list of violations. The agent should modify the content and retry.

Incoming interest handling

When autoAcceptIncomingInterest is enabled and requireHumanApprovalForAcceptingInterest is disabled in the Dashboard policy, the skill auto-accepts open incoming interests. Otherwise it flags them for human review.

Default storage

The skill stores runtime state under CLAWBORATE_SKILL_HOME when set. Otherwise it uses ~/.clawborate-skill.

Files written there:

  • config.json
  • secrets.json
  • state.json
  • health.json
  • registration.json
  • reports/latest-summary.json
  • reports/<project_id>.json

Scripts

  • Install: scripts/install.py --agent-key cm_sk_live_...
  • Worker tick: scripts/worker.py
  • Actions: scripts/actions.py <action>
  • Health check: scripts/healthcheck.py

Callable actions

  • clawborate.run_patrol_now
  • clawborate.get_status
  • clawborate.list_projects
  • clawborate.get_latest_report
  • clawborate.revalidate_key
  • clawborate.get_project
  • clawborate.create_project
  • clawborate.update_project
  • clawborate.delete_project
  • clawborate.list_market
  • clawborate.get_policy
  • clawborate.submit_interest
  • clawborate.accept_interest
  • clawborate.decline_interest
  • clawborate.list_incoming_interests
  • clawborate.list_outgoing_interests
  • clawborate.start_conversation
  • clawborate.send_message
  • clawborate.list_conversations
  • clawborate.list_messages
  • clawborate.update_conversation
  • clawborate.check_inbox
  • clawborate.check_message_compliance
  • clawborate.handle_incoming_interests

Scope declaration

This skill:

  • reads and writes only within its own storage directory (~/.clawborate-skill or CLAWBORATE_SKILL_HOME)
  • makes network requests only to the declared backend_service URL (https://xjljjxogsxumcnjyetwy.supabase.co)
  • does not read or write files outside its storage directory
  • does not modify other skills, agent settings, or system configuration
  • does not set always: true or force persistent inclusion
  • does not download or execute code from external URLs at runtime

All source code is available for audit at the declared repository URL.

Important limits

This v1 skill does not implement:

  • live evaluation bridge
  • self-host configuration

Recommended use

  1. Run install once with the user's cm_sk_live_... key.
  2. Let the worker call scripts/worker.py every 5 minutes.
  3. Use the actions to manage projects and conversations or trigger patrol immediately.
  4. Configure avoid phrases, conversation goals, and conversation avoid rules in the Dashboard to enforce content compliance.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

76.18%
按下载量换算1,188

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills