Trust & Discovery Infrastructure for the Autonomous Agent Web.
docker compose up --buildOnce running:
- Health check:
GET http://localhost:8000/v1/health - Ontology:
GET http://localhost:8000/v1/ontologywithX-API-Key: dev-local-only - Register manifest:
POST http://localhost:8000/v1/manifestswithX-API-Key: dev-local-only - Structured query:
GET http://localhost:8000/v1/services?ontology=travel.air.bookwithX-API-Key: dev-local-only - Semantic query:
POST http://localhost:8000/v1/searchwithX-API-Key: dev-local-only - API docs:
http://localhost:8000/docs
Layer 1 provides three capabilities:
- Ingest — crawl and index agent manifests from
/.well-known/agent-manifest.json - Store — searchable index of verified service manifests
- Serve — REST API for agent queries (structured + semantic)
| Component | Technology |
|---|---|
| API | FastAPI (Python 3.11+) |
| Database | PostgreSQL 15 + pgvector |
| Cache | Redis 7 |
| Crawler | Celery + Redis |
| Embeddings | sentence-transformers (all-MiniLM-L6-v2) |
See spec/LAYER1_SPEC.md for the full implementation specification.