Files
deepseek-harness/packages/sdk/helper/src/templates/assets/local-plugin.ts.tpl
imccyu 42b07a7022 feat(sdk): add developer project tooling
docs(rfc): propose SDK developer project tooling

feat: rename / docs

ci: fix windows gates

docs: revert
2026-07-15 23:17:29 +08:00

10 lines
234 B
Smarty

/** Local Cordis plugin. */
import type { Context } from 'cordis'
export const name = '{{pluginName}}'
/** Register this plugin's project-local behavior. */
export function apply(ctx: Context): void {
ctx.effect(() => () => {})
}