@azerogluemin/ai-bootstrap 0.4.0 → 0.4.1
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/CHANGELOG.md +17 -0
- package/README.md +292 -83
- 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.1] — 2026-06-21
|
|
9
|
+
|
|
10
|
+
README rewrite — published so npm.com lands on the new usage guide.
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- packages/cli/README.md — full rewrite (AZ):
|
|
15
|
+
- 2-step TL;DR quick start
|
|
16
|
+
- User scope vs. project scope explained with table
|
|
17
|
+
- 5 real workflow scenarios (Creator/IG, SaaS, SMM, add bundle, remove)
|
|
18
|
+
- All commands grouped by purpose (setup, mgmt, MCP, backup, telemetry)
|
|
19
|
+
- 63 MCP server categorized list
|
|
20
|
+
- Troubleshooting section (5 common issues)
|
|
21
|
+
- No functional code changes vs. 0.4.0.
|
|
22
|
+
|
|
23
|
+
[0.4.1]: https://github.com/eminazeroglu/ai-bootstrap/releases/tag/v0.4.1
|
|
24
|
+
|
|
8
25
|
## [0.4.0] — 2026-06-21
|
|
9
26
|
|
|
10
27
|
Incremental skill + agent management — add / remove / list.
|
package/README.md
CHANGED
|
@@ -1,139 +1,347 @@
|
|
|
1
1
|
# @azerogluemin/ai-bootstrap
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> **Bir komanda. Hər layihə. Hər maşın. Claude Code hər şeyi yadda saxlayır.**
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/@azerogluemin/ai-bootstrap)
|
|
5
6
|
[](https://opensource.org/licenses/MIT)
|
|
6
|
-
[](https://www.typescriptlang.org/)
|
|
7
7
|
[](https://nodejs.org/)
|
|
8
|
-
[](https://github.com/eminazeroglu/ai-bootstrap)
|
|
9
8
|
|
|
10
|
-
##
|
|
9
|
+
## TL;DR — 2 addım
|
|
11
10
|
|
|
12
11
|
```bash
|
|
12
|
+
# 1) Bir dəfə bütün maşına (foundation: 10 universal skill)
|
|
13
13
|
npx @azerogluemin/ai-bootstrap
|
|
14
|
+
|
|
15
|
+
# 2) Hər yeni layihədə (bundle: layihənin növünə uyğun skill-lər)
|
|
16
|
+
cd ~/Projects/yeni-layihə
|
|
17
|
+
ai-bootstrap new
|
|
14
18
|
```
|
|
15
19
|
|
|
16
|
-
|
|
20
|
+
Bitdi. Hər layihədə sadəcə `claude` yaz — uyğun skill + agent dəstləri özü yüklənir.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Necə işləyir — 2 səviyyəli skill sistemi
|
|
17
25
|
|
|
18
|
-
|
|
19
|
-
2. **Projects** — scan your folders, catalog projects with CLAUDE.md detection
|
|
20
|
-
3. **Bundles** — pick skill + agent bundle:
|
|
21
|
-
- `foundation` — 10 essential skills, 2 agents (smallest)
|
|
22
|
-
- `developer` — 21 skills, 18 agents (engineering focus)
|
|
23
|
-
- `marketer` — 24 skills, 29 agents (SEO + social + growth)
|
|
24
|
-
- `creator` — 26 skills, 13 agents (video, music, storyboard)
|
|
25
|
-
- `founder` — 35 skills, 38 agents (C-Level + business + product)
|
|
26
|
-
- `full-stack` — 52+ skills, 75+ agents (everything)
|
|
27
|
-
4. **MCPs** — pick from 63 Model Context Protocol servers (github, postgres, supabase, notion, slack, atlassian, gmail, twilio, sendgrid, spotify, kubernetes, …)
|
|
28
|
-
5. **Memory** — markdown + git knowledge architecture (25-50× faster than vector DB at <100K entries)
|
|
29
|
-
6. **GitHub** — optional `~/.claude/` backup repo
|
|
26
|
+
Claude Code skill-ləri **2 səviyyəlidir**:
|
|
30
27
|
|
|
31
|
-
|
|
28
|
+
| Səviyyə | Yer | Nə vaxt yüklənir |
|
|
29
|
+
|---|---|---|
|
|
30
|
+
| **User scope** (qlobal) | `~/.claude/skills/` | Hər layihədə, hər session-da |
|
|
31
|
+
| **Project scope** (lokal) | `<layihə>/.claude/skills/` | YALNIZ o qovluqda |
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
ai-bootstrap bunun ikisini də idarə edir:
|
|
34
|
+
- **`npx @azerogluemin/ai-bootstrap`** → user scope (foundation: 10 əsas skill, universal lazımdır)
|
|
35
|
+
- **`ai-bootstrap new`** → project scope (layihə növünə uyğun bundle)
|
|
34
36
|
|
|
35
|
-
|
|
36
|
-
- **75+ specialized agents** including SEO suite (18), C-Level mirrors (10), Engineering (14), Social orchestrators (5), Marketing (6), Vertical specialists (8), Product team (5)
|
|
37
|
-
- **63 MCP servers** in catalog with real install commands + OAuth/credential helpers (stdio + HTTP transports)
|
|
38
|
-
- **Universal CLAUDE.md** with 8 foundation rules (docs-first, learning-keeper auto-promotion, dürüst dialoq, etc.)
|
|
39
|
-
- **Knowledge skeleton**: `user-profile`, `mistakes-log`, `verified-facts`, `user-rules`, `patterns`, `handoff-log`, language guides, projects manifest
|
|
40
|
-
- **Interactive permission gates** via Claude Code's settings.json
|
|
37
|
+
Beləliklə **AI Creator** layihən və **SaaS** layihən fərqli skill dəstləri görür. Token israfı yoxdur.
|
|
41
38
|
|
|
42
|
-
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## İlk dəfə qurulum (bir dəfə maşına)
|
|
43
42
|
|
|
44
43
|
```bash
|
|
45
|
-
|
|
46
|
-
|
|
44
|
+
npx @azerogluemin/ai-bootstrap
|
|
45
|
+
```
|
|
47
46
|
|
|
48
|
-
|
|
49
|
-
ai-bootstrap update # Re-sync skills + agents from latest bundle
|
|
50
|
-
ai-bootstrap doctor # Diagnose install health (symlinks, MCPs, creds)
|
|
47
|
+
Wizard 6 addım soruşur:
|
|
51
48
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
49
|
+
1. **Profile** — adın, rolun, dillərin, 6/12/24 ay məqsədlərin
|
|
50
|
+
2. **Projects** — mövcud layihələri scan etmək istəyirsən? (boş burax — sonra qurarsan)
|
|
51
|
+
3. **Bundle** — **`foundation`** seç (qlobal yalnız əsas 10 skill lazımdır; qalanlar project scope-da)
|
|
52
|
+
4. **MCPs** — istədiyin MCP server-ləri seç (məs. github, instagram, brave-search)
|
|
53
|
+
5. **Memory** — `markdown-only` (default tövsiyə)
|
|
54
|
+
6. **GitHub backup** — istərsən qur, istəməsən boş burax (sonra `ai-bootstrap backup init`)
|
|
56
55
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
ai-bootstrap
|
|
60
|
-
|
|
61
|
-
|
|
56
|
+
Yoxla:
|
|
57
|
+
```bash
|
|
58
|
+
ai-bootstrap doctor
|
|
59
|
+
```
|
|
60
|
+
Hər şey ✓ olmalıdır.
|
|
62
61
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
ai-bootstrap
|
|
66
|
-
|
|
62
|
+
MCP credential əlavə et (məs. github, instagram tokenları):
|
|
63
|
+
```bash
|
|
64
|
+
ai-bootstrap mcp credentials
|
|
65
|
+
```
|
|
67
66
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
ai-bootstrap
|
|
67
|
+
`~/.zshrc`-ə (yaxud `~/.bashrc`) bir dəfə əlavə et:
|
|
68
|
+
```bash
|
|
69
|
+
echo 'set -a; [ -f ~/.ai-bootstrap.env ] && source ~/.ai-bootstrap.env; set +a' >> ~/.zshrc
|
|
70
|
+
source ~/.zshrc
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## Hər yeni layihədə (1 komanda)
|
|
74
76
|
|
|
77
|
+
```bash
|
|
78
|
+
cd ~/Projects/yeni-layihə
|
|
79
|
+
ai-bootstrap new
|
|
75
80
|
```
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
81
|
+
|
|
82
|
+
Wizard soruşur: **"Bu qovluqda nə etmək istəyirsən?"**
|
|
83
|
+
|
|
84
|
+
| Sənin cavab | Bundle | Skill | Agent |
|
|
85
|
+
|---|---|---|---|
|
|
86
|
+
| SaaS / Fullstack web app | `developer` | 21 | 18 |
|
|
87
|
+
| AI Creator content | `creator` | 26 | 13 |
|
|
88
|
+
| Marketing / SMM | `marketer` | 24 | 29 |
|
|
89
|
+
| Mobile app | `developer` | 21 | 18 |
|
|
90
|
+
| Data analysis / dashboard | `developer` | 21 | 18 |
|
|
91
|
+
| Client agency work | `full-stack` | 52+ | 75+ |
|
|
92
|
+
| Startup / founder | `founder` | 35 | 38 |
|
|
93
|
+
| Open source library | `developer` | 21 | 18 |
|
|
94
|
+
| Just basics | `foundation` | 10 | 2 |
|
|
95
|
+
|
|
96
|
+
Yazır:
|
|
97
|
+
- `<layihə>/.claude/skills/` — layihəyə xas skill-lər
|
|
98
|
+
- `<layihə>/.claude/agents/` — layihəyə xas agent-lər
|
|
99
|
+
- `<layihə>/CLAUDE.md` — layihə qaydaları + təsvir
|
|
100
|
+
|
|
101
|
+
İndi:
|
|
102
|
+
```bash
|
|
103
|
+
claude
|
|
80
104
|
```
|
|
105
|
+
Yalnız bu layihənin skill dəsti yüklənir.
|
|
81
106
|
|
|
82
|
-
|
|
107
|
+
---
|
|
83
108
|
|
|
84
|
-
|
|
85
|
-
|---|---|
|
|
86
|
-
| `~/.claude/CLAUDE.md` | Universal foundation rules |
|
|
87
|
-
| `~/.claude/settings.json` | Permissions, model preference, hooks |
|
|
88
|
-
| `~/.claude/knowledge/*.md` | Cross-project knowledge |
|
|
89
|
-
| `~/.claude/skills/<name>/` | Installed skill (copied from template) |
|
|
90
|
-
| `~/.claude/agents/<name>/` | Installed agent (copied from template) |
|
|
91
|
-
| `~/.claude.json` | MCP server configs (Claude Code reads this) |
|
|
92
|
-
| `~/.claude/mcp-tracking.json` | ai-bootstrap metadata: which MCPs, what creds needed |
|
|
93
|
-
| `~/.claude/ai-bootstrap-state.json` | Saved bundle selection (for `update`) |
|
|
94
|
-
| `~/.ai-bootstrap.env` | MCP credentials (chmod 600, source in shell) |
|
|
109
|
+
## Real istifadə nümunələri
|
|
95
110
|
|
|
96
|
-
|
|
111
|
+
### Senaryo 1: AI Creator layihəsi (məs. Instagram brand)
|
|
97
112
|
|
|
98
|
-
|
|
113
|
+
```bash
|
|
114
|
+
mkdir -p ~/Projects/azerogluemin-content && cd ~/Projects/azerogluemin-content
|
|
115
|
+
ai-bootstrap new
|
|
116
|
+
# Soruşur → "AI Creator content" seç → creator bundle
|
|
117
|
+
# 26 skill: showrunner, character-designer, image-prompt-engineer,
|
|
118
|
+
# video-prompt-engineer, youtube-thumbnail-designer,
|
|
119
|
+
# brand-identity-designer, instagram-expert, ...
|
|
120
|
+
# 13 agent: video-pipeline, storyboard-orchestrator, sound-designer, ...
|
|
121
|
+
|
|
122
|
+
claude
|
|
123
|
+
> "10 günlük IG content calendar yarat — AZ-də, mövzu AI-creator workflow"
|
|
124
|
+
> "Reel hook yaz: developer → AI creator pivot"
|
|
125
|
+
> "YouTube thumbnail dizayn et: AI bootstrap launch"
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### Senaryo 2: SaaS layihə
|
|
99
129
|
|
|
100
130
|
```bash
|
|
101
|
-
|
|
131
|
+
mkdir -p ~/Projects/restoran-crm && cd ~/Projects/restoran-crm
|
|
132
|
+
ai-bootstrap new
|
|
133
|
+
# → "SaaS / Fullstack web app" → developer bundle
|
|
134
|
+
# 21 skill: architect, backend, frontend, devops, security-auditor, ...
|
|
135
|
+
# 18 agent: code-reviewer, backend-engineer, frontend-engineer, db-migrator, ...
|
|
136
|
+
|
|
137
|
+
claude
|
|
138
|
+
> "Multi-tenant restoran CRM arxitekturası dizayn et"
|
|
139
|
+
> "Postgres RLS policy yaz hər tenant üçün"
|
|
102
140
|
```
|
|
103
141
|
|
|
104
|
-
|
|
142
|
+
### Senaryo 3: Müştəri SMM işi
|
|
105
143
|
|
|
106
144
|
```bash
|
|
107
|
-
|
|
108
|
-
|
|
145
|
+
mkdir -p ~/Clients/restoran-smm && cd ~/Clients/restoran-smm
|
|
146
|
+
ai-bootstrap new
|
|
147
|
+
# → "Marketing / SMM" → marketer bundle
|
|
148
|
+
# 24 skill: seo-optimizer, copywriter-pro, social-strategist,
|
|
149
|
+
# paid-ads-strategist, content-strategist, ...
|
|
150
|
+
# 29 agent: 18 SEO agent + social orchestrators + marketing agents
|
|
151
|
+
|
|
152
|
+
claude
|
|
153
|
+
> "Restoran üçün 30 günlük IG content plan + Reel hook-lar"
|
|
154
|
+
> "SEO audit et müştərinin saytında"
|
|
109
155
|
```
|
|
110
156
|
|
|
111
|
-
|
|
157
|
+
### Senaryo 4: Bundle əskik gəlir, əlavə skill lazımdır
|
|
112
158
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
159
|
+
```bash
|
|
160
|
+
cd ~/Projects/restoran-crm # developer bundle qurulub
|
|
161
|
+
# İndi müştəri marketing landing page istəyir, creator skill-ləri lazımdır:
|
|
162
|
+
ai-bootstrap add showrunner image-prompt-engineer brand-identity-designer
|
|
163
|
+
|
|
164
|
+
# Yaxud bütün creator bundle əlavə et:
|
|
165
|
+
ai-bootstrap add --bundle creator
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
### Senaryo 5: İstifadə etmədiyini sil
|
|
169
|
+
|
|
170
|
+
```bash
|
|
171
|
+
ai-bootstrap list # bu layihənin skill-ləri
|
|
172
|
+
ai-bootstrap list --all # user + bu layihə yan-yana
|
|
173
|
+
ai-bootstrap remove security-auditor # silmək
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## Bütün komandalar
|
|
179
|
+
|
|
180
|
+
### Setup + sync
|
|
181
|
+
```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ı
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
### Skill management
|
|
189
|
+
```bash
|
|
190
|
+
ai-bootstrap add <name1> <name2> # konkret skill/agent əlavə
|
|
191
|
+
ai-bootstrap add --bundle <name> # bütün bundle əlavə
|
|
192
|
+
ai-bootstrap remove <name> # sil (alias: rm)
|
|
193
|
+
ai-bootstrap list # bu scope-da quraşdırılanlar
|
|
194
|
+
ai-bootstrap list --all # user + project hamısı (alias: ls)
|
|
195
|
+
ai-bootstrap list --user # yalnız user scope
|
|
196
|
+
ai-bootstrap list --project # yalnız bu layihə
|
|
197
|
+
```
|
|
116
198
|
|
|
117
|
-
|
|
199
|
+
### MCP servers (Instagram, GitHub, Supabase və s.)
|
|
200
|
+
```bash
|
|
201
|
+
ai-bootstrap mcp list # 63 mövcud MCP göstər
|
|
202
|
+
ai-bootstrap mcp installed # quraşdırılan MCP-lər
|
|
203
|
+
ai-bootstrap mcp credentials # token-ləri əlavə et
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
### Backup (xeyrli)
|
|
207
|
+
```bash
|
|
208
|
+
ai-bootstrap backup init # private GitHub repo-ya bağla
|
|
209
|
+
ai-bootstrap backup sync # dəyişikliyi push et
|
|
210
|
+
ai-bootstrap backup pull # yeni maşında bərpa
|
|
211
|
+
ai-bootstrap backup status # son sinx + remote
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
### Telemetry (default OFF, opt-in)
|
|
215
|
+
```bash
|
|
216
|
+
ai-bootstrap telemetry on/off/status
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
---
|
|
220
|
+
|
|
221
|
+
## Bundle siyahısı
|
|
222
|
+
|
|
223
|
+
| Bundle | Skill | Agent | Nə üçün |
|
|
224
|
+
|---|---|---|---|
|
|
225
|
+
| `foundation` | 10 | 2 | Universal əsas — user scope-a tövsiyə |
|
|
226
|
+
| `developer` | 21 | 18 | SaaS, fullstack, mobile, data, open source |
|
|
227
|
+
| `creator` | 26 | 13 | Video, Reel, sosial content, brand |
|
|
228
|
+
| `marketer` | 24 | 29 | SEO, SMM, copywriting, ads (18 SEO agent) |
|
|
229
|
+
| `founder` | 35 | 38 | C-Level advisory + product + marketing |
|
|
230
|
+
| `full-stack` | 52+ | 75+ | Hamısı — multi-rol agency işi |
|
|
231
|
+
|
|
232
|
+
Tam siyahı: `npx @azerogluemin/ai-bootstrap mcp list` (MCP-lər) yaxud GitHub repo-da [packages/templates/](https://github.com/eminazeroglu/ai-bootstrap/tree/main/packages/templates).
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
236
|
+
## 63 MCP server (real install komanda-ları ilə)
|
|
237
|
+
|
|
238
|
+
**Dev**: github, gitlab, filesystem, git, fetch, puppeteer, playwright, vercel, cloudflare, aws, netlify, brave-search, firecrawl, tavily, exa, kubernetes, browserbase, apify, time
|
|
239
|
+
|
|
240
|
+
**Data**: postgres, supabase, mongodb, sqlite, redis, airtable
|
|
241
|
+
|
|
242
|
+
**Productivity**: notion, linear, obsidian, slack, discord, memory, atlassian (Jira + Confluence), trello, asana, clickup
|
|
243
|
+
|
|
244
|
+
**Social**: instagram, twitter, meta, youtube, linkedin, tiktok, telegram
|
|
245
|
+
|
|
246
|
+
**AI**: openai, anthropic, elevenlabs, replicate, perplexity
|
|
247
|
+
|
|
248
|
+
**Creator**: figma, spotify, youtube-transcript
|
|
249
|
+
|
|
250
|
+
**Business**: stripe, hubspot, salesforce, twilio, sendgrid
|
|
251
|
+
|
|
252
|
+
**Analytics**: ga4, sentry, posthog
|
|
253
|
+
|
|
254
|
+
**Research**: arxiv
|
|
255
|
+
|
|
256
|
+
**Google Workspace** (HTTP/OAuth): gmail, google-drive, google-calendar, google-chat
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
## 3 səviyyəli yaddaş
|
|
261
|
+
|
|
262
|
+
```
|
|
263
|
+
~/.claude/CLAUDE.md ← universal qaydalar (hər session)
|
|
264
|
+
~/.claude/knowledge/ ← cross-layihə yaddaş (markdown + git)
|
|
265
|
+
learning-keeper skill ← səhvləri yadda saxlayır, qaydaya çevirir
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
learning-keeper skill xüsusi: söhbətdə düzəliş edirsənsə ("yox elə yox, belə"), bu skill o düzəlişi `~/.claude/knowledge/mistakes-log.md`-ə yazır. Növbəti dəfə həmin səhvi etməyəcək.
|
|
269
|
+
|
|
270
|
+
---
|
|
271
|
+
|
|
272
|
+
## Files written
|
|
273
|
+
|
|
274
|
+
| Yer | Nə üçün |
|
|
275
|
+
|---|---|
|
|
276
|
+
| `~/.claude/CLAUDE.md` | Universal foundation qaydalar |
|
|
277
|
+
| `~/.claude/settings.json` | Permission, model, hook |
|
|
278
|
+
| `~/.claude/knowledge/*.md` | Cross-layihə yaddaş |
|
|
279
|
+
| `~/.claude/skills/<name>/` | User-scope skill (qlobal) |
|
|
280
|
+
| `~/.claude/agents/<name>/` | User-scope agent (qlobal) |
|
|
281
|
+
| `~/.claude.json` | MCP server konfiqurasiyaları |
|
|
282
|
+
| `~/.claude/mcp-tracking.json` | ai-bootstrap metadata |
|
|
283
|
+
| `~/.ai-bootstrap.env` | MCP credential-lar (chmod 600) |
|
|
284
|
+
| `<layihə>/CLAUDE.md` | Layihə qaydaları |
|
|
285
|
+
| `<layihə>/.claude/skills/` | Project-scope skill (yalnız bu qovluqda) |
|
|
286
|
+
| `<layihə>/.claude/agents/` | Project-scope agent |
|
|
287
|
+
| `<layihə>/.claude/ai-bootstrap-project.json` | Layihə bundle state |
|
|
288
|
+
|
|
289
|
+
---
|
|
290
|
+
|
|
291
|
+
## Tələblər
|
|
292
|
+
|
|
293
|
+
- **Node.js ≥ 22**
|
|
294
|
+
- **macOS / Linux / WSL2** — primary; Windows native best-effort
|
|
295
|
+
- **Disk**: ~3 MB templates + sənin yaratdığın yaddaş
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
## Problem həlli
|
|
300
|
+
|
|
301
|
+
### `ai-bootstrap: command not found`
|
|
302
|
+
`npx @azerogluemin/ai-bootstrap` ilə qaçırılırsa global yox. Düzəliş: ya `npm i -g @azerogluemin/ai-bootstrap`, yaxud həmişə `npx @azerogluemin/ai-bootstrap@latest <command>`.
|
|
303
|
+
|
|
304
|
+
### `npm publish` 404
|
|
305
|
+
Scope səhvdir. Paket adı `@<sənin npm username>/...` ilə başlamalıdır.
|
|
306
|
+
|
|
307
|
+
### `ai-bootstrap doctor` failure göstərir
|
|
308
|
+
- Symlink qırılıbsa → `ai-bootstrap update` qaçır
|
|
309
|
+
- MCP creds yoxdursa → `ai-bootstrap mcp credentials`
|
|
310
|
+
- CLAUDE.md yoxdursa → `npx @azerogluemin/ai-bootstrap` yenidən qaçır
|
|
311
|
+
|
|
312
|
+
### Skill aktivləşmir Claude-da
|
|
313
|
+
- Doğru qovluqda olduğunu yoxla (`pwd`)
|
|
314
|
+
- Project scope qurulubsa → `<layihə>/.claude/skills/` mövcuddur?
|
|
315
|
+
- `ai-bootstrap list` ilə təsdiq et
|
|
316
|
+
|
|
317
|
+
### MCP server connect olmur
|
|
318
|
+
- `~/.ai-bootstrap.env`-də credential-lar var?
|
|
319
|
+
- Shell yenidən load et: `source ~/.zshrc`
|
|
320
|
+
- `ai-bootstrap doctor` yoxla
|
|
321
|
+
|
|
322
|
+
---
|
|
323
|
+
|
|
324
|
+
## Development (contribute etmək üçün)
|
|
118
325
|
|
|
119
326
|
```bash
|
|
120
327
|
git clone https://github.com/eminazeroglu/ai-bootstrap.git
|
|
121
328
|
cd ai-bootstrap
|
|
122
329
|
|
|
123
|
-
pnpm install
|
|
330
|
+
pnpm install
|
|
124
331
|
pnpm --filter @azerogluemin/ai-bootstrap build
|
|
125
|
-
pnpm --filter @azerogluemin/ai-bootstrap test #
|
|
126
|
-
|
|
127
|
-
# Run locally without npx
|
|
128
|
-
node packages/cli/bin/init.js
|
|
332
|
+
pnpm --filter @azerogluemin/ai-bootstrap test # 134+ test (smoke + e2e)
|
|
129
333
|
|
|
130
|
-
#
|
|
334
|
+
# Lokal test isolated HOME-da:
|
|
131
335
|
HOME=/tmp/ab-sandbox node packages/cli/bin/init.js
|
|
132
336
|
```
|
|
133
337
|
|
|
338
|
+
Detallı [CONTRIBUTING.md](https://github.com/eminazeroglu/ai-bootstrap/blob/main/CONTRIBUTING.md).
|
|
339
|
+
|
|
340
|
+
---
|
|
341
|
+
|
|
134
342
|
## License
|
|
135
343
|
|
|
136
|
-
MIT — fork, modify, distribute
|
|
344
|
+
[MIT](./LICENSE) — fork, modify, distribute.
|
|
137
345
|
|
|
138
346
|
## Author
|
|
139
347
|
|
|
@@ -143,4 +351,5 @@ Built by [Emin Azəroğlu](https://github.com/eminazeroglu) ([@azerogluemin_ai](
|
|
|
143
351
|
|
|
144
352
|
- [GitHub repo](https://github.com/eminazeroglu/ai-bootstrap)
|
|
145
353
|
- [Issues](https://github.com/eminazeroglu/ai-bootstrap/issues)
|
|
146
|
-
- [
|
|
354
|
+
- [Changelog](./CHANGELOG.md)
|
|
355
|
+
- [Security policy](https://github.com/eminazeroglu/ai-bootstrap/blob/main/SECURITY.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azerogluemin/ai-bootstrap",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
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",
|