@pellux/goodvibes-daemon-sdk
v0.33.15
Published
Embeddable GoodVibes daemon route contracts, dispatchers, and server-side handler builders.
Downloads
1,297
Maintainers
Readme
@pellux/goodvibes-daemon-sdk
Public GoodVibes daemon package for embeddable route contracts, dispatchers, handler builders, and daemon-side helpers.
Most applications should install @pellux/goodvibes-sdk and import @pellux/goodvibes-sdk/daemon. Install this package directly when you only need the daemon embedding subset.
Consumer import:
import {
createDaemonControlRouteHandlers,
createDaemonTelemetryRouteHandlers,
dispatchDaemonApiRoutes,
} from '@pellux/goodvibes-sdk/daemon';This surface is for:
- embed daemon routes in another host
- dispatch operator, automation, session, task, or remote API calls
- reuse shared daemon auth/error helpers
Typical entrypoints:
import {
createDaemonControlRouteHandlers,
createDaemonTelemetryRouteHandlers,
dispatchDaemonApiRoutes,
} from '@pellux/goodvibes-sdk/daemon';This package gives you reusable route modules, but your host still owns:
- request routing
- concrete services
- auth/session storage
- runtime bootstrapping
Use this surface when you are embedding GoodVibes into another TypeScript server. Do not use it for normal client-side integrations.
