azclaude-copilot 0.4.16 → 0.4.18
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 +3 -3
- package/bin/cli.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ Most AI coding tools require upfront decisions: which agents to create, what pro
|
|
|
58
58
|
AZCLAUDE inverts this. **You start with almost nothing. The environment builds itself from evidence.**
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
|
-
npx azclaude-copilot # one command. that's it.
|
|
61
|
+
npx azclaude-copilot@latest # one command. that's it.
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
No agent files to write. No skills to configure. No prompt engineering. `npx azclaude-copilot` installs 33 commands, 4 hooks, memory structure, and a manifest. The rest is generated from your actual codebase as you work. Run the same command again later — it auto-detects whether to skip, install, or upgrade.
|
|
@@ -113,7 +113,7 @@ Claude reads the manifest (one file), finds which 1-3 capability files apply, lo
|
|
|
113
113
|
**Step 1 — Install globally from your terminal:**
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
|
-
npx azclaude-copilot
|
|
116
|
+
npx azclaude-copilot@latest
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
That's it. One command, no flags. Auto-detects whether this is a fresh install or an upgrade:
|
|
@@ -122,7 +122,7 @@ That's it. One command, no flags. Auto-detects whether this is a fresh install o
|
|
|
122
122
|
- **Already up to date** → verifies, no overwrites
|
|
123
123
|
|
|
124
124
|
```bash
|
|
125
|
-
npx azclaude-copilot doctor # 32 checks — verify everything is wired correctly
|
|
125
|
+
npx azclaude-copilot@latest doctor # 32 checks — verify everything is wired correctly
|
|
126
126
|
```
|
|
127
127
|
|
|
128
128
|
---
|
package/bin/cli.js
CHANGED
|
@@ -1221,5 +1221,5 @@ if (onboardingPath === 'RESUME') {
|
|
|
1221
1221
|
console.log('');
|
|
1222
1222
|
console.log(' ─────────────────────────────────────────────');
|
|
1223
1223
|
console.log(' docs: github.com/haytamAroui/AZ-CLAUDE-COPILOT');
|
|
1224
|
-
console.log(' upgrade: npx azclaude-copilot
|
|
1224
|
+
console.log(' upgrade: npx azclaude-copilot@latest');
|
|
1225
1225
|
console.log('════════════════════════════════════════════════\n');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "azclaude-copilot",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "AI coding environment —
|
|
3
|
+
"version": "0.4.18",
|
|
4
|
+
"description": "AI coding environment — 33 commands, 8 skills, 15 agents, memory, reflexes, evolution. Install: npx azclaude-copilot@latest, then open Claude Code.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"azclaude": "bin/cli.js",
|
|
7
7
|
"azclaude-copilot": "bin/copilot.js"
|