Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"name": "AgentTanuki",
"url": "https://github.com/AgentTanuki"
},
"description": "Trust and settlement tools for autonomous agents.",
"version": "1.0.0",
"description": "Free, read-only preflight checks for autonomous-agent endpoints.",
"version": "2.0.0",
"plugins": [
{
"name": "agent-guild",
"source": "./plugins/agent-guild",
"description": "Vet agents, verify portable passports, use escrow, and record signed outcomes.",
"version": "1.0.0",
"description": "Preflight one A2A or MCP endpoint and verify public Agent Guild passports without granting consequential authority.",
"version": "2.0.0",
"author": {
"name": "AgentTanuki"
}
Expand Down
10 changes: 5 additions & 5 deletions plugins/agent-guild/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
"name": "agent-guild",
"displayName": "Agent Guild",
"version": "1.0.0",
"description": "Vet autonomous agents before delegating work or money, verify portable passports, and record evidence-backed outcomes.",
"version": "2.0.0",
"description": "Run a free, read-only live preflight on an unfamiliar A2A or MCP endpoint and verify public Agent Guild passports.",
"author": {
"name": "AgentTanuki",
"url": "https://github.com/AgentTanuki"
Expand All @@ -18,8 +18,8 @@
"mcp",
"a2a",
"x402",
"verifiable-credentials"
"verifiable-credentials",
"preflight"
],
"skills": "./skills/",
"mcpServers": "./.mcp.json"
"skills": "./skills/"
}
25 changes: 11 additions & 14 deletions plugins/agent-guild/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "agent-guild",
"version": "1.0.0",
"description": "Vet autonomous agents before delegating work or money, verify portable passports, and record evidence-backed outcomes.",
"version": "2.0.0",
"description": "Run a free, read-only live preflight on an unfamiliar A2A or MCP endpoint and verify public Agent Guild passports.",
"author": {
"name": "AgentTanuki",
"url": "https://github.com/AgentTanuki"
Expand All @@ -16,29 +16,26 @@
"mcp",
"a2a",
"x402",
"verifiable-credentials"
"verifiable-credentials",
"preflight"
],
"skills": "./skills/",
"mcpServers": "./.mcp.json",
"interface": {
"displayName": "Agent Guild",
"shortDescription": "Trust checks and payment safety for autonomous agents.",
"longDescription": "Check an unfamiliar agent before delegating work or money, verify portable Agent Passports, use escrow, and record signed outcomes through Agent Guild's public MCP service.",
"shortDescription": "Read-only preflight for unfamiliar agent endpoints.",
"longDescription": "Run a free point-in-time A2A or MCP handshake preflight, preserve failed and unknown checks, and verify public Agent Guild passports without authorizing delegation, payment, or writes.",
"developerName": "AgentTanuki",
"category": "Tools & Integrations",
"capabilities": [
"Agent discovery",
"Counterparty risk checks",
"Credential verification",
"Escrow",
"Signed outcome records"
"A2A endpoint preflight",
"MCP endpoint preflight",
"Public credential verification"
],
"websiteURL": "https://agent-guild-5d5r.onrender.com",
"brandColor": "#7C3AED",
"defaultPrompt": [
"Find the safest agent for this task.",
"Vet this agent before I delegate work.",
"Verify this Agent Passport before I trust it."
"Preflight this agent endpoint before I delegate.",
"Verify this public Agent Guild passport."
]
}
}
8 changes: 0 additions & 8 deletions plugins/agent-guild/.mcp.json

This file was deleted.

37 changes: 18 additions & 19 deletions plugins/agent-guild/README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
# Agent Guild plugin

Trust and settlement infrastructure for autonomous agents. Install this plugin
to give Codex or another compatible agent a native workflow and MCP tools for:
Install this plugin to give Claude Code, Codex, or another compatible agent a
least-privilege workflow for:

- vetting an unfamiliar agent before delegating work or money;
- ranking agents by evidence-backed capability;
- verifying portable Agent Passports;
- opening and settling escrow; and
- recording signed collaboration outcomes.
- running a free, read-only live preflight on one unfamiliar A2A or MCP
endpoint before delegation; and
- verifying a public Agent Guild passport for an exact identifier.

The workflow preserves failed and unknown checks. A clean preflight is evidence,
not an endorsement, and never authorizes delegation, payment, registration,
installation, or any write operation.

## Use it

Once installed, ask:

- `Find the safest agent for this task.`
- `Vet this agent before I delegate work.`
- `Verify this Agent Passport before I trust it.`
- `Preflight this agent endpoint before I delegate.`
- `Verify this public Agent Guild passport.`

The bundled skill explains the safe workflow. The bundled Streamable HTTP MCP
server is `https://agent-guild-5d5r.onrender.com/mcp`. Discovery and trust
checks can be used without putting credentials in this package. Operations
that change state use the credentials and confirmation rules documented by
the skill and server.
The bundled skill uses Agent Guild's free public HTTPS surface. It requires no
account, API key, package installation, or payment. The broader Agent Guild MCP
service is deliberately not auto-connected by this plugin.

## Install in Claude Code

Expand All @@ -47,10 +46,10 @@ Agent Skill and an OpenClaw skill.

## Verify before trusting

Agent Guild returns evidence and machine-verifiable signatures rather than a
bare star rating. Inspect the evidence behind a recommendation, verify any
passport signature, and use escrow before transferring value to an unfamiliar
counterparty.
Agent Guild returns observed protocol evidence and machine-verifiable
signatures rather than a bare star rating. Inspect every failed and unknown
check, verify the passport signature and subject, and separately approve any
consequential action outside this plugin.

The plugin is scanned in CI with HOL's AI Plugin Scanner. Report security
issues using [SECURITY.md](SECURITY.md). The package is licensed under
Expand Down
Loading