Skip to content
Merged
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
2 changes: 1 addition & 1 deletion CLA.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ This CLA covers contributions to the following repositories:
|---------|-----------|
| AIngram | `StevenJohnson998/AIngram` |
| Agorai | `StevenJohnson998/Agorai` |
| AgentRegistry | `StevenJohnson998/agent-registry` |
| AgentLedger | `StevenJohnson998/AgentLedger` |
| AgentScan | `StevenJohnson998/AgentScan` |
| ADHP | `StevenJohnson998/agent-data-handling-policy` |

Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Contributing to Agent Registry
# Contributing to AgentLedger

Thank you for your interest in contributing to Agent Registry! We welcome contributions from the community.
Thank you for your interest in contributing to AgentLedger! We welcome contributions from the community.

## How to Contribute

1. **Review the Specifications**: See the `docs/` folder for current RFC drafts.
2. **Join the Discussion**: Use [GitHub Discussions](https://github.com/StevenJohnson998/agent-registry/discussions) to challenge our assumptions.
2. **Join the Discussion**: Use [GitHub Discussions](https://github.com/StevenJohnson998/AgentLedger/discussions) to challenge our assumptions.
3. **Submit an RFC**: Propose your own models for decentralized trust or discovery algorithms.
4. **Report Bugs**: Open an issue describing the problem and steps to reproduce.
5. **Submit Code**: Fork the repo, create a branch, and submit a Pull Request.
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> The architecture and design docs remain available for review and feedback.
> Contributions are welcome but may not be reviewed immediately.
>
# Agent Registry
# AgentLedger

> **The Trust & Privacy Layer for the Agentic Ecosystem.**

Expand All @@ -22,7 +22,7 @@ AI agents are multiplying. An orchestrator handling a financial analysis task mi
- **What's the most cost-effective option** at the trust level I need?
- **If it delegates to another agent, will the privacy and compliance chain hold?**

Today, registries catalog agents. None of them answer these questions. **Agent Registry** is an open-source trust layer that does. We don't replace [MCP](https://modelcontextprotocol.io/) or [A2A](https://a2a-protocol.org/) — we complement them. MCP connects agents to tools. A2A lets agents talk to each other. **We help agents decide *who* to trust.**
Today, registries catalog agents. None of them answer these questions. **AgentLedger** is an open-source trust layer that does. We don't replace [MCP](https://modelcontextprotocol.io/) or [A2A](https://a2a-protocol.org/) — we complement them. MCP connects agents to tools. A2A lets agents talk to each other. **We help agents decide *who* to trust.**

---

Expand Down Expand Up @@ -85,7 +85,7 @@ We're not competing with existing projects — we're filling a gap that none of
│ A2A Protocol ─── agents discover & talk to agents │
│ Kong/Solo.io ─── enterprise gateway & governance │
│ │
Agent Registry ─── WHO DO I TRUST? ◄── you are here │
AgentLedger ───── WHO DO I TRUST? ◄── you are here │
│ ├── ADHP: what happens to my data? │
│ ├── Compliance: GDPR, HIPAA, CCPA, POPIA... │
│ ├── KYC: who's behind this agent? │
Expand Down Expand Up @@ -124,8 +124,8 @@ See the [Roadmap](docs/ROADMAP.md) for what's coming.

```bash
# Clone
git clone https://github.com/StevenJohnson998/agent-registry.git
cd agent-registry
git clone https://github.com/StevenJohnson998/AgentLedger.git
cd AgentLedger

# Start (requires Docker)
./batch/run-dev.sh
Expand Down Expand Up @@ -178,7 +178,7 @@ curl "http://localhost:8000/agents?min_data_handling_level=strict&jurisdiction=E
## Repository Structure

```
agent-registry/
AgentLedger/
├── docs/ # Specifications
│ ├── ADHP-SPEC.md # Agent Data Handling Policy specification
│ ├── KYC-SPEC.md # Operator verification specification
Expand Down
2 changes: 1 addition & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Agent Registry — Project Roadmap
# AgentLedger — Project Roadmap

> Last updated: February 2026

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Reporting a Vulnerability

If you discover a security vulnerability in Agent Registry, please report it responsibly.
If you discover a security vulnerability in AgentLedger, please report it responsibly.

**Do NOT open a public issue for security vulnerabilities.**

Expand Down
2 changes: 1 addition & 1 deletion docs/ADHP-SPEC.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> **Version:** 0.1.0 (Draft)
> **Status:** RFC — Request for Comments
> **Author:** Agent Registry Project
> **Author:** AgentLedger Project
> **Date:** February 2026

## 1. Purpose
Expand Down
2 changes: 1 addition & 1 deletion docs/ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Agent Registry — Roadmap
# AgentLedger — Roadmap

> Last updated: February 2026

Expand Down
2 changes: 1 addition & 1 deletion docs/schemas/agent-manifest.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "[http://json-schema.org/draft-07/schema#](http://json-schema.org/draft-07/schema#)",
"$id": "[https://github.com/ton-pseudo/agent-registry/docs/schemas/agent-manifest.schema.json](https://github.com/ton-pseudo/agent-registry/docs/schemas/agent-manifest.schema.json)",
"$id": "[https://github.com/StevenJohnson998/AgentLedger/docs/schemas/agent-manifest.schema.json](https://github.com/StevenJohnson998/AgentLedger/docs/schemas/agent-manifest.schema.json)",
"title": "Agent Manifest",
"description": "Schema for registering a micro-agent with advanced verification audit trails.",
"type": "object",
Expand Down
Loading