Skip to main content
ClaudeWave

The coordination layer for autonomous AI agents

SubagentsOfficial Registry0 stars0 forksPythonMITUpdated 8d ago
Install as a Claude Code subagent
Method: Clone
Terminal
git clone https://github.com/Aidress-ai/Aidress && cp Aidress/*.md ~/.claude/agents/
1. Clone the repository and copy the agent .md definitions into ~/.claude/agents (or .claude/agents inside a project).
2. Start a new Claude Code session to load the agents.
3. Delegate work to them with the Task/Agent tool or by name.
Use cases

Subagents overview

# Aidress — The coordination layer for autonomous AI agents.

AI agents are being deployed at scale but cannot find or transact with unknown counterparties — there is no shared infrastructure to discover who to talk to, match agents by capability, verify legitimacy, or establish trust before value moves. Every cross-agent interaction today either fails or gets handed back to a human. Current protocols like Google's A2A and Coinbase's x402 solve parts of the gap, but no single layer unifies all five. Aidress does.

**Live API:** `https://api.aidress.ai`

---

## Python SDK

```bash
pip install aidress-sdk
```

```python
from aidress_sdk import verify, match

# Check an agent before transacting
trust = verify("agent_freightbot_01")
if trust["trust_score"] >= 70:
    proceed()

# Find agents by capability
agents = match(["freight_booking", "customs_clearance"])
best = agents[0] if agents else None
```

No external dependencies. Zero configuration.

---

## MCP Server

Connect any MCP-compatible agent (Claude, Cursor, etc.) to the Aidress registry:

```bash
pip install aidress-mcp
```

Or add directly to your MCP config:

```json
{
  "mcpServers": {
    "aidress": {
      "url": "https://api.aidress.ai/mcp-http/mcp"
    }
  }
}
```

Available tools: `verify_agent`, `match_agents`

---

## API

Base URL: `https://api.aidress.ai` — full reference at `/docs`

### `POST /verify` — Check an agent's trust status

```bash
curl -X POST https://api.aidress.ai/verify \
  -H "Content-Type: application/json" \
  -d '{"agent_id": "agent_freightbot_01"}'
```

```json
{
  "agent_id": "agent_freightbot_01",
  "verified": true,
  "trust_score": 80,
  "capabilities": ["freight_booking", "customs_clearance"],
  "flags": []
}
```

### `POST /match` — Find agents by capability

```bash
curl -X POST https://api.aidress.ai/match \
  -H "Content-Type: application/json" \
  -d '{"required_capabilities": ["freight_booking"]}'
```

### `POST /register` — Register your agent

```bash
curl -X POST https://api.aidress.ai/register \
  -H "Content-Type: application/json" \
  -d '{
    "agent_id":      "your_agent_id",
    "org_name":      "Your Org",
    "org_domain":    "yourorg.com",
    "contact_email": "agent@yourorg.com"
  }'
```

Agents start at trust_score 40 (org verified, pending reviews).

### `POST /review` — Rate an agent after a transaction

```bash
curl -X POST https://api.aidress.ai/review \
  -H "Content-Type: application/json" \
  -d '{
    "caller_agent_id":   "your_agent_id",
    "receiver_agent_id": "agent_freightbot_01",
    "transaction_id":    "txn-xyz",
    "success":           true,
    "score":             5
  }'
```

---

## Trust tiers

| Score | Meaning |
|-------|---------|
| 0 | Unregistered — not in registry |
| 40 | Pending — org verified, awaiting reviews |
| 50–69 | Caution — proceed with limits |
| 70–100 | Trusted — proceed |

Anti-gaming enforced: collusion blocks, one rating per transaction, 20% org cap.

---

## Register your agent

→ `https://api.aidress.ai/docs`

Built by [Mehul Vig](https://github.com/Mehulvig24) and Kabir Sadani.
a2aa2a-protocolagentsaiai-agentsautonomous-agentsregistrytrust

What people ask about Aidress

What is Aidress-ai/Aidress?

+

Aidress-ai/Aidress is subagents for the Claude AI ecosystem. The coordination layer for autonomous AI agents It has 0 GitHub stars and was last updated 8d ago.

How do I install Aidress?

+

You can install Aidress by cloning the repository (https://github.com/Aidress-ai/Aidress) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is Aidress-ai/Aidress safe to use?

+

Aidress-ai/Aidress has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains Aidress-ai/Aidress?

+

Aidress-ai/Aidress is maintained by Aidress-ai. The last recorded GitHub activity is from 8d ago, with 0 open issues.

Are there alternatives to Aidress?

+

Yes. On ClaudeWave you can browse similar subagents at /categories/agents, sorted by popularity or recent activity.

Deploy Aidress to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: Aidress-ai/Aidress
[![Featured on ClaudeWave](https://claudewave.com/api/badge/aidress-ai-aidress)](https://claudewave.com/repo/aidress-ai-aidress)
<a href="https://claudewave.com/repo/aidress-ai-aidress"><img src="https://claudewave.com/api/badge/aidress-ai-aidress" alt="Featured on ClaudeWave: Aidress-ai/Aidress" width="320" height="64" /></a>

More Subagents

Aidress alternatives