From c629240da00b6ff6a469224d7114e3fe14a97791 Mon Sep 17 00:00:00 2001 From: Ben McAdams Date: Mon, 29 Jun 2026 09:08:07 -0700 Subject: [PATCH] docs(conformance): fix stale example paths after examples/ reorg The c60a002 reorg moved ai-catalog.json into examples/basic/ but two references were not updated: - conformance/README.md showed 'examples/ai-catalog.json' as the manual validation example; copying that command verbatim now 404s. - conformance/examples/basic/registry-server.py had a comment pointing at spec/examples/ai-catalog.json (a path that has not existed since an earlier reorg in 5c191fb). --- conformance/README.md | 2 +- conformance/examples/basic/registry-server.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conformance/README.md b/conformance/README.md index 221c2a0..c2bb017 100644 --- a/conformance/README.md +++ b/conformance/README.md @@ -40,7 +40,7 @@ Validates a local file or a remote live HTTP URL pointing to an `ai-catalog.json ```bash # Validate a local catalog manifest file -./bin/conformance-test manifest examples/ai-catalog.json +./bin/conformance-test manifest examples/basic/ai-catalog.json # Validate a remote well-known catalog manifest hosted on a web server ./bin/conformance-test manifest https://example.com/.well-known/ai-catalog.json diff --git a/conformance/examples/basic/registry-server.py b/conformance/examples/basic/registry-server.py index 3b17ecb..62d534e 100755 --- a/conformance/examples/basic/registry-server.py +++ b/conformance/examples/basic/registry-server.py @@ -14,7 +14,7 @@ PORT = 9010 -# Mock catalog database seeded from spec/examples/ai-catalog.json +# Mock catalog database seeded from ./ai-catalog.json MOCK_CATALOG_ENTRIES = [ { "identifier": "urn:air:acme.com:agent:assistant",