azclaude-copilot 0.4.6 → 0.4.8

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
@@ -45,21 +45,22 @@ One install. Any stack. Zero dependencies.
45
45
 
46
46
  ## Install
47
47
 
48
+ **Step 1 — Install globally from your terminal:**
49
+
48
50
  ```bash
49
- npx azclaude-copilot # core install — 26 commands, memory, hooks, reflexes
50
- npx azclaude-copilot --full # full install — adds debate engine, pipeline, ELO
51
+ npm install -g azclaude-copilot@latest
51
52
  ```
52
53
 
53
- Then in Claude Code:
54
+ **Step 2 — Run setup inside Claude Code to get the full capabilities:**
54
55
 
55
- ```
56
- /setup # analyze your project, fill CLAUDE.md, build environment
56
+ ```bash
57
+ azclaude-copilot setup --full
57
58
  ```
58
59
 
59
- That's it. Your project now has AZCLAUDE in `.claude/`.
60
+ That's it. Your project now has AZCLAUDE in `.claude/` — 26 commands, memory, hooks, reflexes, agents, and skills.
60
61
 
61
62
  ```bash
62
- npx azclaude-copilot doctor # 32 checks — verify everything is wired correctly
63
+ azclaude-copilot doctor # 32 checks — verify everything is wired correctly
63
64
  ```
64
65
 
65
66
  ---
@@ -476,11 +477,11 @@ See [SECURITY.md](SECURITY.md) for full details.
476
477
 
477
478
  ## Verified
478
479
 
479
- 1196 tests. Every template, command, capability, agent, hook, and CLI feature verified.
480
+ 1197 tests. Every template, command, capability, agent, hook, and CLI feature verified.
480
481
 
481
482
  ```bash
482
483
  bash tests/test-features.sh
483
- # Results: 1196 passed, 0 failed, 1196 total
484
+ # Results: 1197 passed, 0 failed, 1197 total
484
485
  ```
485
486
 
486
487
  ---
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "azclaude-copilot",
3
- "version": "0.4.6",
4
- "description": "AI coding environment — 26 commands, 8 skills, 10 agents, memory, reflexes, evolution. Install once, works on any stack.",
3
+ "version": "0.4.8",
4
+ "description": "AI coding environment — 26 commands, 8 skills, 10 agents, memory, reflexes, evolution. Install: npm install -g azclaude-copilot@latest, then in Claude Code: azclaude-copilot setup --full",
5
5
  "bin": {
6
6
  "azclaude": "bin/cli.js",
7
7
  "azclaude-copilot": "bin/copilot.js"
@@ -56,11 +56,21 @@ Create the directory if needed: `.claude/memory/checkpoints/`
56
56
 
57
57
  ## Step 3: Update goals.md
58
58
 
59
- Add one line to the top of `## Current threads`:
59
+ **3a.** Add one line to the top of `## Current threads`:
60
60
  ```
61
61
  - [checkpoint] {HH:MM} — {label} → .claude/memory/checkpoints/{date}-{HH:MM}.md
62
62
  ```
63
63
 
64
+ **3b.** Replace the `## Next actions` block with the "What's next" list from the checkpoint:
65
+ ```
66
+ ## Next actions
67
+ 1. {item 1 from checkpoint "What's next"}
68
+ 2. {item 2}
69
+ 3. {item 3}
70
+ ```
71
+
72
+ This keeps goals.md current — `/snapshot` owns mid-session state, `/persist` owns end-of-session.
73
+
64
74
  ---
65
75
 
66
76
  ## Step 4: Confirm
@@ -219,5 +219,5 @@ let editCount = 1;
219
219
  try { editCount = parseInt(fs.readFileSync(counterPath, 'utf8'), 10) + 1; } catch (_) {}
220
220
  try { fs.writeFileSync(counterPath, String(editCount)); } catch (_) {}
221
221
  if (editCount > 0 && editCount % 15 === 0) {
222
- process.stderr.write(`\n⚠ ${editCount} edits this session — run /snapshot before context compaction loses your reasoning\n`);
222
+ process.stdout.write(`\n⚠ ${editCount} edits this session — run /snapshot before context compaction loses your reasoning\n`);
223
223
  }