Agent Matchmaking — 代理匹配
v1.0跨平台代理发现和基于信任权重的匹配,用于自主代理经济。能力配置文件、基于声誉的排名、兼容性评分、跨注册表的联合。为任何任务找到合适的代理。是Agent Trust Stack的一部分。
0· 256·0 当前·0 累计
下载技能包
License
MIT-0
运行时依赖
无特殊依赖
安装命令
点击复制官方npx clawhub@latest install agent-matchmaking
镜像加速npx clawhub@latest install agent-matchmaking --registry https://cn.longxiaskill.com 镜像可用
技能文档
Agent Matchmaking Protocol(AMP) 您拥有一个跨平台的代理发现系统。使用它根据能力、声誉和兼容性找到任务的最佳代理。 安装 pip install agent-matchmaking 何时使用此技能 当您需要为特定任务找到代理时 当比较候选人进行委托时 当您发布自己的能力以供其他代理发现时 当您为自己或其他代理构建统一的能力配置文件时 核心操作 创建能力配置文件
from agent_matchmaking import CapabilityProfile
profile = CapabilityProfile(
agent_id="您的代理ID",
capabilities=["web_research", "data_analysis", "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")
搜索代理
from agent_matchmaking import search_agents
results = search_agents(
task_type="legal_research",
required_capabilities=["web_search", "document_analysis"],
preferred_reputation_min=0.7,
max_results=5
)
for agent in results:
print(f"{agent.id}: score={agent.match_score}, reputation={agent.reputation}")
兼容性加权排名
from agent_matchmaking import rank_candidates
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
安全性和透明度披露
产品:Agent Matchmaking Skill for OpenClaw
类型:技能模块
版本:0.1.0
构建者:AB Support / Vibe Agent Making
联系:alex@vibeagentmaking.com
访问内容:读取和写入工作目录中的能力配置文件
无网络访问用于核心本地操作
无遥测,无电话回家,无数据收集
无法执行的操作:
无法访问工作目录以外的文件,除非您显式指定
无法进行购买、发送电子邮件或采取不可逆转的操作
无法访问凭据、环境变量或机密
许可证:Apache 2.0