mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-30 04:40:37 +00:00
21 lines
883 B
TypeScript
21 lines
883 B
TypeScript
/** Package-owned invariant companion. @module @deepseek-ai/dsh-api-workspace-controller/invariant */
|
|
|
|
/* jscpd:ignore-start */
|
|
import type { Context } from '@deepseek-ai/cordis'
|
|
import type { InvariantInstaller } from '@deepseek-ai/dsh-invariants'
|
|
|
|
const PACKAGE_NAME = '@deepseek-ai/dsh-api-workspace-controller'
|
|
|
|
/** Cordis companion plugin name. */
|
|
export const name = 'api-workspace-controller-invariant'
|
|
/** Service required before the companion can reserve package ownership. */
|
|
export const inject = ['invariants']
|
|
|
|
/** No runtime invariant: Workspace Registry owns persistence; every stream generation is a full projection. */
|
|
const install: InvariantInstaller = () => {}
|
|
|
|
/** Register this package's invariant companion. */
|
|
export const apply = (ctx: Context): Promise<() => void> =>
|
|
Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install))
|
|
/* jscpd:ignore-end */
|