@@ -8,7 +8,7 @@ The runtime package provides the **Standard Library** for the ObjectStack Operat
88
99### Architecture Highlights
1010
11- - ** Standard Library** : Contains essential plugins (` AppManifestPlugin ` , ` DriverPlugin ` )
11+ - ** Standard Library** : Contains essential plugins (` AppPlugin ` , ` DriverPlugin ` )
1212- ** Core Integration** : Re-exports ` ObjectKernel ` for convenience
1313- ** Capability Contracts** : Abstract interfaces for HTTP server and data persistence
1414
@@ -24,7 +24,7 @@ npm install @objectstack/runtime
2424
2525``` typescript
2626import { ObjectKernel } from ' @objectstack/core' ;
27- import { ObjectQLPlugin , DriverPlugin , AppManifestPlugin } from ' @objectstack/runtime' ;
27+ import { ObjectQLPlugin , DriverPlugin , AppPlugin } from ' @objectstack/runtime' ;
2828import { InMemoryDriver } from ' @objectstack/driver-memory' ;
2929
3030const kernel = new ObjectKernel ();
3737 .use (new DriverPlugin (new InMemoryDriver (), ' memory' ))
3838
3939 // Add your app configurations
40- // .use(new AppManifestPlugin (appConfig));
40+ // .use(new AppPlugin (appConfig));
4141
4242await kernel .bootstrap ();
4343```
@@ -107,14 +107,14 @@ new DriverPlugin(driver, 'driver-name')
107107
108108** Dependencies** : ` ['com.objectstack.engine.objectql'] `
109109
110- #### AppManifestPlugin
110+ #### AppPlugin
111111Wraps ObjectStack app manifests (objectstack.config.ts) as plugins.
112112
113113``` typescript
114- new AppManifestPlugin (appConfig )
114+ new AppPlugin (appConfig )
115115```
116116
117- ** Dependencies ** : ` ['com.objectstack.engine.objectql'] `
117+ ** Services ** : ` 'app.{id}' `
118118
119119## API Reference
120120
@@ -246,7 +246,7 @@ See the `examples/` directory for complete examples:
246246- ` examples/host/ ` - Full server setup with Hono
247247- ` examples/msw-react-crud/ ` - Browser-based setup with MSW
248248- ` test-mini-kernel.ts ` - Comprehensive kernel test suite
249- - ` packages/runtime/src/test-interfaces.ts ` - Capability contract interface examples
249+ - `packages/runtime/src/
250250
251251## Benefits of MiniKernel
252252
0 commit comments