🎯

ac-master-controller

🎯Skill

from adaptationio/skrillz

VibeIndex|
What it does

ac-master-controller skill from adaptationio/skrillz

πŸ“¦

Part of

adaptationio/skrillz(191 items)

ac-master-controller

Installation

Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add adaptationio/Skrillz
Install PluginInstall plugin from marketplace
/plugin install skrillz@adaptationio-Skrillz
Claude CodeAdd plugin in Claude Code
/plugin enable skrillz@adaptationio-Skrillz
Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add /path/to/skrillz
Install PluginInstall plugin from marketplace
/plugin install skrillz@local

+ 4 more commands

πŸ“– Extracted from docs: adaptationio/skrillz
2Installs
3
-
Last UpdatedJan 16, 2026

Skill Details

SKILL.md

Master controller for complete autonomous operation. Use when starting full autonomous projects, managing end-to-end workflow, controlling autonomous lifecycle, or running complete implementations.

Overview

# 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

```python

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.