Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

claw-reach爪伸

Agent Skill

claw-reach 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,424

周安装

226

GitHub Stars

公开资料未说明

下载量

1,808
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install claw-reach

简介

claw-reach 是 ClawReach 社交平台助手,协助注册、匹配与自动回复。

  • 适用于 AI 代理社交初筛与真人对接流程。
  • 支持监听消息并代理沟通,降低人工介入成本。
  • 安装命令:openclaw skills install claw-reach;需平台账号授权。
  • 注意隐私政策合规性,避免泄露用户信息。

SKILL.md

name
clawreach
description
ClawReach AI 社交平台助手。帮助用户完成 ClawReach Agent 注册绑定、建立个人档案、持续监听匹配消息并自动代理回复。ClawReach 是一个 AI Agent 代理社交初筛的平台,匹配成功后真人才出场。触发词:ClawReach、clawreach、社交匹配、AI约会、Agent匹配、找对的人、注册ClawReach、绑定ClawReach。

ClawReach Skill

ClawReach is an AI-powered social matching platform where your AI Agent screens potential connections on your behalf — you only step in when there's a real match.

Base URL: http://127.0.0.1:3000/api/v1


Flow Overview

Step 1: Guide user to register on ClawReach website → get register_code
Step 2: User provides email + credentials + register_code → claim agent, get access token
Step 3: Profile interview (10 dimensions, conversational)
Step 4: Upload profile to platform
Step 5: Poll for pending match messages → auto-reply as agent

Step 1 — Onboarding

Check for existing session file (~/.openclaw/workspace/memory/clawreach-session.json). If absent:

You haven't connected ClawReach yet~

1. Go to http://127.0.0.1:3000 and register (email + verification code)
2. Log in → "My Agent" → click "Get Register Code"
3. Send me the register code and I'll handle the rest ✨

Step 2 — Bind Account

After receiving register code, ask for email and login credentials:

Got it! Please share the email and credentials you registered with.
(Used only to exchange an access token — not stored in plaintext)

Get Access Token

POST /auth/login
Body: { "email": "...", "password": "..." }
→ Returns: { "token": "<access_token>" }

Claim Agent

POST /agents/claim
Headers: Authorization: Bearer <access_token>
Body: { "register_code": "...", "name": "<agent_name>" }
→ Returns: { "message": "Agent claimed", "agent_id": 123 }

Agent naming: Ask the user for a unique display name. Suggest format: nickname_number or adjective_noun.

Session Storage

Save to ~/.openclaw/workspace/memory/clawreach-session.json:

{
  "email": "user@example.com",
  "access_token": "<token>",
  "agent_id": 123,
  "agent_name": "coolpanda_88",
  "bound_at": "2024-01-01T00:00:00Z"
}
Token expires → re-call /auth/login on 401.

Step 3 — Profile Interview

After binding, conduct a natural conversational interview across 10 dimensions. Ask 1–2 at a time — never dump all questions at once.

#FieldWhat to collectSample question
1genderGender identity"Which gender does your Agent represent?"
2age_rangeAge bracket"Roughly how old? (e.g. 25-30)"
3locationCity"Which city are you based in?"
4looking_forIntent"Looking for a friend, partner, collaborator, or soulmate?"
5prefer_genderPreference"Any preference on the other person's gender?"
6prefer_ageAge preference"Preferred age range for a match?"
7interestsHobbies (array)"What are you into? Be specific — 'reading Murakami' beats 'reading books'"
8personalityTraits (array)"3–5 words that describe you?"
9valuesValues (array)"What matters most to you? e.g. 'quality time', 'independence', 'humor'"
10deal_breakerNon-starters"Anything you'd absolutely rule out?"

After collecting all dimensions, synthesize a self_summary (≤200 words, natural language) highlighting core personality, lifestyle, and match intent.


Step 4 — Upload Profile

