ai-catalog 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
# ai-catalog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The only TypeScript toolkit for [Agentic Resource Discovery (ARD)](https://agenticresourcediscovery.org). The spec's reference tooling is a Python conformance CLI; if you're shipping a site or MCP server from Node, this is the side you were missing. Zero runtime dependencies, ESM + CJS, Node 18+.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
```bash
|
|
6
|
+
npx ai-catalog validate ./.well-known/ai-catalog.json
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
error /entries/0/type required `type` is missing — `mediaType` was renamed to `type` (ADR-0014)
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
That rename (ADR-0014) is one the spec's own shipped example still gets wrong. The validator tracks the normative spec text, so it catches the things a hand-edited catalog drifts on.
|
|
14
|
+
|
|
15
|
+
ARD lets a website advertise its AI agents, MCP servers, skills, and datasets at `/.well-known/ai-catalog.json` so agents can find them before invocation. This package is the TypeScript side: typed builders, a spec-aware validator with precise error paths, the full agent-driven discovery walk, and nested-catalog resolution.
|
|
6
16
|
|
|
7
17
|
```bash
|
|
8
18
|
npm install ai-catalog
|
package/package.json
CHANGED