azclaude-copilot 0.2.0 → 0.2.2

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.
package/README.md CHANGED
@@ -1,18 +1,17 @@
1
1
  <p align="center">
2
- <h1 align="center">AZCLAUDE COPILOT</h1>
3
- <p align="center"><strong>Describe a product once. Walk away. Come back to a deployed app with full git history.</strong></p>
2
+ <h1 align="center">AZCLAUDE</h1>
3
+ <p align="center"><strong>AI coding environment that learns, evolves, and builds autonomously.</strong></p>
4
4
  <p align="center">
5
5
  <a href="https://www.npmjs.com/package/azclaude-copilot"><img src="https://img.shields.io/npm/v/azclaude-copilot.svg" alt="npm version"></a>
6
- <a href="https://github.com/haytamAroui/AZ-CLAUDE-COPILOT/actions"><img src="https://img.shields.io/badge/tests-1002%20passing-brightgreen" alt="tests"></a>
6
+ <a href="https://github.com/haytamAroui/AZ-CLAUDE-COPILOT/actions"><img src="https://img.shields.io/badge/tests-1048%20passing-brightgreen" alt="tests"></a>
7
7
  <a href="https://github.com/haytamAroui/AZ-CLAUDE-COPILOT/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="license"></a>
8
8
  <a href="https://nodejs.org"><img src="https://img.shields.io/badge/node-%3E%3D16-brightgreen" alt="node version"></a>
9
9
  </p>
10
10
  <p align="center">
11
- <a href="#one-command">One Command</a> ·
12
- <a href="#how-it-works">How It Works</a> ·
13
- <a href="#the-pipeline">Pipeline</a> ·
11
+ <a href="#install">Install</a> ·
12
+ <a href="#three-ways-to-use-it">Use It</a> ·
13
+ <a href="#what-you-get">What You Get</a> ·
14
14
  <a href="#evidence-based-intelligence">Intelligence</a> ·
15
- <a href="#memory-system">Memory</a> ·
16
15
  <a href="#all-26-commands">Commands</a> ·
17
16
  <a href="DOCS.md">Full Docs</a>
18
17
  </p>
@@ -20,67 +19,74 @@
20
19
 
21
20
  ---
22
21
 
23
- ## The Problem
22
+ ## What is AZCLAUDE?
24
23
 
25
- Every AI coding tool makes you the project manager. You prompt, review, approve, prompt again. You are the bottleneck. Context resets every session. Agents don't learn. Nothing accumulates.
24
+ An AI coding environment you install into any project. It gives Claude Code (or Gemini CLI, Codex, OpenCode, Cursor) **26 commands, 8 auto-invoked skills, 7 agents, memory across sessions, learned reflexes, and self-evolving infrastructure**.
26
25
 
27
- **AZCLAUDE Copilot removes you from the loop entirely.**
26
+ Zero dependencies. One install. Works on any stack.
28
27
 
29
- ```
30
- Input: "Build EU AI Act compliance SaaS with trilingual support"
31
- Output: Deployed product with full git history, evolved agents, copilot-report.md
28
+ ---
32
29
 
33
- Human input after first message: ZERO
30
+ ## Install
31
+
32
+ ```bash
33
+ npx azclaude-copilot setup
34
34
  ```
35
35
 
36
+ That's it. Your project now has the full AZCLAUDE environment in `.claude/`.
37
+
36
38
  ---
37
39
 
38
- ## Quick Start
40
+ ## Three Ways to Use It
39
41
 
40
- ### 1. Install into your project
42
+ ### `/dream` Start from an idea
41
43
 
42
- ```bash
43
- npx azclaude-copilot setup
44
44
  ```
45
+ /dream
46
+ > "Build a compliance SaaS with trilingual support"
47
+ ```
48
+ Scaffolds the full project: CLAUDE.md, skills, agents, memory, milestones. You build from there.
49
+
50
+ ### `/setup` — Configure an existing project
45
51
 
46
- This installs CLAUDE.md, 26 commands, 8 skills, 7 agents, hooks, and capabilities into your project's `.claude/` directory. Works with Claude Code, Gemini CLI, Codex, OpenCode, and Cursor.
52
+ ```
53
+ /setup
54
+ ```
55
+ Analyzes your project's stack, domain, and scale. Fills CLAUDE.md. Generates project-specific skills and agents. Creates memory structure.
47
56
 
48
- ### 2. Run autonomously (copilot mode)
57
+ ### `/copilot` Full autonomous mode
49
58
 
50
59
  ```bash
51
- npx azclaude-copilot . "EU AI Act compliance SaaS with trilingual support"
60
+ npx azclaude-copilot . "Build a compliance SaaS with trilingual support"
52
61
  ```
