CI / Lint (push) Canceled after 0s
CI / Build Test (stage-web) (push) Canceled after 0s
CI / Build Test (ui-loading-screens) (push) Canceled after 0s
CI / Build Test (ui-transitions) (push) Canceled after 0s
CI / Unit Test (push) Canceled after 0s
CI / Type Check (push) Canceled after 0s
CI / Check Provenance (push) Canceled after 0s
Sync Labels / sync-labels (push) Successful in 1m43s
- Remove stage-tamagotchi, stage-pocket, server, and engine workspaces with their workflows, addons, and docs - Switch the toolchain from pnpm to bun, replace lockfiles with bun.lock - Rewrite remaining product references to Moeka
32 lines
969 B
Markdown
32 lines
969 B
Markdown
# @proj-airi/plugin-protocol
|
|
|
|
Shared protocol contracts for plugin-module communication in Project Moeka.
|
|
|
|
## What it does
|
|
|
|
- Defines websocket event names and payload types for module/plugin orchestration.
|
|
- Exposes Eventa event definitions bound to protocol event names.
|
|
- Provides shared transport/event utility types used by server and plugin runtimes.
|
|
|
|
## How to use
|
|
|
|
```ts
|
|
import type { WebSocketEvent, WebSocketEventOf, WebSocketEvents } from '@proj-airi/plugin-protocol/types'
|
|
|
|
import { moduleAnnounce, moduleAuthenticate } from '@proj-airi/plugin-protocol/types'
|
|
```
|
|
|
|
## When to use
|
|
|
|
- You need canonical protocol contracts for plugin <-> host communication.
|
|
- You need event name stability and matching payload definitions across runtimes.
|
|
|
|
## When not to use
|
|
|
|
- You only need higher-level runtime client APIs from SDK packages.
|
|
- You are implementing app-only UI state that is not part of plugin/server transport contracts.
|
|
|
|
## License
|
|
|
|
[MIT](../../LICENSE)
|