ac-autonomous-orchestrator

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

AC Autonomous Orchestrator

AC 自主编排器

Main orchestrator for autonomous coding operations.
自主编码操作的主编排器。

Purpose

用途

Coordinates all autonomous coding components, managing the complete lifecycle from initialization through feature completion.
协调所有自主编码组件,管理从初始化到功能完成的完整生命周期。

Quick Start

快速开始

python
from scripts.autonomous_orchestrator import AutonomousOrchestrator

orchestrator = AutonomousOrchestrator(project_dir)
await orchestrator.initialize(objective="Build user authentication")
result = await orchestrator.run()
python
from scripts.autonomous_orchestrator import AutonomousOrchestrator

orchestrator = AutonomousOrchestrator(project_dir)
await orchestrator.initialize(objective="Build user authentication")
result = await orchestrator.run()

Orchestration Flow

编排流程

1. INIT      → Load config, setup session
2. PLAN      → Generate/load feature list
3. EXECUTE   → TDD implementation loop
4. VALIDATE  → QA review and validation
5. COMMIT    → Git commit changes
6. CONTINUE  → Next feature or handoff
1. INIT      → 加载配置,设置会话
2. PLAN      → 生成/加载功能列表
3. EXECUTE   → TDD 实现循环
4. VALIDATE  → QA 评审与验证
5. COMMIT    → Git 提交变更
6. CONTINUE  → 下一个功能或交接

Integration

集成

Coordinates all AC skills for unified operation.
协调所有AC技能以实现统一操作。

API Reference

API 参考

See
scripts/autonomous_orchestrator.py
for full implementation.
完整实现请查看
scripts/autonomous_orchestrator.py