Full SDK workspace: core, contracts, sdk, cli, browser-host, browser-kit, federation, omega-core, oracle, self-healing, strategies, tools, emacs. Clean extraction from the development monorepo. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
17 lines
528 B
Markdown
17 lines
528 B
Markdown
# @open-matrix/sdk
|
|
|
|
Public Matrix actor SDK facade for package authors.
|
|
|
|
Prefer narrow package imports when a package only needs one layer:
|
|
|
|
```ts
|
|
import { MatrixActor } from '@open-matrix/core';
|
|
```
|
|
|
|
Use this umbrella package when a package intentionally needs the combined actor,
|
|
browser host, contracts, federation, and Omega kernel facade.
|
|
|
|
Import browser app build utilities directly from `@open-matrix/browser-kit` so
|
|
headless actor packages can import `@open-matrix/sdk` without loading
|
|
browser-only custom element code.
|