azclaude-copilot 0.3.6 → 0.3.7

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 (3) hide show
  1. package/README.md +34 -14
  2. package/bin/cli.js +12 -9
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -29,39 +29,58 @@ Zero dependencies. One install. Works on any stack.
29
29
 
30
30
  ## Install
31
31
 
32
+ **Step 1 — core install** (26 commands, memory, reflexes, evolution):
33
+
34
+ ```bash
35
+ npx azclaude-copilot
36
+ ```
37
+
38
+ **Step 2 — full install** (adds Level 5+: debate, pipeline, ELO — optional):
39
+
32
40
  ```bash
33
- npx azclaude-copilot setup
41
+ npx azclaude-copilot --full
42
+ ```
43
+
44
+ **Step 3 — configure your project** (open Claude Code, then run):
45
+
46
+ ```
47
+ /setup
34
48
  ```
35
49
 
36
- That's it. Your project now has the full AZCLAUDE environment in `.claude/`.
50
+ That's it. Your project now has AZCLAUDE in `.claude/`.
37
51
 
38
52
  ---
39
53
 
40
54
  ## Three Ways to Use It
41
55
 
42
- ### `/dream` — Start from an idea
56
+ ### 1. `/setup` — Configure an existing project
57
+
58
+ Open Claude Code in your project, then run:
43
59
 
44
60
  ```
45
- /dream
46
- > "Build a compliance SaaS with trilingual support"
61
+ /setup
47
62
  ```
48
- Scaffolds the full project: CLAUDE.md, skills, agents, memory, milestones. You build from there.
49
63
 
50
- ### `/setup` Configure an existing project
64
+ Analyzes your project's stack, domain, and scale. Fills CLAUDE.md. Generates project-specific skills and agents. Creates memory structure.
65
+
66
+ ### 2. `/dream` — Start from an idea
51
67
 
52
68
  ```
53
- /setup
69
+ /dream
70
+ > "Build a compliance SaaS with trilingual support"
54
71
  ```
55
- Analyzes your project's stack, domain, and scale. Fills CLAUDE.md. Generates project-specific skills and agents. Creates memory structure.
56
72
 
57
- ### `/copilot` Full autonomous mode
73
+ Scaffolds the full project: CLAUDE.md, skills, agents, memory, milestones. You build from there.
74
+
75
+ ### 3. `/copilot` — Full autonomous mode
58
76
 
59
77
  ```bash
60
78
  npx azclaude-copilot . "Build a compliance SaaS with trilingual support"
61
79
  ```
80
+
62
81
  Walk away. AZCLAUDE plans, builds, tests, commits, evolves, and deploys. Come back to a working product with full git history.
63
82
 
64
- ### Day-to-day commands
83
+ ### Day-to-day commands (in Claude Code terminal)
65
84
 
66
85
  ```bash
67
86
  /add [feature] # add a feature with TDD
@@ -76,7 +95,8 @@ Walk away. AZCLAUDE plans, builds, tests, commits, evolves, and deploys. Come ba
76
95
  ### CLI commands
77
96
 
78
97
  ```bash
79
- npx azclaude-copilot setup # install AZCLAUDE
98
+ npx azclaude-copilot # core install (26 commands, memory, reflexes)
99
+ npx azclaude-copilot --full # full install (adds debate, pipeline, ELO)
80
100
  npx azclaude-copilot doctor # 32-check health audit
81
101
  npx azclaude-copilot . "intent" 30 # copilot with 30 session limit
82
102
  npx azclaude-copilot . # resume existing copilot run
@@ -390,8 +410,8 @@ AZCLAUDE_HOOK_PROFILE=strict claude # all features + extra validation
390
410
  ### Doctor Audit
391
411
 
392
412
  ```bash
393
- npx azclaude doctor # 32 checks: hooks, settings, commands, memory
394
- npx azclaude doctor --audit # efficiency + security score
413
+ npx azclaude-copilot doctor # 32 checks: hooks, settings, commands, memory
414
+ npx azclaude-copilot doctor --audit # efficiency + security score
395
415
  ```
396
416
 
397
417
  See [SECURITY.md](SECURITY.md) for full details including known limitations and copilot-mode mitigations.
