返回 Skill 列表
extension
分类: 开发与工程无需 API Key

ac-master-controller

用于完全自主操作的主控制器。在启动完整的自主项目、管理端到端工作流程、控制自主生命周期或运行完整实施时使用。

person作者: jakexiaohubgithub

AC Master Controller

Master controller for end-to-end autonomous coding.

Purpose

Provides the highest-level interface for autonomous coding, managing complete project implementations from spec to completion.

Quick Start

from scripts.master_controller import MasterController

controller = MasterController(project_dir)
result = await controller.run_project(
    spec="Build a REST API with user authentication",
    objective="Complete API implementation"
)

Complete Workflow

1. SETUP    → Initialize project and config
2. SPEC     → Generate feature list from spec
3. LOOP     → Run autonomous implementation loop
4. VERIFY   → Final validation
5. REPORT   → Generate completion report

API Reference

See scripts/master_controller.py for full implementation.