@continuonai/rcan-ts 0.3.0 → 0.6.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 +5 -3
- package/dist/browser.d.mts +956 -7
- package/dist/browser.mjs +1593 -6
- package/dist/browser.mjs.map +1 -1
- package/dist/index.d.mts +956 -7
- package/dist/index.d.ts +956 -7
- package/dist/index.js +1658 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1587 -6
- package/dist/index.mjs.map +1 -1
- package/dist/rcan-validate.js +62 -2
- package/dist/rcan.iife.js +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# rcan-ts
|
|
2
2
|
|
|
3
|
-
Official TypeScript SDK for the **RCAN v1.
|
|
3
|
+
Official TypeScript SDK for the **RCAN v1.6** Robot Communication and Addressing Network protocol.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@continuonai/rcan-ts)
|
|
6
6
|
[](https://github.com/continuonai/rcan-ts/actions)
|
|
@@ -240,10 +240,12 @@ The Python and TypeScript SDKs share an identical API surface — `RobotURI`, `R
|
|
|
240
240
|
## Links
|
|
241
241
|
|
|
242
242
|
- ⚡ [Quickstart](https://rcan.dev/quickstart) — from zero to first message in 5 min
|
|
243
|
-
- 📖 [RCAN Spec](https://rcan.dev/spec) — full protocol specification
|
|
243
|
+
- 📖 [RCAN Spec v1.5](https://rcan.dev/spec) — full protocol specification
|
|
244
244
|
- 🌐 [rcan.dev](https://rcan.dev) — robot registry and documentation
|
|
245
245
|
- 🐍 [rcan-py](https://github.com/continuonai/rcan-py) — Python SDK
|
|
246
|
-
- 🤖 [OpenCastor](https://github.com/craigm26/OpenCastor) — robot runtime
|
|
246
|
+
- 🤖 [OpenCastor](https://github.com/craigm26/OpenCastor) — Python robot runtime (RCAN reference implementation)
|
|
247
|
+
- 🖥️ [OpenCastor Fleet UI](https://app.opencastor.com) — Flutter web app for remote fleet management (uses rcan-ts for message construction)
|
|
248
|
+
- 🏛️ [Robot Registry Foundation](https://robotregistryfoundation.org) — global robot identity registry
|
|
247
249
|
|
|
248
250
|
---
|
|
249
251
|
|