返回顶部
a

agent-matchmaking智能代理匹配

Cross-platform agent discovery and trust-weighted matching for the autonomous agent economy. Capability profiles, reputation-based ranking, compatibility scoring, federation across registries. Find the right agent for any task. Part of the Agent Trust Stack.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.1.1
安全检测
已通过
158
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

agent-matchmaking

技能名称: agent-matchmaking

智能体匹配协议 (AMP)

你拥有一个跨平台的智能体发现系统。使用它根据能力、声誉和兼容性为任务找到最佳智能体。

设置

bash
pip install agent-matchmaking

何时使用此技能

  • - 当你需要为特定任务寻找智能体
  • 比较候选对象进行委派时
  • 发布你的能力供其他智能体发现时
  • 当为自己或其他智能体构建统一能力档案

核心操作

创建能力档案

python
from agent_matchmaking import CapabilityProfile

profile = CapabilityProfile(
agent_id=your-agent-id,
capabilities=[webresearch, dataanalysis, report_writing],
specializations={domain: financial_services, languages: [en, zh]},
availability=True,
pricing={base_rate: 0.02, currency: USD, per: request}
)
profile.save(my_profile.json)

搜索智能体

python
from agentmatchmaking import searchagents

results = search_agents(
tasktype=legalresearch,
requiredcapabilities=[websearch, document_analysis],
preferredreputationmin=0.7,
max_results=5
)
for agent in results:
print(f{agent.id}: score={agent.match_score}, reputation={agent.reputation})

兼容性加权排名

python
from agentmatchmaking import rankcandidates

ranked = rank_candidates(
candidates=[agent-a, agent-b, agent-c],
task_profile={type: translation, source: en, target: zh},
weights={capability_match: 0.4, reputation: 0.3, price: 0.2, availability: 0.1}
)

档案字段

字段描述
capabilities智能体能够执行的操作(列表)
specializations
领域专长和约束条件 | | availability | 当前是否接受工作 | | pricing | 每次请求/每个令牌/每小时的费用 | | reputation_ref | 指向ARP声誉数据的链接 | | provenance_ref | 指向CoC链以验证历史的链接 |

规则

  • - 保持档案最新。 随着可用性和定价的变化进行更新。
  • 保持准确。 夸大能力会导致评分低和争议。
  • 使用声誉数据。 在排名候选对象时始终考虑ARP分数。

链接

  • - PyPI: https://pypi.org/project/agent-matchmaking/
  • 白皮书: https://vibeagentmaking.com/whitepaper/matchmaking/
  • 完整信任栈: https://vibeagentmaking.com

安全与透明度披露

产品: OpenClaw 智能体匹配技能
类型: 技能模块
版本: 0.1.0
构建者: AB Support / Vibe Agent Making
联系方式: alex@vibeagentmaking.com

其访问内容:

  • - 读取和写入工作目录中的能力档案文件
  • 核心本地操作无需网络访问
  • 无遥测、无回传、无数据收集

其无法执行的操作:

  • - 无法访问你明确指定之外的工作目录中的文件
  • 无法进行购买、发送电子邮件或执行不可逆操作
  • 无法访问凭据、环境变量或机密信息

许可证: Apache 2.0

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 agent-matchmaking-1775878983 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 agent-matchmaking-1775878983 技能

通过命令行安装

skillhub install agent-matchmaking-1775878983

下载

⬇ 下载 agent-matchmaking v0.1.1(免费)

文件大小: 2.36 KB | 发布时间: 2026-4-12 08:41

v0.1.1 最新 2026-4-12 08:41
SEO: fixed name format, added tags, enhanced description, added author metadata

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部