62
+ Walk away. AZCLAUDE plans, builds, tests, commits, evolves, and deploys. Come back to a working product with full git history.
53
63
 
54
- Walk away. Come back to:
55
- - Full git history (one commit per milestone)
56
- - Deployed product
57
- - `copilot-report.md` with everything that was built
58
- - Evolved environment with project-specific agents and learned reflexes
59
-
60
- ### 3. Or use commands manually
64
+ ### Day-to-day commands
61
65
 
62
66
  ```bash
63
- /setup # analyze project, detect stack + domain
64
- /dream # scaffold from idea
65
- /add # add a feature
66
- /fix # fix a bug
67
- /audit # review code
68
- /pulse # health check
67
+ /add [feature] # add a feature with TDD
68
+ /fix [bug] # reproduce investigate → fix → verify
69
+ /audit # spec-first code review
70
+ /test # run tests, classify failures
71
+ /evolve # detect gaps, generate fixes, learn
72
+ /ship # tests → secrets scan → commit → push → deploy
73
+ /pulse # health check — what's the state of things?
69
74
  ```
70
75
 
71
- ### Other commands
76
+ ### CLI commands
72
77
 
73
78
  ```bash
74
- npx azclaude-copilot . intent.md 30 # intent from file, 30 session limit
75
- npx azclaude-copilot . # resume existing project
76
- npx azclaude-copilot doctor # run health check (32 checks)
79
+ npx azclaude-copilot setup # install AZCLAUDE
80
+ npx azclaude-copilot doctor # 32-check health audit
81
+ npx azclaude-copilot . "intent" 30 # copilot with 30 session limit
82
+ npx azclaude-copilot . # resume existing copilot run
77
83
  ```
78
84
 
79
85
  ---
80
86
 
81
- ## How It Works
87
+ ## What You Get
82
88
 
83
- Three layers. The runner is dumb. The brain is smart. The environment accumulates.
89
+ 26 commands, 8 skills, 7 agents, memory, reflexes, evolution. Here's how the layers work:
84
90
 
85
91
  ```
86
92
  +-----------------------------------------------------------+
@@ -148,7 +154,7 @@ After all non-blocked milestones complete:
148
154
 
149
155
  ## What Makes It Different
150
156
 
151
- | Feature | Claude Code | Ralph Loop | Lovable | Cursor | AZCLAUDE Copilot |
157
+ | Feature | Claude Code | Ralph Loop | Lovable | Cursor | AZCLAUDE |
152
158
  |---------|------------|------------|---------|--------|-----------------|
153
159
  | Autonomous loop | -- | Yes | -- | -- | Yes |
154
160
  | Memory across sessions | -- | Git only | -- | -- | Goals + checkpoints + patterns + reflexes |
package/bin/copilot.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  'use strict';
3
3
  /**
4
- * AZCLAUDE Copilot — Autonomous Runner
4
+ * AZCLAUDE — Autonomous Runner (copilot mode)
5
5
  *
6
6
  * The outer loop. Stateless. Dumb on purpose.
7
7
  * Restarts Claude Code sessions until COPILOT_COMPLETE or max sessions reached.
@@ -42,7 +42,7 @@ const maxSessions = parseInt(args[2] || '20', 10);
42
42
 
43
43
  if (args.includes('--help') || args.includes('-h')) {
44
44
  console.log(`
45
- AZCLAUDE Copilot — Autonomous Product Builder
45
+ AZCLAUDE — Autonomous Mode
46
46
 
47
47
  Usage:
48
48
  npx azclaude-copilot <project-dir> <intent> [max-sessions]
@@ -134,7 +134,7 @@ if (resolvedProject === homeDir || resolvedProject === '/' || resolvedProject ==
134
134
  }
135
135
 
136
136
  console.log('\n════════════════════════════════════════════════');
137
- console.log(' AZCLAUDE COPILOT — Autonomous Mode');
137
+ console.log(' AZCLAUDE — Autonomous Mode');
138
138
  console.log(` Project: ${projectDir}`);
139
139
  console.log(` Max sessions: ${maxSessions}`);
140
140
  console.log(` Mode: ${resuming ? 'RESUME (plan.md exists)' : 'NEW (will run /blueprint)'}`);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "azclaude-copilot",
3
- "version": "0.2.0",
4
- "description": "Autonomous product builder. Describe once, AZCLAUDE builds it across sessions — planning, implementing, testing, evolving, deploying. Zero human input.",
3
+ "version": "0.2.2",
4
+ "description": "AI coding environment 26 commands, 8 skills, 7 agents, memory, reflexes, evolution. Install once, works on any stack.",
5
5
  "bin": {
6
6
  "azclaude": "./bin/cli.js",
7
7
  "azclaude-copilot": "./bin/copilot.js"