Wrapper Claude Code → Automatic Reliability Pipeline

Claude Code generates.
AutoCode validates.

Free up your time: AutoCode automatically runs your Claude Code generated code through a 13-column validation pipeline — reviews, best practices, security, tests — to deliver reliable code.

$ npm install -g @autocode-cli/autocode
+ @autocode-cli/autocode installed
$ autocode new "Implement OAuth authentication" P1
AC-000042 created in Backlog
$ autocode serve
Dashboard available at http://localhost:3333
Claude AI integration: active

Why AutoCode?

Claude Code codes fast, but AI-generated code needs validation. AutoCode automates this validation for you.

🎯

Claude Code Wrapper

AutoCode orchestrates Claude Code to process your tickets. Each pipeline column executes specific instructions via Claude.

🛡️

Reliability Pipeline

13 validation columns: best practices, duplication detection, code consistency, security review, Playwright/Cypress tests.

⏱️

Free Up Your Time

No more tedious manual reviews. AutoCode runs every development through the pipeline automatically while you work.

📁

100% Filesystem

Tickets in Markdown + YAML. Version with Git, edit with your editor. No database, no lock-in.

📊

Kanban Dashboard

Watch your tickets traverse the pipeline. Real-time web interface, drag & drop, progress tracking.

🔧

Customizable

Add your own columns and instructions. Adapt the pipeline to your needs: more reviews, specific tests, custom deployment.

See It In Action

An interactive demo of the Kanban dashboard. Watch Claude process tickets automatically.

Launch Interactive Demo

Drag & drop, ticket creation, Claude AI simulation - everything is interactive!

The Reliability Pipeline

Your Claude Code generated code goes through 13 automatic validation columns. At each step, Claude Code executes the defined instructions.

1

Backlog → Ready → In Progress

Create a ticket describing the feature. Claude Code implements the code. The ticket automatically advances through the pipeline.

2

4 Automatic Reviews

Best PracticesNo DuplicationConsistencySecurity. Claude Code analyzes and fixes the code at each step according to your criteria.

3

Automated Tests

Playwright and Cypress. Claude Code runs the tests, analyzes failures, and fixes until everything passes.

4

Deploy → Validate → Done

Automatic staging deployment, final validation, then closure. You receive reliable, tested, and documented code.

Installation

Ready in 30 seconds with npm.

Installation via npm
# Global installation npm install -g @autocode-cli/autocode # Initialize in your project autocode init # Create your first ticket autocode new "My first ticket" P1 # Launch the dashboard autocode serve
Prerequisites
# Required - Node.js 18+ - npm or yarn # For Claude AI integration - Claude CLI (claude -p)

Commands Reference

All available commands to manage your tickets.

Command Description
autocode init Initialize the autodoc/ folder in the project
autocode new "Title" [P0-P3] Create a new ticket
autocode list List all tickets
autocode AC-XXXXX Display ticket details
autocode AC-XXXXX next Move ticket to next column
autocode serve Launch web dashboard (default: 3333)
autocode serve --port 4000 Dashboard on custom port
autocode --help Display full help
autocode --version Display version

REST API

Integrate AutoCode into your tools and automations.

GET /api/tickets
POST /api/tickets
GET /api/tickets/:key
PUT /api/tickets/:key
PUT /api/tickets/:key/next
PUT /api/tickets/:key/move
POST /api/tickets/:key/comments
GET /api/columns
GET /api/columns/:slug/actions
PUT /api/columns/:slug/actions
Usage Example
# Create a ticket via API curl -X POST http://localhost:3333/api/tickets \ -H "Content-Type: application/json" \ -d '{"title": "New ticket", "priority": "P1", "labels": ["bug"]}' # Move a ticket forward curl -X PUT http://localhost:3333/api/tickets/AC-000001/next

Architecture

A simple and efficient design.

Terminal / CLI

./autocode.sh

Dashboard Web

:3333

API REST

/api/*

autocode-cli

TypeScript + Node.js

Filesystem

autodoc/

Claude AI

claude -p

Tickets (.md)

YAML + Markdown

Actions (.md)

Instructions IA

Config

seq.txt