Skip to content

dsh 原生命令

Mayfly 不定义 command adapter。插件依赖 @deepseek-ai/dsh-commands 并直接使用 ctx.commands

ts
import type { Context } from '@deepseek-ai/cordis'
import type {} from '@deepseek-ai/dsh-commands'

export const inject = ['commands']

export function apply(ctx: Context): void {
  ctx.commands.register({
    name: 'health',
    description: 'Show build health',
    handler: (_args, _options) => ({
      kind: 'success',
      text: 'healthy',
    }),
  })
}

需要当前 session 时,同时 inject mayflyCurrentAgent,在 handler 执行时获取 Agent,再把 agent.session 传给原生 sessionProjections 等 service。 Command definition、args/options 和返回值以 Harness reference 为准。

注册随插件 Fiber 卸载。不要把一个 Mayfly UI action 伪装成另一套 command protocol。

预览版 · v0.1.0-alpha.1