Loading...
Loading...
Main orchestrator for autonomous coding operations. Use when running autonomous sessions, coordinating components, managing the full lifecycle, or orchestrating implementations.
npx skill4agent add adaptationio/skrillz ac-autonomous-orchestratorfrom scripts.autonomous_orchestrator import AutonomousOrchestrator
orchestrator = AutonomousOrchestrator(project_dir)
await orchestrator.initialize(objective="Build user authentication")
result = await orchestrator.run()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 handoffscripts/autonomous_orchestrator.py