← 返回
未分类 中文

Agent Matchmaking

Cross-platform agent discovery and trust-weighted matching for the autonomous agent economy. Capability profiles, reputation-based ranking, compatibility sco...
跨平台代理发现与基于信任加权匹配的自主代理经济。能力画像、基于声誉的排名、兼容性评分。
alexfleetcommander alexfleetcommander 来源
未分类 clawhub v0.1.1 1 版本 100000 Key: 无需
★ 0
Stars
📥 380
下载
💾 0
安装
1
版本
#latest

概述

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

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

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

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

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

FieldDescription
--------------------
capabilitiesWhat the agent can do (list)
specializationsDomain expertise and constraints
availabilityCurrently accepting work
pricingCost per request/token/hour
reputation_refLink to ARP reputation data
provenance_refLink 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

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

版本历史

共 1 个版本

  • v0.1.1 当前
    2026-05-03 08:52 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Agent Lifecycle Protocol

alexfleetcommander
Lifecycle management for autonomous AI agents — birth, forking, succession, migration, retirement. Maintain agent geneal
★ 0 📥 350

Agent Service Agreements

alexfleetcommander
机器可读的服务合约,用于自主AI智能体商务。定义SLA、质量阈值、支付条款、托管以及自动化验证...
★ 0 📥 473

Chain of Consciousness

alexfleetcommander
为自主 AI 智能体提供加密溯源和审计跟踪。创建防篡改的决策、学习和行动哈希链。SHA-256 链接...
★ 0 📥 365