fix: Windows兼容性修复 + P1-24弱模型优化 + 3.2.9b禁止降级方案 + AirRvr三层审查放行标准
- lock.py: 跨平台进程锁(Unix fcntl / Windows msvcrt / O_CREAT|O_EXCL降级)
- eng_mode.py/eng_orchestrator.py: hasattr(os, "getloadavg") Windows防护
- arc_mode.py: 路径分隔符 replace("\\", "/") Windows兼容
- deploy_runtime.py: 修复语法错误(清理 import tempfile 残留)
- P1-24(3.2.18): AMBIGUOUS_VERBS歧义词检测 + SAFE_VERBS安全动词 + validate_task_description()
- TaskNode.keep_constraints 保留约束字段 + JSON序列化
- _build_graph_from_todo 返回歧义警告 + Arc自检集成
- 3.2.9b: FORBIDDEN_DEGRADATION_PATTERNS + check_forbidden_degradation()
- AirRvr三层审查放行标准: ReviewVerdict + evaluate_review_pass() + is_forbidden_pass_reason()
- commands/arc.md: 弱模型安全重写(操作类型拆分+保留约束+自检)
- commands/do.md/eng.md/rvr.md: 禁止降级方案 + 三层审查标准
- 测试: 7个新测试 + 74全量通过
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
#!/usr/bin/env python3
|
||||
"""T-1.21 + T-1.22 端到端测试:arc → eng → do → merge → task-graph sync 全链路"""
|
||||
"""T-1.22 + T-1.23 端到端测试:arc → eng dispatch → do → merge → task-graph sync 全链路
|
||||
|
||||
T-1.21 (弱模型优化) 测试见 test_arc.py (test_validate_task_description 等)
|
||||
T-1.22: Dispatch → Worker 桥接(spawn_workers + 全专家插件路由)
|
||||
T-1.23: Merge → TaskGraph 状态同步(merge 后更新 task-graph.json 节点 status)
|
||||
"""
|
||||
|
||||
import sys
|
||||
import tempfile
|
||||
@@ -254,7 +259,7 @@ def test_dispatch_no_workers_means_no_dispatch():
|
||||
|
||||
def main():
|
||||
print("=" * 50)
|
||||
print("T-1.21 + T-1.22 端到端全链路测试")
|
||||
print("T-1.22 + T-1.23 端到端全链路测试")
|
||||
print("=" * 50)
|
||||
|
||||
tests = [
|
||||
|
||||
Reference in New Issue
Block a user