@atlashub/smartstack-cli 1.11.0 → 1.13.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.
Files changed (74) hide show
  1. package/.documentation/agents.html +7 -2
  2. package/.documentation/apex.html +7 -2
  3. package/.documentation/business-analyse.html +7 -2
  4. package/.documentation/cli-commands.html +871 -0
  5. package/.documentation/commands.html +7 -2
  6. package/.documentation/efcore.html +7 -2
  7. package/.documentation/gitflow.html +7 -2
  8. package/.documentation/hooks.html +7 -2
  9. package/.documentation/index.html +7 -2
  10. package/.documentation/init.html +7 -2
  11. package/.documentation/installation.html +7 -2
  12. package/.documentation/ralph-loop.html +7 -2
  13. package/.documentation/test-web.html +7 -2
  14. package/dist/index.js +1932 -336
  15. package/dist/index.js.map +1 -1
  16. package/package.json +8 -2
  17. package/templates/agents/efcore/squash.md +67 -31
  18. package/templates/agents/gitflow/finish.md +68 -56
  19. package/templates/commands/business-analyse/0-orchestrate.md +72 -556
  20. package/templates/commands/business-analyse/1-init.md +23 -193
  21. package/templates/commands/business-analyse/2-discover.md +85 -462
  22. package/templates/commands/business-analyse/3-analyse.md +40 -342
  23. package/templates/commands/business-analyse/4-specify.md +72 -537
  24. package/templates/commands/business-analyse/5-validate.md +43 -237
  25. package/templates/commands/business-analyse/6-handoff.md +93 -682
  26. package/templates/commands/business-analyse/7-doc-html.md +45 -544
  27. package/templates/commands/business-analyse/_shared.md +176 -0
  28. package/templates/commands/business-analyse/bug.md +50 -257
  29. package/templates/commands/business-analyse/change-request.md +59 -283
  30. package/templates/commands/business-analyse/hotfix.md +36 -120
  31. package/templates/commands/business-analyse.md +55 -574
  32. package/templates/commands/efcore/_shared.md +206 -0
  33. package/templates/commands/efcore/conflicts.md +39 -201
  34. package/templates/commands/efcore/db-deploy.md +28 -237
  35. package/templates/commands/efcore/db-reset.md +41 -390
  36. package/templates/commands/efcore/db-seed.md +44 -323
  37. package/templates/commands/efcore/db-status.md +31 -210
  38. package/templates/commands/efcore/migration.md +45 -368
  39. package/templates/commands/efcore/rebase-snapshot.md +38 -241
  40. package/templates/commands/efcore/scan.md +35 -204
  41. package/templates/commands/efcore/squash.md +158 -251
  42. package/templates/commands/efcore.md +49 -177
  43. package/templates/commands/gitflow/1-init.md +94 -1318
  44. package/templates/commands/gitflow/10-start.md +86 -990
  45. package/templates/commands/gitflow/11-finish.md +264 -454
  46. package/templates/commands/gitflow/12-cleanup.md +40 -213
  47. package/templates/commands/gitflow/2-status.md +51 -386
  48. package/templates/commands/gitflow/3-commit.md +108 -801
  49. package/templates/commands/gitflow/4-plan.md +42 -13
  50. package/templates/commands/gitflow/5-exec.md +60 -5
  51. package/templates/commands/gitflow/6-abort.md +54 -277
  52. package/templates/commands/gitflow/7-pull-request.md +74 -717
  53. package/templates/commands/gitflow/8-review.md +51 -178
  54. package/templates/commands/gitflow/9-merge.md +74 -404
  55. package/templates/commands/gitflow/_shared.md +196 -0
  56. package/templates/commands/quickstart.md +154 -0
  57. package/templates/commands/ralph-loop/ralph-loop.md +104 -2
  58. package/templates/hooks/hooks.json +13 -0
  59. package/templates/hooks/ralph-mcp-logger.sh +46 -0
  60. package/templates/hooks/ralph-session-end.sh +69 -0
  61. package/templates/ralph/README.md +91 -0
  62. package/templates/ralph/ralph.config.yaml +113 -0
  63. package/templates/scripts/setup-ralph-loop.sh +173 -0
  64. package/templates/skills/_shared.md +117 -0
  65. package/templates/skills/ai-prompt/SKILL.md +87 -654
  66. package/templates/skills/application/SKILL.md +76 -499
  67. package/templates/skills/controller/SKILL.md +38 -165
  68. package/templates/skills/documentation/SKILL.md +2 -1
  69. package/templates/skills/feature-full/SKILL.md +107 -732
  70. package/templates/skills/notification/SKILL.md +85 -474
  71. package/templates/skills/ui-components/SKILL.md +62 -762
  72. package/templates/skills/workflow/SKILL.md +85 -489
  73. package/templates/commands/gitflow/rescue.md +0 -867
  74. package/templates/skills/business-analyse/SKILL.md +0 -191
