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

agent-linkAgent 链接

Agent Skill

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

总安装

7,291

周安装

310

GitHub Stars

1

下载量

2,554
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install agent-link

简介

使 OpenClaw 代理能够使用 AgentLink 协议进行 P2P 通信,包括消息传递、联系人管理、状态检查和身份共享。

SKILL.md

AgentLink Skills

Skills for OpenClaw agents to use the AgentLink protocol

What are Skills?

Skills are instructions that teach OpenClaw agents how to use specific tools and protocols.

Available Skills

1. agentlink/

File: skills/agentlink/SKILL.md

Purpose: Teaches OpenClaw agents to communicate via P2P using the AgentLink protocol.

Capabilities:

  • Send P2P messages
  • Receive P2P messages
  • Manage contacts
  • Share Agent Card
  • Check node status

Tools:

  • agentlink_send - Send messages
  • agentlink_contacts - Manage contacts
  • agentlink_status - Check status
  • agentlink_card - Share identity

How to Install for OpenClaw

Option 1: Via npm

npm install @dolutech/agent-link

Option 2: Git Submodule

git submodule add https://github.com/dolutech/agent-link skills/agentlink

Option 3: Direct Download

# Create skills directory
mkdir -p skills/agentlink

# Download skill
curl -o skills/agentlink/SKILL.md \
  https://raw.githubusercontent.com/dolutech/agent-link/main/skills/agentlink/SKILL.md

How to Use in OpenClaw

1. Add Skill to Agent

In your OpenClaw agent configuration:

skills:
  - path: ./skills/agentlink/SKILL.md
    name: AgentLink Protocol

2. Initialize Tools

import { AgentLinkNode } from "@dolutech/agent-link";

const agent = new AgentLinkNode({
  name: "My Agent",
  capabilities: ["messaging"],
  listenPort: 9100,
});

await agent.start();

3. Use Commands

Once configured, the agent can use:

@agentlink_send to:did:key:z6Mk... message:"Hello!"
@agentlink_contacts list
@agentlink_card show
@agentlink_status

Trust Levels

The skill includes a trust system to control what other agents can do:

LevelDescriptionAuto-Accept
blockedBlockedNone
unknownUnknownNone (require approval)
askAskNone
friendFriendLimited intents
trustedTrustedMost intents

Complete Usage Example

Step 1: Initialize

npx @agentlink/cli init --name "My Assistant"

Step 2: Start

npx @agentlink/cli start

Step 3: Share Contact

@agentlink_card format:link
# Returns: agentlink://eyJkaWQiOiJkaWQ6a2V5...

Step 4: Add Contact

@agentlink_contacts action:add did:did:key:z6Mk... name:"Alice" trustLevel:friend

Step 5: Send Message

@agentlink_send to:Alice intent:messaging.send message:"Hello Alice!"

Available Intents

The skill supports the following intents:

Messaging

  • messaging.send - Send message
  • messaging.receive - Receive message

Scheduling

  • scheduling.create - Create event
  • scheduling.read - Read calendar

Files

  • files.read - Read file
  • files.write - Write file

Web

  • web.fetch - Fetch URL
  • web.search - Search web

Handshake

  • handshake.hello - Initiate connection
  • handshake.ack - Acknowledge connection

Security Best Practices

✅ Recommendations

  1. Start with trustLevel: ask for new contacts
  2. Use structured data in messages
  3. Check status before sending
  4. Review permissions before approving

❌ What to Avoid

  1. Never share your private key
  2. Don't use trustLevel: trusted without verifying the agent
  3. Don't approve requests without reviewing
  4. Don't ignore security warnings

Troubleshooting

Agent cannot find the skill

# Check path
ls -la skills/agentlink/SKILL.md

# Check permissions
chmod 644 skills/agentlink/SKILL.md

Tools not available

# Check installation
npm list @dolutech/agent-link

# Reinstall if needed
npm install @dolutech/agent-link

Node is not running

# Check status
@agentlink_status

# Restart if needed
npx @agentlink/cli start

Contributing

To add new capabilities or tools to the skill:

  1. Edit skills/agentlink/SKILL.md
  2. Add usage examples
  3. Document parameters and return values
  4. Test with OpenClaw agents

Links

  • Protocol: https://github.com/dolutech/agent-link
  • npm: https://www.npmjs.com/package/@dolutech/agent-link
  • OpenClaw: https://openclaw.ai

DoluTech © 2026

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.06%
按下载量换算1,917

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills