新增: 并行调度+Token预算池+事件协议+前端类型+编译警告清理

- Coordinator.dispatch_with_budget: JoinSet层内并行+层间串行+预算超限降级串行

- TokenBudgetPool: AtomicU64 CAS无锁并发安全,0=不限制

- 4个新事件: AiPlanCreated/AiSubTaskStatusChanged/AiMergeCompleted/AiConflictResolved

- 前端类型: PlanRecord/SubTaskRecord/ConflictRecord/PlanLayerInfo/ConflictInfo

- PlanProgress.vue: 接入真实状态+persona徽章+冲突徽章+i18n

- 编译警告全部清零(audit子模块allow+事件allow+record allow)

- Coordinator测试27个全绿(含4个Token预算+4个并行调度)
This commit is contained in:
2026-07-01 22:25:18 +08:00
parent 4483358f6b
commit 3c9077b043
9 changed files with 538 additions and 35 deletions

View File

@@ -1,5 +1,9 @@
export default {
aiChat: {
// ── Multi-Agent parallel execution ──
planProgress: 'Execution Plan',
planLayer: 'Layer {n}',
// ── Conversation sidebar ──
sidebarTitle: 'Chats',
newConversation: 'New chat',

View File

@@ -1,5 +1,9 @@
export default {
aiChat: {
// ── 多 Agent 并行执行 ──
planProgress: '执行计划',
planLayer: '第 {n} 层',
// ── 对话侧栏 ──
sidebarTitle: '对话',
newConversation: '新对话',