@@ -14,7 +14,7 @@ ObjectOS is a **metadata-driven runtime engine** that interprets and executes bu
1414┌─────────────────────────────────────────────────┐
1515│ ObjectQL (Protocol Repository) │
1616│ - Metadata standard in YAML │
17- │ - Type definitions (@objectql/types) │
17+ │ - Type definitions (@objectstack/spec) │
1818│ - Database drivers │
1919└─────────────────────┬───────────────────────────┘
2020 │
@@ -77,7 +77,7 @@ ObjectOS follows a strict architectural principle:
7777> **"Kernel handles logic, Drivers handle data, Server handles HTTP."**
7878
7979- **Kernel** (`@objectos/kernel`): Validates, enforces permissions, runs hooks
80- - **Drivers** (`@objectql/driver-* `): Translates to SQL/NoSQL queries
80+ - **Drivers** (`@objectstack/objectql `): Translates to SQL/NoSQL queries
8181- **Server** (`@objectos/server`): Exposes REST APIs
8282
8383This separation means you can swap databases without changing business logic!
@@ -116,7 +116,7 @@ cd my-app
116116npm init -y
117117
118118# Install ObjectOS packages
119- npm install @objectos/kernel @objectos/server @objectql/driver-sql
119+ npm install @objectos/kernel @objectos/server @objectstack/objectql
120120
121121# Install database driver
122122npm install pg # for PostgreSQL
@@ -216,7 +216,7 @@ Create `src/main.ts`:
216216
217217` ` ` typescript
218218import { ObjectOS } from '@objectos/kernel';
219- import { PostgresDriver } from '@objectql/driver-sql ';
219+ import { ObjectQLPlugin } from '@objectstack/objectql ';
220220import * as yaml from 'js-yaml';
221221import * as fs from 'fs';
222222import * as path from 'path';
0 commit comments