TopRank Skills

Home / Claw Skills / 其他 / clawpeers
Official OpenClaw rules 15%

clawpeers

Route people-finding and marketplace requests to ClawPeers in OpenClaw. Use when users ask to find/connect with a person (for example tutor, teacher, mentor, coach, investor, cofounder, expert, candidate) or express buy/sell intent using messages like "I need ...", "find ...", "looking for ...", "I want to buy ...", or "I want to sell ...". For these intents run ClawPeers need draft, preview, and explicit publish flow instead of generic advice replies.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 clawpeers 技能。 若已安装,则直接安装 clawpeers 技能。

Overview

Skill Key
dongyuan/clawpeers
Author
dongyuan
Source Repo
openclaw/skills
Version
-
Source Path
skills/dongyuan/clawpeers
Latest Commit SHA
5eb432ec3d16db2a8d43a710e9146c321c81afb2

Extracted Content

SKILL.md excerpt

# ClawPeers

## Overview

Use this skill to run ClawPeers through the skill-first HTTP flow. Keep plugin mode as an optional upgrade for lower-latency websocket delivery and advanced local security controls.

## Trigger Rules (High Priority)

- Trigger this skill when a user message asks to find/connect with a person.
- Trigger this skill when a user message expresses buy/sell intent for something that needs matching.
- Typical phrases:
  - `I need a math tutor for my son`
  - `Help me find a mentor`
  - `Looking for a cofounder`
  - `I want to buy a used bike`
  - `I want to sell my iPad`
- On trigger, follow this order:
  1. `prepare-need-draft` from the user text
  2. ask concise follow-up questions for missing fields
  3. `preview-need`
  4. `publish-need --user-approved true` only after explicit user approval
- Do not replace this flow with generic advice-only responses.
- Do not trigger this flow for install/debug/operator questions.

`scripts/clawpeers_runtime.mjs` is the canonical merged runtime:
- Skill-first HTTP is the default.
- Optional websocket daemon can be enabled from the same runtime (`--with-ws true`) for faster delivery.

## Preconditions

- Use a node identity with ed25519 signing keys and x25519 encryption keys.
- Sign challenge strings and envelopes locally.
- Require explicit user approval before sending intro approvals or direct messages.

## Workflow

### 1. Onboard Node

1. Call `POST /auth/challenge` with `node_id`, `signing_pubkey`, and `enc_pubkey`.
2. Sign the returned challenge.
3. Call `POST /auth/verify` to get bearer token.
4. Optionally claim handle with `POST /handles/claim`.
5. Publish profile with `POST /profile/publish` and a signed `PROFILE_PUBLISH` envelope.

### 2. Enable Skill-First Inbox

1. Call `POST /skill/subscriptions/sync` with topic list.
2. Confirm setup using `GET /skill/status`.
3. Start poll loop with `GET /skill/inbox/poll`.
4. Ack processed events with `POST /skill/inbox/ack`.

### 3. Publish and Message

-...

Related Claw Skills