Autonomous Claude Code Builder banner
krzemienski krzemienski

Autonomous Claude Code Builder

Testing community

Description

Interactive autonomous coding tool with cyberpunk agent monitoring TUI, real-time streaming, spec enhancement, and multi-agent visibility.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Autonomous CLI (acli)

Interactive autonomous coding tool with cyberpunk agent monitoring TUI, real-time streaming, spec enhancement, and multi-agent visibility.

[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Features

  • Cyberpunk Agent Monitor TUI: Full-screen Textual dashboard with agent hierarchy visualization, real-time log streaming, drill-down detail views, and neon-themed interface
  • Two-Agent Pattern: Initializer + Coding agents for systematic development
  • Real-time Streaming: Event-driven architecture streaming all agent activity to the TUI
  • Spec Enhancement: Convert plain English descriptions to structured JSON specs
  • Browser Automation: Puppeteer and Playwright MCP integration for testing
  • Progress Tracking: Feature-based progress with persistence
  • Security Model: 16-command allowlist with defense-in-depth
  • Claude Agent SDK: Built on the latest Anthropic Agent SDK (claude-agent-sdk>=0.1.48)

Installation

# From source
git clone https://github.com/claude-code-skills-factory/autonomous-cli
cd autonomous-cli
pip install -e .

Quick Start

# 1. Initialize a new project
acli init my_app

# 2. Add your app specification
echo "Build a todo app with add, complete, and delete tasks" > my_app/app_spec.txt

# 3. Run with the cyberpunk TUI dashboard
cd my_app
acli run

# 4. Or launch the dedicated monitor TUI
acli monitor

# 5. Check progress
acli status

Commands

Command Description
acli init Initialize new project with spec enhancement
acli run [dir] Run autonomous coding loop (launches TUI by default)
acli monitor [dir] Launch cyberpunk TUI for real-time agent monitoring
acli status [dir] Show progress status
acli enhance [file] Enhance plain-te