@kinotic-ai/core 1.0.0-beta.1 → 1.0.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 +62 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# @kinotic-ai/core
|
|
2
|
+
|
|
3
|
+
The foundational TypeScript/JavaScript client for the Kinotic platform. `@kinotic-ai/core` handles everything below the application layer — connection management, service discovery, and message routing — so your code can talk to any Kinotic service without thinking about the underlying transport. Whether you're building a browser app, a Node.js service, or a CLI tool, this package is the single entry point to the entire Kinotic ecosystem.
|
|
4
|
+
|
|
5
|
+
**[Get started at kinotic.ai/getting-started](https://kinotic.ai/getting-started)**
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Why @kinotic-ai/core?
|
|
10
|
+
|
|
11
|
+
- **One connection, entire platform.** A single object gives you access to every service registered on Kinotic — no configuration sprawl, no per-service clients to manage.
|
|
12
|
+
- **Remote calls that feel local.** Invoke distributed services the same way you call any function — no REST boilerplate, no manual HTTP wiring, no endpoint management.
|
|
13
|
+
- **Real-time by default.** Built-in reactive streaming lets you subscribe to live data flows as naturally as reading a list.
|
|
14
|
+
- **Uniform resource addressing.** Every resource on the platform — local or clustered — is reachable through a consistent addressing scheme. Move services around without changing calling code.
|
|
15
|
+
- **Built to be extended.** Higher-level packages like `@kinotic-ai/persistence` and `@kinotic-ai/os-api` plug directly into the connection this package provides.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## Features
|
|
20
|
+
|
|
21
|
+
### Single-Object Platform Access
|
|
22
|
+
Connect once. From that connection you can discover, call, and stream any service on the Kinotic platform — nothing else required.
|
|
23
|
+
|
|
24
|
+
### Transparent Remote Procedure Calls
|
|
25
|
+
Call distributed backend services as if they were in-process. The transport, serialization, and routing are completely invisible to your application code.
|
|
26
|
+
|
|
27
|
+
### Reactive Streaming
|
|
28
|
+
Subscribe to event streams and live data feeds with a clean, composable API. Handle real-time updates, push notifications, and continuous data flows without callbacks or polling.
|
|
29
|
+
|
|
30
|
+
### Consistent Resource Addressing
|
|
31
|
+
Every service, stream, and resource in Kinotic has a stable, uniform address. Your application references resources the same way regardless of where they run in the cluster.
|
|
32
|
+
|
|
33
|
+
### Distributed Tracing
|
|
34
|
+
Request tracing is built in at the transport layer. Every call carries context automatically, making distributed systems observable without extra instrumentation.
|
|
35
|
+
|
|
36
|
+
### Extensible Foundation
|
|
37
|
+
The connection model is designed to be consumed by higher-level packages. Persistence, schema management, and OS-level APIs all build on the primitives `@kinotic-ai/core` provides.
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Part of the Kinotic Ecosystem
|
|
42
|
+
|
|
43
|
+
`@kinotic-ai/core` sits at the base of the Kinotic JavaScript/TypeScript stack:
|
|
44
|
+
|
|
45
|
+
```
|
|
46
|
+
@kinotic-ai/os-api ← cloud OS management
|
|
47
|
+
@kinotic-ai/persistence ← schema-driven data access
|
|
48
|
+
@kinotic-ai/idl ← cross-language type schemas
|
|
49
|
+
@kinotic-ai/core ← connection & transport (this package)
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Every other package in the ecosystem depends on `@kinotic-ai/core`. Install it first; the rest plug in on top.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## Installation
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
npm install @kinotic-ai/core
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
For full documentation, guides, and API reference, visit **[kinotic.ai](https://kinotic.ai)**.
|
package/package.json
CHANGED