@azerogluemin/ai-bootstrap 0.4.1 → 0.4.2

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/CHANGELOG.md +17 -0
  2. package/README.md +21 -9
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,23 @@ All notable changes to `@azerogluemin/ai-bootstrap` are documented here.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.4.2] — 2026-06-21
9
+
10
+ README quick-start fixed — global install upfront.
11
+
12
+ ### Changed
13
+
14
+ - README quick-start was inconsistent: step 1 used `npx` (one-shot, no install),
15
+ step 2 used `ai-bootstrap new` (requires global install). Users hit
16
+ `zsh: command not found: ai-bootstrap` after the wizard.
17
+ - Quick-start is now 3 steps: `npm install -g` → `ai-bootstrap` (wizard) →
18
+ `ai-bootstrap new` (per project)
19
+ - Explanation added: why global install (so `new` / `add` / `doctor` are
20
+ available everywhere) + alternative (always-`npx`)
21
+ - No functional code changes vs. 0.4.1.
22
+
23
+ [0.4.2]: https://github.com/eminazeroglu/ai-bootstrap/releases/tag/v0.4.2
24
+
8
25
  ## [0.4.1] — 2026-06-21
9
26
 
10
27
  README rewrite — published so npm.com lands on the new usage guide.
package/README.md CHANGED
@@ -6,19 +6,26 @@
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
  [![Node ≥22](https://img.shields.io/badge/Node-%E2%89%A522-339933?logo=node.js&logoColor=white)](https://nodejs.org/)
8
8
 
9
- ## TL;DR — 2 addım
9
+ ## TL;DR — 3 addım
10
10
 
11
11
  ```bash
12
- # 1) Bir dəfə bütün maşına (foundation: 10 universal skill)
13
- npx @azerogluemin/ai-bootstrap
12
+ # 1) Bir dəfə qlobal install (ai-bootstrap komandasını maşına əlavə edir)
13
+ npm install -g @azerogluemin/ai-bootstrap
14
14
 
15
- # 2) Hər yeni layihədə (bundle: layihənin növünə uyğun skill-lər)
15
+ # 2) Bir dəfə user-scope wizard (foundation: 10 universal skill)
16
+ ai-bootstrap
17
+
18
+ # 3) Hər yeni layihədə (bundle: layihənin növünə uyğun skill-lər)
16
19
  cd ~/Projects/yeni-layihə
17
20
  ai-bootstrap new
18
21
  ```
19
22
 
20
23
  Bitdi. Hər layihədə sadəcə `claude` yaz — uyğun skill + agent dəstləri özü yüklənir.
21
24
 
25
+ > **Niyə qlobal install?** `npx @azerogluemin/ai-bootstrap` paketi bir dəfə işlədir,
26
+ > sonra `ai-bootstrap new` komandası tapılmır. Qlobal install ilə komanda hər yerdə əlçatandır.
27
+ > Alternativ: hər dəfə `npx @azerogluemin/ai-bootstrap@latest <command>` yazmaq (uzun).
28
+
22
29
  ---
23
30
 
24
31
  ## Necə işləyir — 2 səviyyəli skill sistemi
@@ -41,7 +48,11 @@ Beləliklə **AI Creator** layihən və **SaaS** layihən fərqli skill dəstlə
41
48
  ## İlk dəfə qurulum (bir dəfə maşına)
42
49
 
43
50
  ```bash
44
- npx @azerogluemin/ai-bootstrap
51
+ # Qlobal install — ai-bootstrap komandasını maşına əlavə edir
52
+ npm install -g @azerogluemin/ai-bootstrap
53
+
54
+ # Sonra wizard:
55
+ ai-bootstrap
45
56
  ```
46
57
 
47
58
  Wizard 6 addım soruşur:
@@ -179,10 +190,11 @@ ai-bootstrap remove security-auditor # silmək
179
190
 
180
191
  ### Setup + sync
181
192
  ```bash
182
- npx @azerogluemin/ai-bootstrap # ilk qurulum (user scope, bir dəfə)
183
- ai-bootstrap new # bu qovluğa layihə bundle (hər layihədə)
184
- ai-bootstrap update # yeni versiyada skill-ləri yenilə
185
- ai-bootstrap doctor # sağlamlıq yoxlaması
193
+ npm install -g @azerogluemin/ai-bootstrap # bir dəfə qlobal install
194
+ ai-bootstrap # ilk wizard (user scope foundation)
195
+ ai-bootstrap new # bu qovluğa layihə bundle (hər layihə)
196
+ ai-bootstrap update # yeni versiyada skill-ləri yenilə
197
+ ai-bootstrap doctor # sağlamlıq yoxlaması
186
198
  ```
187
199
 
188
200
  ### Skill management
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azerogluemin/ai-bootstrap",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Personal AI infrastructure bootstrap for Claude Code — interactive setup wizard with skills, agents, MCPs, and cross-project memory",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",