feat/bootstrap-cli: Doc-Code Aligner + Meta Review 全流程 + 文档 + ROADMAP #14
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feat/bootstrap-cli"
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?
本次 PR
核心能力
bixiweave run—--agents、--actions-module、-s调度策略aligner.json)— 5 步串行 Pipeline_execute_run支持 agent 为 list(并行 run)文档
bootstrap/README.md— 目录结构、快速开始、三种 Flow 选择指南、自定义 Agent 规范bootstrap/ROADMAP.md— 元评审结论写入 P0/P1 任务标定验证
详见各 commit
08387c9— bootstrap/README.mda2397a5— ROADMAP 元评审 P0/P1d3ebe1b— Event 模式8f0e49b— Meta Review 三轮审计4d05d99— tag_modules 修正d4ec6cf— Doc-Code Aligner 全流程迁移 examples/meta_review/run_review.py 到 bootstrap 架构。 三个 Agent(architect / safety_auditor / ecosystem_observer)通过 Pipeline 编排, 每轮并行发出 REVIEW → CHALLENGE → FINAL_OPINION 事件。 ### 新增 - `bootstrap/agents-meta/` — 元评审专用 Agent 目录(3 个评审员) - `bootstrap/agents/{architect,safety_auditor,ecosystem_observer}.json` — 共享定义 - `bootstrap/flows/meta_review.json` — 三轮评审 DSL - `bootstrap/actions/` — 动作函数包 - `__init__.py` — 统一入口,doc_code_aligner + meta_review 合并导出 - `aligner.py` — 原 actions.py(文档-代码对齐) - `review.py` — 元评审三轮动作函数 - `bootstrap/actions/review.py` — ReviewBoard 共享评审板 ### 修改 - `bixiweave/pipeline.py` — `_execute_run` 支持 agent 为 list(并行 run) ### 验证 - ✅ Mock 模式:三轮全通,3 Agent,报告写入 data/meta_review_report.json - ✅ LLM 模式:链路验证通过(三轮 × 3 次 LLM 调用)### 新增 - `bootstrap/flows/meta_review_event.json` — 纯 Event 模式 DSL(1 步,Agent 自驱三轮) - `bootstrap/agents-meta/{architect,safety_auditor,ecosystem_observer}_event.json` — Event 模式专用 Agent 定义(三轮链表:analyzing→challenging→finalizing→completed) - `bootstrap/actions/review.py` — `challenge_others_event`、`final_opinion_event` 含轮次等待(`_wait_for_round`) ### 三种模式对比 | 模式 | DSL | 说明 | |------|-----|------| | Pipeline | `meta_review.json`(3 步) | 每步发事件 + 等 done,Pipeline 协调轮次 | | Event | `meta_review_event.json`(1 步) | 一次 REVIEW 启动,Agent 自驱三轮,Pipeline 仅等 completed | ### 验证 - ✅ Pipeline 模式(mock):三轮全通 - ✅ Event 模式(mock):3 Agent 自驱三轮全通,Pipeline 1 步即完成