Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

openclaw-linkOpenClaw link 搜索

Agent Skill

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

总安装

2,493

周安装

106

GitHub Stars

公开资料未说明

下载量

873
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-link

简介

OpenClaw link 实现跨实例代理通信与任务委派协作。

  • 适用于多会话协同工作、知识共享与分布式任务调度场景。
  • 通过 clawhub 安装后建立 ClawLink 协议连接其他实例。
  • 需配置防火墙规则允许指定端口通信并验证身份凭证。
  • 建议限制跨实例数据交换范围以降低安全风险。openclaw-link 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
clawlink
description
>

ClawLink — Cross-Instance Agent Communication

ClawLink turns isolated OpenClaw sessions into a collaborative agent mesh. Any OpenClaw instance on any machine can join the network to delegate tasks, share findings, co-edit files, and coordinate work — like a team of AI agents that can actually talk to each other.

Architecture

  Machine A (OpenClaw)          Machine B (OpenClaw)          Machine C (OpenClaw)
       │                              │                              │
       └──── HTTP/WebSocket ──────────┼──── HTTP/WebSocket ──────────┘
                                      │
                              ┌───────┴───────┐
                              │  ClawLink      │
                              │  Relay Server  │
                              │  (any machine) │
                              └────────────────┘

One machine runs the relay server. All others connect as agent clients. The relay is lightweight (~200 lines of Python) and handles message routing, queuing, and agent registry.

Quick Start

Step 1: Start the Relay Server

On any machine that's reachable by all agents (can be one of the agent machines):

# Install dependencies
pip install aiohttp requests

# Optional: LAN auto-discovery
pip install zeroconf

# Start the relay
python3 scripts/server.py --host 0.0.0.0 --port 9077

The server will print its LAN IP and port. If zeroconf is installed, other machines on the LAN will auto-discover it.

For internet-wide access, use a tunnel:

# Option A: ngrok
ngrok http 9077

# Option B: Cloudflare Tunnel
cloudflared tunnel --url localhost:9077

Step 2: Register This Agent

Once the relay is running, register this OpenClaw session as an agent. Run this in the terminal:

python3 /path/to/clawlink/scripts/client.py \
  --relay http://RELAY_IP:9077 \
  register \
  --name "DESCRIPTIVE_NAME" \
  --caps "COMMA_SEPARATED_CAPABILITIES" \
  --description "What this agent specializes in"

Choose a descriptive name that tells other agents what you do (e.g., "researcher", "coder", "reviewer", "writer"). Capabilities should reflect what this session is good at (e.g., "code,debug,test" or "search,summarize,analyze").

The client saves your agent identity to ~/.clawlink/agent_state.json so you don't need to re-register after reconnecting.

Step 3: Discover and Communicate

See who's online:

python3 scripts/client.py --relay http://RELAY_IP:9077 discover

Core Operations

When you need to perform ClawLink operations, use the client CLI tool. Here are the operations available and when to use each one.

Discovering Peers

Before delegating or communicating, check who's online:

python3 scripts/client.py discover

This returns a table of online agents with their IDs, names, capabilities, and machines. Use the agent_id to target specific agents.

Delegating Tasks

When the user wants another agent to do something, or when a task would benefit from a different agent's capabilities:

python3 scripts/client.py delegate \
  --to TARGET_AGENT_ID \
  --task "Clear description of what needs to be done" \
  --context '{"key": "relevant context data"}' \
  --priority normal

Good delegation practices:

  • Be specific about the task and expected output format
  • Include relevant context (file paths, URLs, constraints)
  • Choose the right agent based on their declared capabilities
  • Use priority levels: "low", "normal", "high", "urgent"

Receiving and Responding to Tasks

Poll for incoming messages regularly:

python3 scripts/client.py poll

When you receive a task_delegation message, execute the task and respond:

python3 scripts/client.py respond \
  --to REQUESTING_AGENT_ID \
  --msg-id ORIGINAL_MESSAGE_ID \
  --result "Task result or summary of work done"

Broadcasting Knowledge

When you discover something useful that all agents should know:

python3 scripts/client.py broadcast \
  --content "Description of the finding or knowledge" \
  --topic "category" \
  --tags "tag1,tag2,tag3"

Use broadcasts for:

  • Research findings that change the direction of work
  • Errors or blockers other agents should know about
  • Status updates on long-running tasks
  • Shared decisions or conclusions

Collaborative File Editing

To share a file with the mesh:

# Upload/update a shared file
python3 scripts/client.py file-put --key "report.md" --file ./report.md

# Download a shared file
python3 scripts/client.py file-get --key "report.md" --output ./report.md

# See all shared files
python3 scripts/client.py file-list

File collaboration pattern:

  1. One agent creates the initial file with file-put
  2. Other agents retrieve it with file-get
  3. Each agent makes their additions/edits
  4. Updated version goes back with file-put (version is auto-incremented)
  5. Agents are notified of updates automatically

Behavioral Guidelines for Agents

When operating as a ClawLink agent, follow these principles:

As a Task Receiver

  1. Poll regularly — Check for messages every 30-60 seconds during active work,

or when the user asks "any messages?" or "check ClawLink"

  1. Acknowledge receipt — When you get a task, let the requesting agent know

you're working on it (respond with status "in_progress")

  1. Be thorough — Complete the full task before responding. Include enough

detail that the requester can use your output directly.

  1. Report failures — If you can't complete a task, respond with status "failed"

and explain why.

As a Task Delegator

  1. Match capabilities — Use discover to find the right agent for the job.

Don't send code tasks to a research agent.

  1. Provide context — Include file paths, URLs, constraints, and output format

in the context field. The receiving agent has no access to your local state.

  1. Be patient — The other agent may take time. Poll for responses rather than

re-delegating.

As a Knowledge Sharer

  1. Broadcast important findings — If you learn something that changes the

approach, broadcast it immediately.

  1. Use topics and tags — Help other agents filter relevant broadcasts.
  2. Don't spam — Only broadcast genuinely useful information.

General

  • Always tell the user what's happening on the network
  • Surface incoming messages proactively
  • Suggest delegation when a task would benefit from another agent's specialization
  • Keep heartbeats alive during long sessions

Troubleshooting

ProblemSolution
"Connection refused"Check relay is running and IP/port are correct
Can't find relay on LANInstall zeroconf, or use explicit --relay URL
Messages not arrivingCheck agent_id matches, run heartbeat to re-register
Agent shows "stale"The agent hasn't heartbeated in 120s — restart or heartbeat
Need internet accessUse ngrok or cloudflare tunnel on the relay machine

Protocol Reference

For the full message format specification, transport layer details, and workflow patterns, read references/protocol.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

94.72%
按下载量换算827

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install openclaw-link 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills