refactor(core): rename RoleSignal → RoleStep, align structure with StartSignal #109
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Phase 2 — 命名修正 + 结构对齐
1. RoleSignal → RoleStep
RoleSignal和 Sense 的Signal命名冲突,改为RoleStep更准确(它代表 workflow 的一步,不是信号)。同理
StartSignal考虑改为StartStep,让 Start 和 Role 命名一致。2. RoleStep 补齐字段
当前 RoleSignal 只有
{ role, meta },缺少content和timestamp。应该跟 StartStep 结构对应:3. 同步更新
ModeratorContext里的signal→stepRoleSignal的地方改为RoleStepStartSignal的地方改为StartStepisDryRun等依赖
Phase 1 先合