@@ -0,0 +1,871 @@
1
+ <!DOCTYPE html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>CLI Commands - SmartStack CLI</title>
7
+ <link rel="stylesheet" href="css/styles.css">
8
+ </head>
9
+ <body>
10
+ <div class="app-container">
11
+ <!-- Global Header -->
12
+ <header class="global-header">
13
+ <div class="logo">SS</div>
14
+ <span class="site-title">SmartStack CLI</span>
15
+ <span class="version-badge">v1.11.0</span>
16
+ <div class="header-divider"></div>
17
+ <span class="page-title">CLI Commands</span>
18
+ <nav class="breadcrumb">
19
+ <a href="index.html">
20
+ <span data-lang="fr">Accueil</span>
21
+ <span data-lang="en">Home</span>
22
+ </a>
23
+ <span class="breadcrumb-separator">&#8250;</span>
24
+ <span data-lang="fr">Outils</span>
25
+ <span data-lang="en">Tools</span>
26
+ <span class="breadcrumb-separator">&#8250;</span>
27
+ <span class="breadcrumb-current">CLI Commands</span>
28
+ </nav>
29
+ <!-- Language Select -->
30
+ <select class="lang-select" id="lang-select" onchange="setLanguage(this.value); localStorage.setItem('doc-language', this.value);">
31
+ <option value="fr">FR</option>
32
+ <option value="en">EN</option>
33
+ </select>
34
+ <!-- Search -->
35
+ <div class="header-search">
36
+ <div class="search-input-wrapper">
37
+ <span class="search-icon">&#128269;</span>
38
+ <input type="text" id="search-input" class="search-input" placeholder="Rechercher..." data-placeholder-fr="Rechercher..." data-placeholder-en="Search..." autocomplete="off">
39
+ <span class="search-shortcut">Ctrl+K</span>
40
+ </div>
41
+ <div id="search-results" class="search-results"></div>
42
+ </div>
43
+ </header>
44
+
45
+ <!-- App Body -->
46
+ <div class="app-body">
47
+ <!-- Sidebar -->
48
+ <aside class="sidebar">
49
+ <button class="sidebar-toggle" title="Toggle sidebar">
50
+ <span class="toggle-icon-collapse">&#171;</span>
51
+ <span class="toggle-icon-expand">&#187;</span>
52
+ </button>
53
+
54
+ <nav class="sidebar-nav">
55
+ <div class="nav-section">
56
+ <div class="nav-section-title">
57
+ <span data-lang="fr">Demarrage</span>
58
+ <span data-lang="en">Getting Started</span>
59
+ </div>
60
+ <a href="index.html" class="nav-item">
61
+ <span class="icon">&#127968;</span>
62
+ <span class="nav-text" data-lang="fr">Accueil</span>
63
+ <span class="nav-text" data-lang="en">Home</span>
64
+ </a>
65
+ <a href="installation.html" class="nav-item">
66
+ <span class="icon">&#128230;</span>
67
+ <span class="nav-text">Installation</span>
68
+ </a>
69
+ <a href="init.html" class="nav-item">
70
+ <span class="icon">&#128640;</span>
71
+ <span class="nav-text">Project Init</span>
72
+ </a>
73
+ </div>
74
+
75
+ <div class="nav-section">
76
+ <div class="nav-section-title">Workflows</div>
77
+ <a href="gitflow.html" class="nav-item">
78
+ <span class="icon">&#128256;</span>
79
+ <span class="nav-text">GitFlow</span>
80
+ </a>
81
+ <a href="efcore.html" class="nav-item">
82
+ <span class="icon">&#128452;</span>
83
+ <span class="nav-text">EF Core</span>
84
+ </a>
85
+ <a href="apex.html" class="nav-item">
86
+ <span class="icon">&#127919;</span>
87
+ <span class="nav-text">APEX</span>
88
+ </a>
89
+ <a href="business-analyse.html" class="nav-item">
90
+ <span class="icon">&#128202;</span>
91
+ <span class="nav-text">Business Analyse</span>
92
+ </a>
93
+ <a href="ralph-loop.html" class="nav-item">
94
+ <span class="icon">&#128260;</span>
95
+ <span class="nav-text">Ralph Loop</span>
96
+ </a>
97
+ </div>
98
+
99
+ <div class="nav-section">
100
+ <div class="nav-section-title">
101
+ <span data-lang="fr">Outils</span>
102
+ <span data-lang="en">Tools</span>
103
+ </div>
104
+ <div class="nav-item-with-toc">
105
+ <a href="cli-commands.html" class="active">
106
+ <span class="icon">&#128187;</span>
107
+ <span class="nav-text" data-lang="fr">CLI SmartStack</span>
108
+ <span class="nav-text" data-lang="en">SmartStack CLI</span>
109
+ <button class="toc-toggle">&#9654;</button>
110
+ </a>
111
+ <nav class="sidebar-toc">
112
+ <a href="#overview" class="sidebar-toc-link">Overview</a>
113
+ <a href="#install" class="sidebar-toc-link">install</a>
114
+ <a href="#status" class="sidebar-toc-link">status</a>
115
+ <a href="#init" class="sidebar-toc-link">init</a>
116
+ <a href="#doctor" class="sidebar-toc-link">doctor</a>
117
+ <a href="#check-mcp" class="sidebar-toc-link">check-mcp</a>
118
+ <a href="#ralph" class="sidebar-toc-link">ralph</a>
119
+ <a href="#license" class="sidebar-toc-link">license</a>
120
+ </nav>
121
+ </div>
122
+ <a href="agents.html" class="nav-item">
123
+ <span class="icon">&#129302;</span>
124
+ <span class="nav-text">Agents</span>
125
+ </a>
126
+ <a href="commands.html" class="nav-item">
127
+ <span class="icon">&#9889;</span>
128
+ <span class="nav-text" data-lang="fr">Commandes Claude</span>
129
+ <span class="nav-text" data-lang="en">Claude Commands</span>
130
+ </a>
131
+ <a href="hooks.html" class="nav-item">
132
+ <span class="icon">&#128279;</span>
133
+ <span class="nav-text">Hooks</span>
134
+ </a>
135
+ <a href="test-web.html" class="nav-item">
136
+ <span class="icon">&#127760;</span>
137
+ <span class="nav-text">Test Web</span>
138
+ </a>
139
+ </div>
140
+ </nav>
141
+
142
+ </aside>
143
+
144
+ <!-- Main Content -->
145
+ <main class="main-content">
146
+ <div class="content-full">
147
+ <!-- Overview -->
148
+ <section id="overview">
149
+ <h2>
150
+ <span data-lang="fr">Commandes CLI SmartStack</span>
151
+ <span data-lang="en">SmartStack CLI Commands</span>
152
+ </h2>
153
+ <p data-lang="fr">
154
+ SmartStack CLI fournit des commandes en ligne de commande pour gerer l'installation, la configuration et le diagnostic de votre environnement de developpement.
155
+ </p>
156
+ <p data-lang="en">
157
+ SmartStack CLI provides command-line tools to manage installation, configuration and diagnostics of your development environment.
158
+ </p>
159
+
160
+ <div class="alert alert-info">
161
+ <span class="alert-icon">&#128161;</span>
162
+ <div class="alert-content">
163
+ <h5>Alias</h5>
164
+ <p data-lang="fr">
165
+ Toutes les commandes supportent l'alias court <code>ss</code>. Exemple: <code>ss doctor</code> au lieu de <code>smartstack doctor</code>
166
+ </p>
167
+ <p data-lang="en">
168
+ All commands support the short alias <code>ss</code>. Example: <code>ss doctor</code> instead of <code>smartstack doctor</code>
169
+ </p>
170
+ </div>
171
+ </div>
172
+
173
+ <h4 data-lang="fr">Vue d'ensemble des commandes</h4>
174
+ <h4 data-lang="en">Commands Overview</h4>
175
+
176
+ <table class="reference-table">
177
+ <thead>
178
+ <tr>
179
+ <th data-lang="fr">Commande</th>
180
+ <th data-lang="en">Command</th>
181
+ <th data-lang="fr">Description</th>
182
+ <th data-lang="en">Description</th>
183
+ </tr>
184
+ </thead>
185
+ <tbody>
186
+ <tr>
187
+ <td><code>smartstack install</code></td>
188
+ <td data-lang="fr">Installe les templates SmartStack</td>
189
+ <td data-lang="en">Install SmartStack templates</td>
190
+ </tr>
191
+ <tr>
192
+ <td><code>smartstack uninstall</code></td>
193
+ <td data-lang="fr">Supprime les templates SmartStack</td>
194
+ <td data-lang="en">Remove SmartStack templates</td>
195
+ </tr>
196
+ <tr>
197
+ <td><code>smartstack status</code></td>
198
+ <td data-lang="fr">Affiche le statut d'installation</td>
199
+ <td data-lang="en">Show installation status</td>
200
+ </tr>
201
+ <tr>
202
+ <td><code>smartstack update</code></td>
203
+ <td data-lang="fr">Met a jour les templates</td>
204
+ <td data-lang="en">Update templates</td>
205
+ </tr>
206
+ <tr>
207
+ <td><code>smartstack init</code></td>
208
+ <td data-lang="fr">Cree un nouveau projet SmartStack</td>
209
+ <td data-lang="en">Create a new SmartStack project</td>
210
+ </tr>
211
+ <tr>
212
+ <td><code>smartstack doctor</code></td>
213
+ <td data-lang="fr">Diagnostic complet du systeme</td>
214
+ <td data-lang="en">Full system diagnostics</td>
215
+ </tr>
216
+ <tr>
217
+ <td><code>smartstack check-mcp</code></td>
218
+ <td data-lang="fr">Verifie les serveurs MCP</td>
219
+ <td data-lang="en">Check MCP servers</td>
220
+ </tr>
221
+ <tr>
222
+ <td><code>smartstack ralph</code></td>
223
+ <td data-lang="fr">Gestion de Ralph Weegund</td>
224
+ <td data-lang="en">Ralph Weegund management</td>
225
+ </tr>
226
+ <tr>
227
+ <td><code>smartstack license</code></td>
228
+ <td data-lang="fr">Gestion de la licence</td>
229
+ <td data-lang="en">License management</td>
230
+ </tr>
231
+ <tr>
232
+ <td><code>smartstack docs</code></td>
233
+ <td data-lang="fr">Ouvre la documentation</td>
234
+ <td data-lang="en">Open documentation</td>
235
+ </tr>
236
+ </tbody>
237
+ </table>
238
+ </section>
239
+
240
+ <!-- install -->
241
+ <section id="install">
242
+ <h2>smartstack install</h2>
243
+ <p data-lang="fr">
244
+ Installe les commandes, agents, hooks et skills SmartStack dans Claude Code.
245
+ </p>
246
+ <p data-lang="en">
247
+ Install SmartStack commands, agents, hooks and skills into Claude Code.
248
+ </p>
249
+
250
+ <div class="code-block">
251
+ <button class="copy-btn">Copy</button>
252
+ <pre><code>smartstack install [options]
253
+
254
+ # Exemples
255
+ smartstack install # Installation globale
256
+ smartstack install --local # Installation projet
257
+ smartstack install --force # Ecrase les fichiers existants</code></pre>
258
+ </div>
259
+
260
+ <h4>Options</h4>
261
+ <table class="reference-table">
262
+ <thead>
263
+ <tr>
264
+ <th>Option</th>
265
+ <th>Alias</th>
266
+ <th data-lang="fr">Description</th>
267
+ <th data-lang="en">Description</th>
268
+ </tr>
269
+ </thead>
270
+ <tbody>
271
+ <tr>
272
+ <td><code>--global</code></td>
273
+ <td><code>-g</code></td>
274
+ <td data-lang="fr">Installe dans ~/.claude (defaut)</td>
275
+ <td data-lang="en">Install to ~/.claude (default)</td>
276
+ </tr>
277
+ <tr>
278
+ <td><code>--local</code></td>
279
+ <td><code>-l</code></td>
280
+ <td data-lang="fr">Installe dans ./.claude (projet)</td>
281
+ <td data-lang="en">Install to ./.claude (project)</td>
282
+ </tr>
283
+ <tr>
284
+ <td><code>--force</code></td>
285
+ <td><code>-f</code></td>
286
+ <td data-lang="fr">Ecrase les fichiers existants</td>
287
+ <td data-lang="en">Overwrite existing files</td>
288
+ </tr>
289
+ <tr>
290
+ <td><code>--commands-only</code></td>
291
+ <td></td>
292
+ <td data-lang="fr">Installe uniquement les commandes</td>
293
+ <td data-lang="en">Install commands only</td>
294
+ </tr>
295
+ <tr>
296
+ <td><code>--agents-only</code></td>
297
+ <td></td>
298
+ <td data-lang="fr">Installe uniquement les agents</td>
299
+ <td data-lang="en">Install agents only</td>
300
+ </tr>
301
+ </tbody>
302
+ </table>
303
+ </section>
304
+
305
+ <!-- status -->
306
+ <section id="status">
307
+ <h2>smartstack status</h2>
308
+ <p data-lang="fr">
309
+ Affiche le statut de l'installation SmartStack et les informations du projet courant.
310
+ </p>
311
+ <p data-lang="en">
312
+ Display SmartStack installation status and current project information.
313
+ </p>
314
+
315
+ <div class="code-block">
316
+ <button class="copy-btn">Copy</button>
317
+ <pre><code>smartstack status [options]
318
+
319
+ # Exemples
320
+ smartstack status # Statut global
321
+ smartstack status --local # Statut projet
322
+ smartstack status --verbose # Details complets</code></pre>
323
+ </div>
324
+
325
+ <h4>Options</h4>
326
+ <table class="reference-table">
327
+ <thead>
328
+ <tr>
329
+ <th>Option</th>
330
+ <th>Alias</th>
331
+ <th data-lang="fr">Description</th>
332
+ <th data-lang="en">Description</th>
333
+ </tr>
334
+ </thead>
335
+ <tbody>
336
+ <tr>
337
+ <td><code>--global</code></td>
338
+ <td><code>-g</code></td>
339
+ <td data-lang="fr">Verifie ~/.claude (defaut)</td>
340
+ <td data-lang="en">Check ~/.claude (default)</td>
341
+ </tr>
342
+ <tr>
343
+ <td><code>--local</code></td>
344
+ <td><code>-l</code></td>
345
+ <td data-lang="fr">Verifie ./.claude</td>
346
+ <td data-lang="en">Check ./.claude</td>
347
+ </tr>
348
+ <tr>
349
+ <td><code>--verbose</code></td>
350
+ <td><code>-v</code></td>
351
+ <td data-lang="fr">Affiche la liste des commandes</td>
352
+ <td data-lang="en">Show command list</td>
353
+ </tr>
354
+ </tbody>
355
+ </table>
356
+ </section>
357
+
358
+ <!-- init -->
359
+ <section id="init">
360
+ <h2>smartstack init</h2>
361
+ <p data-lang="fr">
362
+ Cree un nouveau projet SmartStack complet avec backend .NET et frontend React.
363
+ </p>
364
+ <p data-lang="en">
365
+ Create a complete new SmartStack project with .NET backend and React frontend.
366
+ </p>
367
+
368
+ <div class="code-block">
369
+ <button class="copy-btn">Copy</button>
370
+ <pre><code>smartstack init &lt;name&gt; [options]
371
+
372
+ # Exemples
373
+ smartstack init MyProject # Interactif
374
+ smartstack init MyProject -y # Valeurs par defaut
375
+ smartstack init MyProject --db postgresql # Avec PostgreSQL
376
+ smartstack init MyProject --dry-run # Simulation</code></pre>
377
+ </div>
378
+
379
+ <h4>Options</h4>
380
+ <table class="reference-table">
381
+ <thead>
382
+ <tr>
383
+ <th>Option</th>
384
+ <th data-lang="fr">Description</th>
385
+ <th data-lang="en">Description</th>
386
+ </tr>
387
+ </thead>
388
+ <tbody>
389
+ <tr>
390
+ <td><code>--db &lt;type&gt;</code></td>
391
+ <td data-lang="fr">Base de donnees: sqlserver, postgresql, sqlite</td>
392
+ <td data-lang="en">Database: sqlserver, postgresql, sqlite</td>
393
+ </tr>
394
+ <tr>
395
+ <td><code>--dry-run</code></td>
396
+ <td data-lang="fr">Simulation sans creation de fichiers</td>
397
+ <td data-lang="en">Simulate without creating files</td>
398
+ </tr>
399
+ <tr>
400
+ <td><code>-y, --yes</code></td>
401
+ <td data-lang="fr">Utilise les valeurs par defaut</td>
402
+ <td data-lang="en">Use default values</td>
403
+ </tr>
404
+ <tr>
405
+ <td><code>--skip-mcp-check</code></td>
406
+ <td data-lang="fr">Ignore la verification des MCP</td>
407
+ <td data-lang="en">Skip MCP servers check</td>
408
+ </tr>
409
+ </tbody>
410
+ </table>
411
+
412
+ <div class="alert alert-success">
413
+ <span class="alert-icon">&#128161;</span>
414
+ <div class="alert-content">
415
+ <h5 data-lang="fr">Inclut Ralph</h5>
416
+ <h5 data-lang="en">Includes Ralph</h5>
417
+ <p data-lang="fr">
418
+ <code>smartstack init</code> configure automatiquement Ralph Weegund dans le projet avec le dossier <code>.ralph/</code> et sa configuration.
419
+ </p>
420
+ <p data-lang="en">
421
+ <code>smartstack init</code> automatically configures Ralph Weegund in the project with the <code>.ralph/</code> folder and configuration.
422
+ </p>
423
+ </div>
424
+ </div>
425
+ </section>
426
+
427
+ <!-- doctor -->
428
+ <section id="doctor">
429
+ <h2>smartstack doctor</h2>
430
+ <p data-lang="fr">
431
+ Execute un diagnostic complet du systeme SmartStack: licence, environnement, MCP servers, installation, et configuration Ralph.
432
+ </p>
433
+ <p data-lang="en">
434
+ Run a complete SmartStack system diagnostic: license, environment, MCP servers, installation, and Ralph configuration.
435
+ </p>
436
+
437
+ <div class="code-block">
438
+ <button class="copy-btn">Copy</button>
439
+ <pre><code>smartstack doctor [options]
440
+
441
+ # Exemples
442
+ smartstack doctor # Diagnostic complet
443
+ smartstack doctor --verbose # Avec details
444
+ smartstack doctor --json # Output JSON (CI/CD)</code></pre>
445
+ </div>
446
+
447
+ <h4>Options</h4>
448
+ <table class="reference-table">
449
+ <thead>
450
+ <tr>
451
+ <th>Option</th>
452
+ <th data-lang="fr">Description</th>
453
+ <th data-lang="en">Description</th>
454
+ </tr>
455
+ </thead>
456
+ <tbody>
457
+ <tr>
458
+ <td><code>--json</code></td>
459
+ <td data-lang="fr">Output en JSON (pour CI/CD)</td>
460
+ <td data-lang="en">JSON output (for CI/CD)</td>
461
+ </tr>
462
+ <tr>
463
+ <td><code>-v, --verbose</code></td>
464
+ <td data-lang="fr">Affiche les details etendus</td>
465
+ <td data-lang="en">Show extended details</td>
466
+ </tr>
467
+ </tbody>
468
+ </table>
469
+
470
+ <h4 data-lang="fr">Verifications effectuees</h4>
471
+ <h4 data-lang="en">Checks performed</h4>
472
+
473
+ <div class="feature-grid">
474
+ <div class="feature-item">
475
+ <span class="feature-icon">&#128273;</span>
476
+ <span class="feature-text" data-lang="fr">Licence valide</span>
477
+ <span class="feature-text" data-lang="en">Valid license</span>
478
+ </div>
479
+ <div class="feature-item">
480
+ <span class="feature-icon">&#128215;</span>
481
+ <span class="feature-text">Node.js &gt;= 18</span>
482
+ </div>
483
+ <div class="feature-item">
484
+ <span class="feature-icon">&#128736;</span>
485
+ <span class="feature-text">.NET SDK</span>
486
+ </div>
487
+ <div class="feature-item">
488
+ <span class="feature-icon">&#128268;</span>
489
+ <span class="feature-text">Git</span>
490
+ </div>
491
+ <div class="feature-item">
492
+ <span class="feature-icon">&#129302;</span>
493
+ <span class="feature-text">Claude Code CLI</span>
494
+ </div>
495
+ <div class="feature-item">
496
+ <span class="feature-icon">&#128268;</span>
497
+ <span class="feature-text">MCP: context7</span>
498
+ </div>
499
+ <div class="feature-item">
500
+ <span class="feature-icon">&#128268;</span>
501
+ <span class="feature-text">MCP: smartstack</span>
502
+ </div>
503
+ <div class="feature-item">
504
+ <span class="feature-icon">&#128230;</span>
505
+ <span class="feature-text" data-lang="fr">Templates installes</span>
506
+ <span class="feature-text" data-lang="en">Templates installed</span>
507
+ </div>
508
+ <div class="feature-item">
509
+ <span class="feature-icon">&#128260;</span>
510
+ <span class="feature-text" data-lang="fr">Config Ralph</span>
511
+ <span class="feature-text" data-lang="en">Ralph config</span>
512
+ </div>
513
+ </div>
514
+
515
+ <h4 data-lang="fr">Exemple de sortie</h4>
516
+ <h4 data-lang="en">Example output</h4>
517
+
518
+ <div class="code-block">
519
+ <button class="copy-btn">Copy</button>
520
+ <pre><code>╔══════════════════════════════════════════════════════════╗
521
+ ║ SmartStack Doctor - System Diagnostics ║
522
+ ║ Version 1.11.0 ║
523
+ ╚══════════════════════════════════════════════════════════╝
524
+
525
+ Component Status Details
526
+ ─────────────────────────────────────────────────────────────
527
+ License ✓ OK Valid (professional)
528
+ Node.js ✓ OK v20.10.0
529
+ npm ✓ OK 10.2.0
530
+ Git ✓ OK 2.43.0
531
+ .NET SDK ✓ OK 10.0.100
532
+ Claude Code ✓ OK 1.0.0
533
+ MCP: context7 ✓ OK Available
534
+ MCP: smartstack ✓ OK Available
535
+ SmartStack Commands ✓ OK 42 commands
536
+ SmartStack Agents ✓ OK 12 agents
537
+ Ralph Config ✓ OK Configured
538
+
539
+ Summary:
540
+ ✓ 11 OK
541
+
542
+ SmartStack is healthy!</code></pre>
543
+ </div>
544
+ </section>
545
+
546
+ <!-- check-mcp -->
547
+ <section id="check-mcp">
548
+ <h2>smartstack check-mcp</h2>
549
+ <p data-lang="fr">
550
+ Verifie la disponibilite des serveurs MCP requis pour SmartStack et Ralph. Peut installer automatiquement les serveurs manquants.
551
+ </p>
552
+ <p data-lang="en">
553
+ Check availability of MCP servers required for SmartStack and Ralph. Can automatically install missing servers.
554
+ </p>
555
+
556
+ <div class="code-block">
557
+ <button class="copy-btn">Copy</button>
558
+ <pre><code>smartstack check-mcp [options]
559
+
560
+ # Exemples
561
+ smartstack check-mcp # Verification
562
+ smartstack check-mcp --install # Auto-installation
563
+ smartstack check-mcp --json # Output JSON</code></pre>
564
+ </div>
565
+
566
+ <h4>Options</h4>
567
+ <table class="reference-table">
568
+ <thead>
569
+ <tr>
570
+ <th>Option</th>
571
+ <th data-lang="fr">Description</th>
572
+ <th data-lang="en">Description</th>
573
+ </tr>
574
+ </thead>
575
+ <tbody>
576
+ <tr>
577
+ <td><code>--install</code></td>
578
+ <td data-lang="fr">Installe automatiquement les MCP manquants</td>
579
+ <td data-lang="en">Automatically install missing MCPs</td>
580
+ </tr>
581
+ <tr>
582
+ <td><code>--json</code></td>
583
+ <td data-lang="fr">Output en JSON</td>
584
+ <td data-lang="en">JSON output</td>
585
+ </tr>
586
+ </tbody>
587
+ </table>
588
+
589
+ <h4 data-lang="fr">Serveurs MCP requis</h4>
590
+ <h4 data-lang="en">Required MCP servers</h4>
591
+
592
+ <table class="reference-table">
593
+ <thead>
594
+ <tr>
595
+ <th>Server</th>
596
+ <th data-lang="fr">Description</th>
597
+ <th data-lang="en">Description</th>
598
+ <th data-lang="fr">Installation</th>
599
+ <th data-lang="en">Installation</th>
600
+ </tr>
601
+ </thead>
602
+ <tbody>
603
+ <tr>
604
+ <td><strong>context7</strong></td>
605
+ <td data-lang="fr">Documentation et exemples de code des librairies</td>
606
+ <td data-lang="en">Library documentation and code examples</td>
607
+ <td><code>claude mcp add context7</code></td>
608
+ </tr>
609
+ <tr>
610
+ <td><strong>smartstack</strong></td>
611
+ <td data-lang="fr">Validation conventions, scaffolding, API docs</td>
612
+ <td data-lang="en">Convention validation, scaffolding, API docs</td>
613
+ <td><code>claude mcp add smartstack</code></td>
614
+ </tr>
615
+ </tbody>
616
+ </table>
617
+
618
+ <div class="alert alert-warning">
619
+ <span class="alert-icon">&#9888;</span>
620
+ <div class="alert-content">
621
+ <h5 data-lang="fr">Important pour Ralph</h5>
622
+ <h5 data-lang="en">Important for Ralph</h5>
623
+ <p data-lang="fr">
624
+ Ralph Weegund <strong>refuse de demarrer</strong> si les serveurs MCP ne sont pas disponibles. Utilisez cette commande pour verifier avant de lancer Ralph.
625
+ </p>
626
+ <p data-lang="en">
627
+ Ralph Weegund <strong>refuses to start</strong> if MCP servers are not available. Use this command to verify before starting Ralph.
628
+ </p>
629
+ </div>
630
+ </div>
631
+ </section>
632
+
633
+ <!-- ralph -->
634
+ <section id="ralph">
635
+ <h2>smartstack ralph</h2>
636
+ <p data-lang="fr">
637
+ Gestion de Ralph Weegund - le systeme d'automatisation iteratif avec validation MCP obligatoire, logging et rapports.
638
+ </p>
639
+ <p data-lang="en">
640
+ Ralph Weegund management - the iterative automation system with mandatory MCP validation, logging and reports.
641
+ </p>
642
+
643
+ <div class="code-block">
644
+ <button class="copy-btn">Copy</button>
645
+ <pre><code>smartstack ralph &lt;command&gt; [options]
646
+
647
+ # Sous-commandes disponibles
648
+ smartstack ralph start # Verification pre-vol et preparation
649
+ smartstack ralph status # Affiche le statut de Ralph
650
+ smartstack ralph logs # Affiche les logs recents
651
+ smartstack ralph report # Liste ou affiche les rapports
652
+ smartstack ralph init # Initialise Ralph dans le projet</code></pre>
653
+ </div>
654
+
655
+ <h4 data-lang="fr">Sous-commandes</h4>
656
+ <h4 data-lang="en">Subcommands</h4>
657
+
658
+ <div class="command-card">
659
+ <div class="command-header">
660
+ <code class="command-name">ralph start</code>
661
+ <span class="badge badge-green" data-lang="fr">Principal</span>
662
+ <span class="badge badge-green" data-lang="en">Main</span>
663
+ </div>
664
+ <div class="command-body">
665
+ <p data-lang="fr">
666
+ Execute la verification pre-vol de Ralph: Claude Code, serveurs MCP, configuration, repertoires.
667
+ </p>
668
+ <p data-lang="en">
669
+ Run Ralph pre-flight check: Claude Code, MCP servers, configuration, directories.
670
+ </p>
671
+
672
+ <div class="code-block">
673
+ <button class="copy-btn">Copy</button>
674
+ <pre><code>smartstack ralph start [options]
675
+
676
+ Options:
677
+ --skip-mcp Ignore la verification MCP (non recommande)</code></pre>
678
+ </div>
679
+ </div>
680
+ </div>
681
+
682
+ <div class="command-card">
683
+ <div class="command-header">
684
+ <code class="command-name">ralph status</code>
685
+ <span class="badge badge-blue">Info</span>
686
+ </div>
687
+ <div class="command-body">
688
+ <p data-lang="fr">
689
+ Affiche le statut actuel de Ralph: configuration, MCP, logs, rapports recents.
690
+ </p>
691
+ <p data-lang="en">
692
+ Display current Ralph status: configuration, MCP, logs, recent reports.
693
+ </p>
694
+
695
+ <div class="code-block">
696
+ <button class="copy-btn">Copy</button>
697
+ <pre><code>smartstack ralph status</code></pre>
698
+ </div>
699
+ </div>
700
+ </div>
701
+
702
+ <div class="command-card">
703
+ <div class="command-header">
704
+ <code class="command-name">ralph logs</code>
705
+ <span class="badge badge-blue">Info</span>
706
+ </div>
707
+ <div class="command-body">
708
+ <p data-lang="fr">
709
+ Affiche les logs recents de Ralph (appels MCP, iterations, erreurs).
710
+ </p>
711
+ <p data-lang="en">
712
+ Display recent Ralph logs (MCP calls, iterations, errors).
713
+ </p>
714
+
715
+ <div class="code-block">
716
+ <button class="copy-btn">Copy</button>
717
+ <pre><code>smartstack ralph logs [options]
718
+
719
+ Options:
720
+ -n, --lines &lt;n&gt; Nombre de lignes (defaut: 50)</code></pre>
721
+ </div>
722
+ </div>
723
+ </div>
724
+
725
+ <div class="command-card">
726
+ <div class="command-header">
727
+ <code class="command-name">ralph report</code>
728
+ <span class="badge badge-blue">Info</span>
729
+ </div>
730
+ <div class="command-body">
731
+ <p data-lang="fr">
732
+ Liste ou affiche les rapports de features generes par Ralph.
733
+ </p>
734
+ <p data-lang="en">
735
+ List or display feature reports generated by Ralph.
736
+ </p>
737
+
738
+ <div class="code-block">
739
+ <button class="copy-btn">Copy</button>
740
+ <pre><code>smartstack ralph report [options] [name]
741
+
742
+ Options:
743
+ --list Liste tous les rapports
744
+ --last Affiche le dernier rapport
745
+
746
+ Exemples:
747
+ smartstack ralph report --list # Liste tous
748
+ smartstack ralph report --last # Dernier rapport
749
+ smartstack ralph report feature-xyz # Rapport specifique</code></pre>
750
+ </div>
751
+ </div>
752
+ </div>
753
+
754
+ <div class="command-card">
755
+ <div class="command-header">
756
+ <code class="command-name">ralph init</code>
757
+ <span class="badge badge-orange">Setup</span>
758
+ </div>
759
+ <div class="command-body">
760
+ <p data-lang="fr">
761
+ Initialise Ralph dans le projet courant: cree le dossier <code>.ralph/</code> avec la configuration.
762
+ </p>
763
+ <p data-lang="en">
764
+ Initialize Ralph in the current project: creates the <code>.ralph/</code> folder with configuration.
765
+ </p>
766
+
767
+ <div class="code-block">
768
+ <button class="copy-btn">Copy</button>
769
+ <pre><code>smartstack ralph init [options]
770
+
771
+ Options:
772
+ -f, --force Ecrase la configuration existante</code></pre>
773
+ </div>
774
+ </div>
775
+ </div>
776
+
777
+ <h4 data-lang="fr">Structure .ralph/</h4>
778
+ <h4 data-lang="en">.ralph/ Structure</h4>
779
+
780
+ <div class="code-block">
781
+ <button class="copy-btn">Copy</button>
782
+ <pre><code>.ralph/
783
+ ├── ralph.config.yaml # Configuration Ralph
784
+ ├── logs/ # Logs des sessions
785
+ │ └── ralph-YYYY-MM-DD.log
786
+ ├── reports/ # Rapports de features
787
+ │ └── feature-xxx-timestamp.md
788
+ └── README.md # Documentation</code></pre>
789
+ </div>
790
+
791
+ <div class="alert alert-info">
792
+ <span class="alert-icon">&#128260;</span>
793
+ <div class="alert-content">
794
+ <h5 data-lang="fr">Utilisation dans Claude Code</h5>
795
+ <h5 data-lang="en">Usage in Claude Code</h5>
796
+ <p data-lang="fr">
797
+ Apres <code>smartstack ralph start</code>, utilisez <code>/ralph-loop "Votre tache"</code> dans Claude Code pour demarrer l'automatisation.
798
+ </p>
799
+ <p data-lang="en">
800
+ After <code>smartstack ralph start</code>, use <code>/ralph-loop "Your task"</code> in Claude Code to start automation.
801
+ </p>
802
+ </div>
803
+ </div>
804
+ </section>
805
+
806
+ <!-- license -->
807
+ <section id="license">
808
+ <h2>smartstack license</h2>
809
+ <p data-lang="fr">
810
+ Gestion de la licence SmartStack CLI.
811
+ </p>
812
+ <p data-lang="en">
813
+ SmartStack CLI license management.
814
+ </p>
815
+
816
+ <div class="code-block">
817
+ <button class="copy-btn">Copy</button>
818
+ <pre><code>smartstack license &lt;command&gt; [options]
819
+
820
+ # Commandes
821
+ smartstack license activate &lt;key&gt; # Active une licence
822
+ smartstack license status # Affiche le statut
823
+ smartstack license deactivate # Supprime la licence
824
+ smartstack license verify &lt;key&gt; # Verifie sans activer</code></pre>
825
+ </div>
826
+
827
+ <h4 data-lang="fr">Commandes</h4>
828
+ <h4 data-lang="en">Commands</h4>
829
+
830
+ <table class="reference-table">
831
+ <thead>
832
+ <tr>
833
+ <th data-lang="fr">Commande</th>
834
+ <th data-lang="en">Command</th>
835
+ <th data-lang="fr">Description</th>
836
+ <th data-lang="en">Description</th>
837
+ </tr>
838
+ </thead>
839
+ <tbody>
840
+ <tr>
841
+ <td><code>activate &lt;key&gt;</code></td>
842
+ <td data-lang="fr">Active une cle de licence</td>
843
+ <td data-lang="en">Activate a license key</td>
844
+ </tr>
845
+ <tr>
846
+ <td><code>status</code></td>
847
+ <td data-lang="fr">Affiche le statut de la licence</td>
848
+ <td data-lang="en">Show license status</td>
849
+ </tr>
850
+ <tr>
851
+ <td><code>deactivate</code></td>
852
+ <td data-lang="fr">Supprime la licence actuelle</td>
853
+ <td data-lang="en">Remove current license</td>
854
+ </tr>
855
+ <tr>
856
+ <td><code>verify &lt;key&gt;</code></td>
857
+ <td data-lang="fr">Verifie une cle sans l'activer</td>
858
+ <td data-lang="en">Verify a key without activating</td>
859
+ </tr>
860
+ </tbody>
861
+ </table>
862
+ </section>
863
+
864
+ </div>
865
+ </main>
866
+ </div>
867
+ </div>
868
+
869
+ <script src="js/app.js"></script>
870
+ </body>
871
+ </html>