@kinotic-ai/os-api 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.
Files changed (2) hide show
  1. package/README.md +64 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,64 @@
1
+ # @kinotic-ai/os-api
2
+
3
+ The high-level TypeScript API for managing everything in your Kinotic cloud OS. `@kinotic-ai/os-api` puts the full power of the platform in your hands — create applications, define data schemas, run migrations, manage queries, and monitor your system, all from code. It is the control plane for teams that want to automate and programmatically manage their Kinotic environment end to end.
4
+
5
+ **[Get started at kinotic.ai/getting-started](https://kinotic.ai/getting-started)**
6
+
7
+ > **Who is this for?** `@kinotic-ai/os-api` is intended for teams **building or extending Kinotic OS itself** — platform engineers managing the control plane, provisioning tooling, or internal infrastructure. If you are building an application *on top of* Kinotic OS, you most likely want [`@kinotic-ai/persistence`](https://www.npmjs.com/package/@kinotic-ai/persistence) and [`@kinotic-ai/core`](https://www.npmjs.com/package/@kinotic-ai/core) instead.
8
+
9
+ ---
10
+
11
+ ## Why @kinotic-ai/os-api?
12
+
13
+ - **Manage your whole cloud OS from code.** Applications, projects, schemas, migrations, and analytics are all first-class operations — no console required.
14
+ - **Ship data APIs in seconds.** Publish a schema at runtime and the platform creates storage, REST endpoints, and a GraphQL schema automatically.
15
+ - **Migrations as code.** Run and track schema migrations programmatically, not through ad-hoc scripts or manual steps.
16
+ - **One line to activate.** Plugs directly into your existing Kinotic connection — no additional setup, no separate configuration.
17
+ - **Full observability built in.** Structured logging and built-in analytics give you visibility into your applications without extra tooling.
18
+
19
+ ---
20
+
21
+ ## Features
22
+
23
+ ### Application and Project Management
24
+ Create, configure, and manage cloud applications and projects programmatically. Automate provisioning as part of your deployment pipeline rather than through manual console operations.
25
+
26
+ ### Runtime Schema Publishing
27
+ Define and publish new data schemas at runtime. The moment a schema is published, the platform creates the backing storage, generates REST API endpoints, and builds the corresponding GraphQL schema — all automatically.
28
+
29
+ ### Schema Migrations
30
+ Run and track schema migrations from your application code. Migration state is managed by the platform, so you always know what has been applied and what is pending.
31
+
32
+ ### Named Query Management
33
+ Define, publish, and manage reusable parameterized queries across your platform. Queries are platform-level resources — shared, versioned, and callable by any service.
34
+
35
+ ### Analytics and Data Insights
36
+ Built-in analytics give you operational visibility into your applications and data without instrumenting your own pipeline. Query usage, data trends, and system health are available directly through the API.
37
+
38
+ ### Structured Application Logging
39
+ Emit structured, searchable logs from the client side using the same logging infrastructure the platform uses. No separate log aggregation setup required.
40
+
41
+ ---
42
+
43
+ ## Part of the Kinotic Ecosystem
44
+
45
+ `@kinotic-ai/os-api` sits at the top of the Kinotic JavaScript/TypeScript stack:
46
+
47
+ ```
48
+ @kinotic-ai/os-api ← cloud OS management (this package)
49
+ @kinotic-ai/persistence ← schema-driven data access
50
+ @kinotic-ai/idl ← cross-language type schemas
51
+ @kinotic-ai/core ← connection & transport
52
+ ```
53
+
54
+ It builds on the full stack below it. Install `@kinotic-ai/core` for the connection, add `@kinotic-ai/idl` and `@kinotic-ai/persistence` for data access, and use `@kinotic-ai/os-api` when you need to manage the platform itself.
55
+
56
+ ---
57
+
58
+ ## Installation
59
+
60
+ ```bash
61
+ npm install @kinotic-ai/os-api
62
+ ```
63
+
64
+ For full documentation, guides, and API reference, visit **[kinotic.ai](https://kinotic.ai)**.
package/package.json CHANGED
@@ -50,5 +50,5 @@
50
50
  "optional": true
51
51
  }
52
52
  },
53
- "version": "1.0.0-beta.1"
53
+ "version": "1.0.0"
54
54
  }