@autocode-cli/autocode 0.1.18 → 0.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +42 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # AutoCode CLI
2
2
 
3
- Filesystem-based issue tracking system with web dashboard.
3
+ > Filesystem-based issue tracking system with automated AI code validation
4
+
5
+ A Claude Code wrapper that orchestrates AI-generated code through a customizable validation pipeline. Includes web dashboard, real-time Kanban board, and REST API.
6
+
7
+ [![npm version](https://img.shields.io/npm/v/@autocode-cli/autocode.svg)](https://www.npmjs.com/package/@autocode-cli/autocode)
8
+ [![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen)](https://nodejs.org/)
9
+ [![License](https://img.shields.io/badge/license-SEE%20LICENSE-blue)](LICENSE)
4
10
 
5
11
  **[Live Demo](https://evkoh.gitlab.io/autocode/)** | **[Interactive Kanban Demo](https://evkoh.gitlab.io/autocode/demo.html)**
6
12
 
@@ -18,6 +24,36 @@ Filesystem-based issue tracking system with web dashboard.
18
24
  ### Architecture
19
25
  ![AutoCode Architecture](https://gitlab.com/evkoh/autocode/-/raw/main/public/screenshots/architecture.png)
20
26
 
27
+ ## What is AutoCode?
28
+
29
+ AutoCode is a **Claude Code wrapper** that automatically validates AI-generated code through a customizable pipeline. It combines:
30
+
31
+ - **Issue Tracking**: Filesystem-based issue management with Markdown files and YAML metadata
32
+ - **AI Orchestration**: Wraps Claude Code (`claude -p`) to process issues through validation stages
33
+ - **Automated Validation**: Reviews for best practices, duplication, consistency, and security
34
+ - **Automated Testing**: Integration with Playwright and Cypress for E2E testing
35
+
36
+ **How it works:**
37
+ 1. Create an issue describing what you want to build
38
+ 2. Claude Code implements the code
39
+ 3. AutoCode automatically validates through the pipeline (reviews, tests, security)
40
+ 4. Issue advances to Done when all validations pass
41
+
42
+ All data is stored as files (Markdown + YAML) - no database required, Git-friendly.
43
+
44
+ ## Key Features
45
+
46
+ | Feature | Description |
47
+ |---------|-------------|
48
+ | **Claude Code Wrapper** | Orchestrates Claude AI to process issues through the pipeline |
49
+ | **Customizable Pipeline** | Define your own validation columns (reviews, tests, deploys) |
50
+ | **Real-time Dashboard** | Web Kanban board with WebSocket updates |
51
+ | **AI Pipeline Generator** | Auto-detect your stack and propose relevant columns |
52
+ | **100% Filesystem** | Issues stored as Markdown + YAML - version with Git |
53
+ | **REST API** | Full API for integrations and automations |
54
+ | **Multi-language** | Supports English and French |
55
+ | **Issue Hierarchy** | Parent-child relationships between issues |
56
+
21
57
  ## Installation
22
58
 
23
59
  ```bash
@@ -92,7 +128,7 @@ autocode serve
92
128
 
93
129
  ## Workflow Columns
94
130
 
95
- The default workflow includes 15 columns following a TDD approach (test before AND after refactoring):
131
+ The default workflow includes a customizable pipeline. Here's an example TDD approach (test before AND after refactoring):
96
132
 
97
133
  0. **Backlog** - New issues waiting to be prioritized
98
134
  1. **Ready** - Issues ready to start
@@ -207,3 +243,7 @@ When running `autocode serve`:
207
243
  | `AUTOCODE_PORT` | Dashboard port | `3333` |
208
244
  | `AUTOCODE_CLAUDE` | Enable Claude integration | `true` |
209
245
  | `AUTOCODE_CLAUDE_TIMEOUT` | Claude timeout (ms) | `900000` |
246
+
247
+ ## License
248
+
249
+ See [LICENSE](LICENSE) file for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autocode-cli/autocode",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "Filesystem-based issues system with web dashboard",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",