Skip to content

Commit 2a76f1f

Browse files
committed
refactor: rename MiniKernel to MicroKernel and update related documentation
1 parent 624757a commit 2a76f1f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ObjectStack is a metadata-driven platform built on three foundational protocols:
3535
- [ObjectOS](./content/docs/objectos/) - System layer documentation
3636

3737
- **Development:**
38-
- [MiniKernel Architecture](./content/docs/developers/mini-kernel.mdx) - Plugin architecture guide
38+
- [MicroKernel Architecture](./content/docs/developers/micro-kernel.mdx) - Plugin architecture guide
3939
- [Writing Plugins](./content/docs/developers/writing-plugins.mdx) - Plugin development guide
4040
- [Contributing Guide](./CONTRIBUTING.md) - How to contribute
4141

content/docs/developers/meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"title": "🔧 Development & Extension",
33
"root": true,
44
"pages": [
5-
"mini-kernel",
5+
"micro-kernel",
66
"writing-plugins",
77
"custom-widgets",
88
"server-drivers",
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: MiniKernel Architecture
2+
title: MicroKernel Architecture
33
description: Understanding ObjectStack's micro-kernel plugin architecture for building extensible applications
44
---
55

6-
# MiniKernel Architecture
6+
# MicroKernel Architecture
77

88
ObjectStack uses a **micro-kernel architecture** that separates core functionality from business logic. Like the Linux kernel, the ObjectKernel provides minimal essential services while all features are loaded as plugins.
99

1010
## Overview
1111

12-
The MiniKernel architecture enables:
12+
The MicroKernel architecture enables:
1313
- ✅ Pluggable ObjectQL instances (bring your own query engine)
1414
- ✅ Service registry for dependency injection (DI)
1515
- ✅ Standardized plugin lifecycle (init/start/destroy)
@@ -288,7 +288,7 @@ await kernel.bootstrap();
288288
// Order: ObjectQL → Driver → Analytics
289289
```
290290

291-
## Testing with MiniKernel
291+
## Testing with MicroKernel
292292

293293
### Mock Services
294294

@@ -431,7 +431,7 @@ await ql.addDriver(driver, 'memory');
431431
await ql.loadObjects([Account, Contact]);
432432
```
433433

434-
### After (MiniKernel)
434+
### After (MicroKernel)
435435

436436
```typescript
437437
import { ObjectKernel, ObjectQLPlugin, DriverPlugin } from '@objectstack/runtime';
@@ -453,4 +453,4 @@ const ql = kernel.getService('objectql');
453453

454454
---
455455

456-
**Quick Start:** See [examples/host](https://github.com/objectstack-ai/spec/tree/main/examples/host) for a complete MiniKernel implementation.
456+
**Quick Start:** See [examples/host](https://github.com/objectstack-ai/spec/tree/main/examples/host) for a complete MicroKernel implementation.

0 commit comments

Comments
 (0)