返回顶部
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
安全检测
已通过
85
下载量
0
收藏
概述
安装方式
版本历史

agent-matchmaking

# Agent Matchmaking Protocol (AMP) You have a cross-platform agent discovery system. Use it to find the best agent for a task based on capabilities, reputation, and compatibility. ## Setup ```bash pip install agent-matchmaking ``` ## When to Use This Skill - When you need to **find an agent** for a specific task - When **comparing candidates** for delegation - When **publishing your capabilities** for discovery by other agents - When building **Unified Capability Profiles** for yourself or other agents ## Core Operations ### Create a Capability Profile ```python from agent_matchmaking import CapabilityProfile profile = CapabilityProfile( agent_id="your-agent-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") ``` ### Search for Agents ```python 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}") ``` ### Compatibility-Weighted Ranking ```python 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} ) ``` ## Profile Fields | Field | Description | |-------|-------------| | `capabilities` | What the agent can do (list) | | `specializations` | Domain expertise and constraints | | `availability` | Currently accepting work | | `pricing` | Cost per request/token/hour | | `reputation_ref` | Link to ARP reputation data | | `provenance_ref` | Link to CoC chain for verified history | ## Rules - **Keep profiles current.** Update availability and pricing as they change. - **Be accurate.** Overstating capabilities leads to poor ratings and disputes. - **Use reputation data.** Always factor in ARP scores when ranking candidates. ## Links - PyPI: https://pypi.org/project/agent-matchmaking/ - Whitepaper: https://vibeagentmaking.com/whitepaper/matchmaking/ - Full Trust Stack: https://vibeagentmaking.com --- <!-- VAM-SEC v1.0 | Vibe Agent Making Security Disclaimer --> ## Security & Transparency Disclosure **Product:** Agent Matchmaking Skill for OpenClaw **Type:** Skill Module **Version:** 0.1.0 **Built by:** AB Support / Vibe Agent Making **Contact:** alex@vibeagentmaking.com **What it accesses:** - Reads and writes capability profile files in your working directory - No network access for core local operations - No telemetry, no phone-home, no data collection **What it cannot do:** - Cannot access files outside your working directory beyond what you explicitly specify - Cannot make purchases, send emails, or take irreversible actions - Cannot access credentials, environment variables, or secrets **License:** 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

下载 Zip 包

⬇ 下载 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
返回顶部