2026-06-08 00:17:38 +00:00
|
|
|
# @open-matrix/hivecast-sdk
|
feat: initial Matrix SDK
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>
2026-06-07 15:54:15 -06:00
|
|
|
|
2026-06-08 00:17:38 +00:00
|
|
|
Public HiveCast actor SDK facade for package authors.
|
feat: initial Matrix SDK
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>
2026-06-07 15:54:15 -06:00
|
|
|
|
|
|
|
|
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
|
2026-06-08 00:17:38 +00:00
|
|
|
headless actor packages can import `@open-matrix/hivecast-sdk` without loading
|
feat: initial Matrix SDK
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>
2026-06-07 15:54:15 -06:00
|
|
|
browser-only custom element code.
|