azclaude-copilot 0.2.0 → 0.2.1
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 +46 -40
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<h1 align="center">AZCLAUDE
|
|
3
|
-
<p align="center"><strong>
|
|
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-
|
|
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="#
|
|
12
|
-
<a href="#
|
|
13
|
-
<a href="#
|
|
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
|
-
##
|
|
22
|
+
## What is AZCLAUDE?
|
|
24
23
|
|
|
25
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
##
|
|
40
|
+
## Three Ways to Use It
|
|
39
41
|
|
|
40
|
-
###
|
|
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
|
-
|
|
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
|
-
###
|
|
57
|
+
### `/copilot` — Full autonomous mode
|
|
49
58
|
|
|
50
59
|
```bash
|
|
51
|
-
npx azclaude-copilot . "
|
|
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
|
-
|
|
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
|
-
/
|
|
64
|
-
/
|
|
65
|
-
/
|
|
66
|
-
/
|
|
67
|
-
/
|
|
68
|
-
/
|
|
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
|
-
###
|
|
76
|
+
### CLI commands
|
|
72
77
|
|
|
73
78
|
```bash
|
|
74
|
-
npx azclaude-copilot
|
|
75
|
-
npx azclaude-copilot
|
|
76
|
-
npx azclaude-copilot
|
|
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
|
-
##
|
|
87
|
+
## What You Get
|
|
82
88
|
|
|
83
|
-
|
|
89
|
+
26 commands, 8 skills, 7 agents, memory, reflexes, evolution. Here's how the layers work:
|
|
84
90
|
|
|
85
91
|
```
|
|
86
92
|
+-----------------------------------------------------------+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "azclaude-copilot",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Autonomous product builder. Describe once, AZCLAUDE builds it across sessions — planning, implementing, testing, evolving, deploying. Zero human input.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"azclaude": "./bin/cli.js",
|