hypnotranz 1a0419dc0c 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

24 lines
930 B
TypeScript

/**
* @open-matrix/browser-host
*
* Browser-host shell for Matrix custom elements. Extracted from
* @open-matrix/core during the core-decontamination workstream to stop
* MatrixDSLHost changes from rebuilding the actor kernel.
*
* Phase 1 (this commit): package shell only. The actual files still live
* in `@open-matrix/core/browser/*` and are re-exported here so consumer
* migrations can start in parallel with the move. Phase 1 commit 3 moves
* the files and removes the core copies.
*
* Use subpath imports when possible:
* from '@open-matrix/browser-host/host' — host element + control
* from '@open-matrix/browser-host/recovery' — recovery + target helpers
* from '@open-matrix/browser-host/app-ready' — readiness signal
*/
export * from './BundleFreshness.js';
export * from './host.js';
export * from './recovery.js';
export * from './app-ready.js';
export * from './profile-trace.js';