car-runtime 0.51.0 → 0.52.0
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 +9 -2
- package/docs/ASSISTANT.md +491 -0
- package/docs/CLI.md +3051 -0
- package/docs/GUIDE.md +266 -0
- package/docs/MCP.md +382 -0
- package/docs/SPEC.md +169 -0
- package/docs/agent-ir-spec.md +677 -0
- package/docs/websocket-protocol.md +10 -0
- package/package.json +5 -3
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# WebSocket JSON-RPC protocol reference
|
|
2
|
+
|
|
3
|
+
Not bundled in this package by default — the full reference is roughly
|
|
4
|
+
510KB (see `docs/proposals/public-docs-unification.md` in the CAR source
|
|
5
|
+
repo for the size accounting), which is too large to add to every install.
|
|
6
|
+
|
|
7
|
+
Read it at: https://car.parslee.ai/websocket-protocol.md
|
|
8
|
+
|
|
9
|
+
That page is published verbatim, at every release, from the same
|
|
10
|
+
`docs/websocket-protocol.md` this stub was generated alongside.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "car-runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.52.0",
|
|
4
4
|
"description": "Common Agent Runtime — a deterministic execution layer for AI agents",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -40,10 +40,12 @@
|
|
|
40
40
|
"assets.json",
|
|
41
41
|
"bin/car-server",
|
|
42
42
|
"README.md",
|
|
43
|
-
"LICENSE"
|
|
43
|
+
"LICENSE",
|
|
44
|
+
"docs"
|
|
44
45
|
],
|
|
45
46
|
"scripts": {
|
|
46
|
-
"install": "node install.js"
|
|
47
|
+
"install": "node install.js",
|
|
48
|
+
"prepack": "node sync-docs.js"
|
|
47
49
|
},
|
|
48
50
|
"license": "SEE LICENSE IN LICENSE",
|
|
49
51
|
"private": false
|