azclaude-copilot 0.1.2 → 0.1.3
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 +31 -44
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,12 +35,20 @@ Human input after first message: ZERO
|
|
|
35
35
|
|
|
36
36
|
---
|
|
37
37
|
|
|
38
|
-
##
|
|
38
|
+
## Quick Start
|
|
39
|
+
|
|
40
|
+
### 1. Install into your project
|
|
39
41
|
|
|
40
42
|
```bash
|
|
41
|
-
npx azclaude-copilot
|
|
42
|
-
|
|
43
|
-
|
|
43
|
+
npx azclaude-copilot setup
|
|
44
|
+
```
|
|
45
|
+
|
|
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.
|
|
47
|
+
|
|
48
|
+
### 2. Run autonomously (copilot mode)
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
npx azclaude-copilot . "EU AI Act compliance SaaS with trilingual support"
|
|
44
52
|
```
|
|
45
53
|
|
|
46
54
|
Walk away. Come back to:
|
|
@@ -49,7 +57,24 @@ Walk away. Come back to:
|
|
|
49
57
|
- `copilot-report.md` with everything that was built
|
|
50
58
|
- Evolved environment with project-specific agents and learned reflexes
|
|
51
59
|
|
|
52
|
-
|
|
60
|
+
### 3. Or use commands manually
|
|
61
|
+
|
|
62
|
+
```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
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### Other commands
|
|
72
|
+
|
|
73
|
+
```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)
|
|
77
|
+
```
|
|
53
78
|
|
|
54
79
|
---
|
|
55
80
|
|
|
@@ -367,45 +392,7 @@ See [SECURITY.md](SECURITY.md) for full details including known limitations and
|
|
|
367
392
|
|
|
368
393
|
---
|
|
369
394
|
|
|
370
|
-
##
|
|
371
|
-
|
|
372
|
-
### Install the AZCLAUDE environment
|
|
373
|
-
|
|
374
|
-
```bash
|
|
375
|
-
npx azclaude
|
|
376
|
-
```
|
|
377
|
-
|
|
378
|
-
Works with Claude Code, Gemini CLI, Codex, OpenCode, and Cursor. Auto-detects your CLI and installs to the correct paths.
|
|
379
|
-
|
|
380
|
-
### Run /setup inside your project
|
|
381
|
-
|
|
382
|
-
```bash
|
|
383
|
-
/setup
|
|
384
|
-
```
|
|
385
|
-
|
|
386
|
-
### Verify
|
|
387
|
-
|
|
388
|
-
```bash
|
|
389
|
-
npx azclaude doctor
|
|
390
|
-
```
|
|
391
|
-
|
|
392
|
-
### Run Copilot (autonomous mode)
|
|
393
|
-
|
|
394
|
-
```bash
|
|
395
|
-
# New project -- describe and walk away
|
|
396
|
-
npx azclaude-copilot . "Build a REST API with auth and Stripe"
|
|
397
|
-
|
|
398
|
-
# From intent file
|
|
399
|
-
npx azclaude-copilot . intent.md
|
|
400
|
-
|
|
401
|
-
# With session limit
|
|
402
|
-
npx azclaude-copilot . "my app" 30
|
|
403
|
-
|
|
404
|
-
# Resume (reads existing plan.md)
|
|
405
|
-
npx azclaude-copilot .
|
|
406
|
-
```
|
|
407
|
-
|
|
408
|
-
### Exit Conditions
|
|
395
|
+
## Exit Conditions
|
|
409
396
|
|
|
410
397
|
| Condition | Exit code |
|
|
411
398
|
|-----------|-----------|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "azclaude-copilot",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
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",
|