package/bin/cli.js CHANGED
@@ -338,7 +338,7 @@ function installCapabilities(projectDir, cfg, full) {
338
338
  copyDir(path.join(src, dir), path.join(dst, dir));
339
339
  }
340
340
  ok(`Capabilities installed (${cfg}/capabilities/) — ${full ? 'full' : 'core'}`);
341
- if (!full) info('Run npx azclaude --full to add intelligence capabilities (debate, pipeline, ELO)');
341
+ if (!full) info('Run npx azclaude-copilot --full to add intelligence capabilities (debate, pipeline, ELO)');
342
342
  info('manifest.md is your capability index — read it to find what to load');
343
343
  }
344
344
 
@@ -671,8 +671,8 @@ function runDemo() {
671
671
  console.log('\n════════════════════════════════════════════════');
672
672
  console.log(' Memory works. Context survives compaction.');
673
673
  console.log(' The hook fires on every file edit — no user action needed.');
674
- console.log('\n Install on your project: npx azclaude');
675
- console.log(' Check health: npx azclaude doctor');
674
+ console.log('\n Install on your project: npx azclaude-copilot');
675
+ console.log(' Check health: npx azclaude-copilot doctor');
676
676
  console.log('════════════════════════════════════════════════\n');
677
677
  }
678
678
 
@@ -872,7 +872,7 @@ function runDoctor() {
872
872
  try {
873
873
  const gs = JSON.parse(fs.readFileSync(globalSettings, 'utf8'));
874
874
  if (gs._azclaude) {
875
- console.log(' ⚠ Global hooks still present — re-run npx azclaude to migrate');
875
+ console.log(' ⚠ Global hooks still present — re-run npx azclaude-copilot to migrate');
876
876
  }
877
877
  } catch {}
878
878
  }
@@ -908,7 +908,7 @@ function runDoctor() {
908
908
  chk('hook integrity hash matches', saved === current);
909
909
  }
910
910
 
911
- info('Tip: re-run npx azclaude to upgrade to project-scoped hooks');
911
+ info('Tip: re-run npx azclaude-copilot to upgrade to project-scoped hooks');
912
912
  } else {
913
913
  console.log(`\n[ Hooks ]`);
914
914
  console.log(` · hooks not supported for ${cli.name} — skipping`);
@@ -1014,7 +1014,7 @@ function runDoctor() {
1014
1014
  const hasGitFail = failures.some(f => /uncommitted/.test(f));
1015
1015
  const hasMemoryFail = failures.some(f => /checkpoints|sessions|codebase-map|goals/.test(f));
1016
1016
  console.log('');
1017
- if (hasCommandFail || hasHookFail) console.log(' Fix: re-run npx azclaude to install missing files');
1017
+ if (hasCommandFail || hasHookFail) console.log(' Fix: re-run npx azclaude-copilot to install missing files');
1018
1018
  if (hasHookFail) console.log(' If hooks still fail: check that Node.js ≥ 16 is in PATH');
1019
1019
  if (hasGitFail) console.log(' Git: commit or stash uncommitted changes');
1020
1020
  if (hasMemoryFail) console.log(' Memory: run /setup or /persist to create missing files');
@@ -1127,9 +1127,12 @@ console.log('\n═════════════════════
1127
1127
  console.log(` Install mode: ${fullInstall ? 'full (all capabilities)' : 'core (shared + level-builders)'}`);
1128
1128
  console.log(' Architecture: lazy-loaded, manifest-driven');
1129
1129
  console.log(' Token cost per task: ~200-600 (vs ~21,000 monolith)');
1130
- console.log(` Next step: run /setup to configure this project`);
1130
+ console.log('');
1131
1131
  if (!fullInstall) {
1132
- console.log('');
1133
- console.log(' When ready for Level 5+: npx azclaude --full');
1132
+ console.log(' Next steps:');
1133
+ console.log(' 1. npx azclaude-copilot --full (Level 5+: debate, pipeline, ELO)');
1134
+ console.log(' 2. Open Claude Code and run /setup');
1135
+ } else {
1136
+ console.log(' Next step: open Claude Code and run /setup');
1134
1137
  }
1135
1138
  console.log('════════════════════════════════════════════════\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "azclaude-copilot",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
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",