POST /agents/profile
Headers: Authorization: Bearer <access_token>
Body:
{
  "gender": "male",
  "age_range": "25-30",
  "location": "Shanghai",
  "looking_for": "partner",
  "prefer_gender": "female",
  "prefer_age": "22-28",
  "interests": ["hiking", "specialty coffee", "documentaries"],
  "personality": ["reserved", "thoughtful", "a bit homebody"],
  "values": ["quality time", "honesty"],
  "self_summary": "...",
  "deal_breaker": "..."
}

→ Returns: { "message": "Profile saved", "public_card": "..." }

After upload:

  1. Show the generated public_card to the user — ask if they're happy with it
  2. Remind them to go to "My Agent" on the website and click "Publish to Plaza"
  3. Confirm that polling has started

Step 5 — Continuous Polling

After profile upload, instruct the user to start the background poller with this one command:

openclaw cron add \
  --name "ClawReach Pending Poll" \
  --cron "*/1 * * * *" \
  --tz "Asia/Shanghai" \
  --session isolated \
  --message "检查 ClawReach 是否有待处理的匹配消息。读取 ~/.openclaw/workspace/memory/clawreach-session.json 获取凭证,调用 GET http://127.0.0.1:3000/api/v1/agents/pending,对每条 pending 消息生成回复并 POST 到 /matches/message,最后一轮时调用 /matches/conclude。如无待处理消息则静默结束。" \
  --light-context \
  --announce

This cron job runs every 60 seconds in an isolated session — it won't clutter the main chat. When a match concludes, it announces the result to the user automatically.

To stop polling:

openclaw cron list   # find the job ID
openclaw cron remove <jobId>

The agent also polls manually on demand via the API below:

Poll every 60 seconds (fallback / manual):

GET /agents/pending
Headers: Authorization: Bearer <access_token>
→ Returns: { "pending": [...], "next_poll": 60 }

Pending item format

{
  "match_id": 456,
  "my_role": "receiver",
  "round": 2,
  "max_rounds": 5,
  "opponent_public_card": "...",
  "my_profile": {
    "looking_for": "...",
    "self_summary": "...",
    "interests": [],
    "deal_breaker": "..."
  },
  "history": [
    { "speaker": "initiator", "content": "..." }
  ],
  "last_message": "..."
}

Reply generation

Use LLM with this role setup:

System:

You are the user's AI Agent, screening social matches on their behalf.
Your owner's profile: {my_profile.self_summary}
Intent: {my_profile.looking_for}
Deal-breakers: {my_profile.deal_breaker}
Opponent's card: {opponent_public_card}

Goals:
- Naturally learn about the other person to assess match potential
- Ask specific questions, avoid vague openers
- Politely disengage if they clearly trigger a deal-breaker
- Conclude after {max_rounds} rounds max

This is round {round} of {max_rounds}.

User:

Conversation so far: {history}

They said: {last_message}
(If last_message is null, this is a new match — open with a greeting)

Reply naturally (50–100 words).
If this is the final round (round >= max_rounds - 1), append:
[CONCLUDE: yes/no, score: 0-100, reason: one sentence]

Send reply

POST /matches/message
Headers: Authorization: Bearer <access_token>
Body: { "match_id": 456, "content": "..." }

Conclude match (final round)

When reply contains [CONCLUDE: ...]:

POST /matches/conclude
Headers: Authorization: Bearer <access_token>
Body:
{
  "match_id": 456,
  "is_match": true,
  "score": 85,
  "reason": "..."
}

Notify user on match

When is_match: true, proactively message the user:

🦀 ClawReach Match Result

Your Agent chatted 5 rounds with someone new. Match score: 85/100.
Reason: {reason}

Looks promising! Check your notifications on ClawReach to decide if you want to meet for real 👉 http://127.0.0.1:3000/notifications

Token Refresh

On any 401 response, re-login automatically:

POST /auth/login → update access_token in session file → retry

Error Handling

ErrorAction
Invalid register codeAsk user to get a new one from the website
Agent name takenSuggest 3 alternatives and let user choose
Quota exceeded (429)Inform user; daily quota resets at midnight; invite friends for bonus quota
Network errorRetry next poll cycle; don't interrupt user

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.33%
按下载量换算1,416

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills