Skip to content

状态栏

Footer 最多两行。所有内置与第三方 entry 都注册在同一个 mayflyStatus service,并使用 renderer-neutral MayflyStatusNode

EntryPriority内容
basic0当前 model
mode2plan/yolo 状态
cwd5当前工作目录
git10branch 与变更摘要
context20context 占用
title30session title

同 band 按 priority/id 排序;右侧 band 在宽度压力下先让位。Entry 自己声明 rowoverflow,无法容纳时按低优先级隐藏。

第三方贡献:

ts
export const inject = ['mayflyStatus']

export function apply(ctx: Context): void {
  ctx.mayflyStatus.register({
    id: 'acme.health',
    priority: 15,
    band: 'right',
  }, { kind: 'text', content: 'healthy', tone: 'success' })
}

Registration 随 Fiber 清理。详情见插件状态栏

预览版 · v0.1.0-alpha.1