@atlashub/smartstack-cli 1.4.0 → 1.5.0
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/.documentation/agents.html +8 -4
- package/.documentation/apex.html +8 -4
- package/.documentation/business-analyse.html +833 -406
- package/.documentation/commands.html +8 -4
- package/.documentation/css/styles.css +153 -15
- package/.documentation/efcore.html +8 -4
- package/.documentation/gitflow.html +795 -230
- package/.documentation/hooks.html +8 -4
- package/.documentation/index.html +13 -9
- package/.documentation/installation.html +23 -19
- package/.documentation/ralph-loop.html +530 -0
- package/.documentation/test-web.html +8 -4
- package/README.md +52 -10
- package/dist/index.js +813 -283
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/agents/efcore/conflicts.md +44 -17
- package/templates/agents/efcore/db-status.md +27 -6
- package/templates/agents/efcore/scan.md +43 -13
- package/templates/commands/ai-prompt.md +315 -315
- package/templates/commands/application/create.md +362 -362
- package/templates/commands/controller/create.md +216 -216
- package/templates/commands/controller.md +59 -0
- package/templates/commands/create/agent.md +138 -0
- package/templates/commands/create/command.md +166 -0
- package/templates/commands/create/hook.md +234 -0
- package/templates/commands/create/plugin.md +329 -0
- package/templates/commands/create/project.md +507 -0
- package/templates/commands/create/skill.md +199 -0
- package/templates/commands/create.md +220 -0
- package/templates/commands/documentation/module.md +202 -202
- package/templates/commands/efcore/_env-check.md +153 -153
- package/templates/commands/efcore/conflicts.md +109 -192
- package/templates/commands/efcore/db-status.md +101 -89
- package/templates/commands/efcore/migration.md +23 -11
- package/templates/commands/efcore/scan.md +115 -119
- package/templates/commands/efcore.md +54 -6
- package/templates/commands/feature-full.md +267 -267
- package/templates/commands/gitflow/11-finish.md +145 -11
- package/templates/commands/gitflow/13-sync.md +216 -216
- package/templates/commands/gitflow/14-rebase.md +251 -251
- package/templates/commands/gitflow/2-status.md +120 -10
- package/templates/commands/gitflow/3-commit.md +150 -0
- package/templates/commands/gitflow/7-pull-request.md +134 -5
- package/templates/commands/gitflow/9-merge.md +142 -1
- package/templates/commands/implement.md +663 -663
- package/templates/commands/init.md +562 -0
- package/templates/commands/mcp-integration.md +330 -0
- package/templates/commands/notification.md +129 -129
- package/templates/commands/validate.md +233 -0
- package/templates/commands/workflow.md +193 -193
- package/templates/skills/ai-prompt/SKILL.md +778 -778
- package/templates/skills/application/SKILL.md +563 -563
- package/templates/skills/application/templates-backend.md +450 -450
- package/templates/skills/application/templates-frontend.md +531 -531
- package/templates/skills/application/templates-i18n.md +520 -520
- package/templates/skills/application/templates-seed.md +647 -647
- package/templates/skills/controller/SKILL.md +240 -240
- package/templates/skills/controller/postman-templates.md +614 -614
- package/templates/skills/controller/templates.md +1468 -1468
- package/templates/skills/documentation/SKILL.md +133 -133
- package/templates/skills/documentation/templates.md +476 -476
- package/templates/skills/feature-full/SKILL.md +838 -838
- package/templates/skills/notification/SKILL.md +555 -555
- package/templates/skills/ui-components/SKILL.md +870 -870
- package/templates/skills/workflow/SKILL.md +582 -582
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>Hooks -
|
|
6
|
+
<title>Hooks - SmartStack CLI</title>
|
|
7
7
|
<link rel="stylesheet" href="css/styles.css">
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
<div class="app-container">
|
|
11
11
|
<!-- Global Header (single unified element) -->
|
|
12
12
|
<header class="global-header">
|
|
13
|
-
<div class="logo">
|
|
14
|
-
<span class="site-title">
|
|
15
|
-
<span class="version-badge">v1.
|
|
13
|
+
<div class="logo">SS</div>
|
|
14
|
+
<span class="site-title">SmartStack CLI</span>
|
|
15
|
+
<span class="version-badge">v1.4.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">Hooks</span>
|
|
18
18
|
<nav class="breadcrumb">
|
|
@@ -86,6 +86,10 @@
|
|
|
86
86
|
<span class="icon">📊</span>
|
|
87
87
|
<span class="nav-text">Business Analyse</span>
|
|
88
88
|
</a>
|
|
89
|
+
<a href="ralph-loop.html" class="nav-item">
|
|
90
|
+
<span class="icon">🔄</span>
|
|
91
|
+
<span class="nav-text">Ralph Loop</span>
|
|
92
|
+
</a>
|
|
89
93
|
</div>
|
|
90
94
|
|
|
91
95
|
<div class="nav-section">
|
|
@@ -3,18 +3,18 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>
|
|
6
|
+
<title>SmartStack CLI - Documentation</title>
|
|
7
7
|
<link rel="stylesheet" href="css/styles.css">
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
<div class="app-container">
|
|
11
11
|
<!-- Global Header (single unified element) -->
|
|
12
12
|
<header class="global-header">
|
|
13
|
-
<div class="logo">
|
|
14
|
-
<span class="site-title">
|
|
15
|
-
<span class="version-badge">v1.
|
|
13
|
+
<div class="logo">SS</div>
|
|
14
|
+
<span class="site-title">SmartStack CLI</span>
|
|
15
|
+
<span class="version-badge">v1.4.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
|
-
<span class="page-title">@atlashub/
|
|
17
|
+
<span class="page-title">@atlashub/smartstack-cli</span>
|
|
18
18
|
<!-- Language Select -->
|
|
19
19
|
<select class="lang-select" id="lang-select" onchange="setLanguage(this.value); localStorage.setItem('doc-language', this.value);">
|
|
20
20
|
<option value="fr">🇫🇷 FR</option>
|
|
@@ -75,6 +75,10 @@
|
|
|
75
75
|
<span class="icon">📊</span>
|
|
76
76
|
<span class="nav-text">Business Analyse</span>
|
|
77
77
|
</a>
|
|
78
|
+
<a href="ralph-loop.html" class="nav-item">
|
|
79
|
+
<span class="icon">🔄</span>
|
|
80
|
+
<span class="nav-text">Ralph Loop</span>
|
|
81
|
+
</a>
|
|
78
82
|
</div>
|
|
79
83
|
|
|
80
84
|
<div class="nav-section">
|
|
@@ -113,7 +117,7 @@
|
|
|
113
117
|
<div class="alert-content">
|
|
114
118
|
<h5 data-lang="fr">Installation rapide</h5>
|
|
115
119
|
<h5 data-lang="en">Quick Install</h5>
|
|
116
|
-
<p><code>npm install -g @atlashub/
|
|
120
|
+
<p><code>npm install -g @atlashub/smartstack-cli && smartstack install</code></p>
|
|
117
121
|
</div>
|
|
118
122
|
</div>
|
|
119
123
|
|
|
@@ -277,15 +281,15 @@
|
|
|
277
281
|
<div class="step-content">
|
|
278
282
|
<h5 data-lang="fr">Installer le package</h5>
|
|
279
283
|
<h5 data-lang="en">Install the package</h5>
|
|
280
|
-
<p><code>npm install -g @atlashub/
|
|
284
|
+
<p><code>npm install -g @atlashub/smartstack-cli</code></p>
|
|
281
285
|
</div>
|
|
282
286
|
</li>
|
|
283
287
|
<li>
|
|
284
288
|
<div class="step-content">
|
|
285
289
|
<h5 data-lang="fr">Installer les commandes</h5>
|
|
286
290
|
<h5 data-lang="en">Install commands</h5>
|
|
287
|
-
<p data-lang="fr"><code>
|
|
288
|
-
<p data-lang="en"><code>
|
|
291
|
+
<p data-lang="fr"><code>smartstack install</code> (global) ou <code>smartstack install --local</code> (projet)</p>
|
|
292
|
+
<p data-lang="en"><code>smartstack install</code> (global) or <code>smartstack install --local</code> (project)</p>
|
|
289
293
|
</div>
|
|
290
294
|
</li>
|
|
291
295
|
<li>
|
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>Installation -
|
|
6
|
+
<title>Installation - SmartStack CLI</title>
|
|
7
7
|
<link rel="stylesheet" href="css/styles.css">
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
<div class="app-container">
|
|
11
11
|
<!-- Global Header (single unified element) -->
|
|
12
12
|
<header class="global-header">
|
|
13
|
-
<div class="logo">
|
|
14
|
-
<span class="site-title">
|
|
15
|
-
<span class="version-badge">v1.
|
|
13
|
+
<div class="logo">SS</div>
|
|
14
|
+
<span class="site-title">SmartStack CLI</span>
|
|
15
|
+
<span class="version-badge">v1.4.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">Installation</span>
|
|
18
18
|
<nav class="breadcrumb">
|
|
@@ -83,6 +83,10 @@
|
|
|
83
83
|
<span class="icon">📊</span>
|
|
84
84
|
<span class="nav-text">Business Analyse</span>
|
|
85
85
|
</a>
|
|
86
|
+
<a href="ralph-loop.html" class="nav-item">
|
|
87
|
+
<span class="icon">🔄</span>
|
|
88
|
+
<span class="nav-text">Ralph Loop</span>
|
|
89
|
+
</a>
|
|
86
90
|
</div>
|
|
87
91
|
|
|
88
92
|
<div class="nav-section">
|
|
@@ -155,7 +159,7 @@ npm --version # v8.x.x ou superieur</code></pre>
|
|
|
155
159
|
<div class="alert alert-info">
|
|
156
160
|
<span class="alert-icon">💡</span>
|
|
157
161
|
<div class="alert-content">
|
|
158
|
-
<p><code>npm install -g @atlashub/
|
|
162
|
+
<p><code>npm install -g @atlashub/smartstack-cli && smartstack-cli install</code></p>
|
|
159
163
|
</div>
|
|
160
164
|
</div>
|
|
161
165
|
</section>
|
|
@@ -181,7 +185,7 @@ npm --version # v8.x.x ou superieur</code></pre>
|
|
|
181
185
|
<h5 data-lang="en">Install npm package</h5>
|
|
182
186
|
<div class="code-block">
|
|
183
187
|
<button class="copy-btn">Copy</button>
|
|
184
|
-
<pre><code>npm install -g @atlashub/
|
|
188
|
+
<pre><code>npm install -g @atlashub/smartstack-cli</code></pre>
|
|
185
189
|
</div>
|
|
186
190
|
</div>
|
|
187
191
|
</li>
|
|
@@ -191,7 +195,7 @@ npm --version # v8.x.x ou superieur</code></pre>
|
|
|
191
195
|
<h5 data-lang="en">Activate your license</h5>
|
|
192
196
|
<div class="code-block">
|
|
193
197
|
<button class="copy-btn">Copy</button>
|
|
194
|
-
<pre><code>
|
|
198
|
+
<pre><code>smartstack-cli activate YOUR-LICENSE-KEY</code></pre>
|
|
195
199
|
</div>
|
|
196
200
|
</div>
|
|
197
201
|
</li>
|
|
@@ -201,7 +205,7 @@ npm --version # v8.x.x ou superieur</code></pre>
|
|
|
201
205
|
<h5 data-lang="en">Install commands</h5>
|
|
202
206
|
<div class="code-block">
|
|
203
207
|
<button class="copy-btn">Copy</button>
|
|
204
|
-
<pre><code>
|
|
208
|
+
<pre><code>smartstack-cli install</code></pre>
|
|
205
209
|
</div>
|
|
206
210
|
</div>
|
|
207
211
|
</li>
|
|
@@ -211,7 +215,7 @@ npm --version # v8.x.x ou superieur</code></pre>
|
|
|
211
215
|
<h5 data-lang="en">Verify installation</h5>
|
|
212
216
|
<div class="code-block">
|
|
213
217
|
<button class="copy-btn">Copy</button>
|
|
214
|
-
<pre><code>
|
|
218
|
+
<pre><code>smartstack-cli status</code></pre>
|
|
215
219
|
</div>
|
|
216
220
|
</div>
|
|
217
221
|
</li>
|
|
@@ -235,10 +239,10 @@ npm --version # v8.x.x ou superieur</code></pre>
|
|
|
235
239
|
<div class="code-block">
|
|
236
240
|
<button class="copy-btn">Copy</button>
|
|
237
241
|
<pre><code># Dans votre projet
|
|
238
|
-
npm install -D @atlashub/
|
|
242
|
+
npm install -D @atlashub/smartstack-cli
|
|
239
243
|
|
|
240
244
|
# Installer localement
|
|
241
|
-
npx
|
|
245
|
+
npx smartstack-cli install --local</code></pre>
|
|
242
246
|
</div>
|
|
243
247
|
|
|
244
248
|
<div class="alert alert-warning">
|
|
@@ -377,18 +381,18 @@ npx claude-tools install --local</code></pre>
|
|
|
377
381
|
<div class="code-block">
|
|
378
382
|
<button class="copy-btn">Copy</button>
|
|
379
383
|
<pre><code># Desinstaller tous les composants
|
|
380
|
-
|
|
384
|
+
smartstack-cli uninstall
|
|
381
385
|
|
|
382
386
|
# Desinstaller des composants specifiques
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
387
|
+
smartstack-cli uninstall --commands-only
|
|
388
|
+
smartstack-cli uninstall --agents-only
|
|
389
|
+
smartstack-cli uninstall --hooks-only
|
|
386
390
|
|
|
387
391
|
# Garder le fichier de configuration
|
|
388
|
-
|
|
392
|
+
smartstack-cli uninstall --keep-config
|
|
389
393
|
|
|
390
394
|
# Sans confirmation
|
|
391
|
-
|
|
395
|
+
smartstack-cli uninstall --yes</code></pre>
|
|
392
396
|
</div>
|
|
393
397
|
</section>
|
|
394
398
|
|
|
@@ -402,10 +406,10 @@ claude-tools uninstall --yes</code></pre>
|
|
|
402
406
|
<div class="code-block">
|
|
403
407
|
<button class="copy-btn">Copy</button>
|
|
404
408
|
<pre><code># Mettre a jour le package npm
|
|
405
|
-
npm update -g @atlashub/
|
|
409
|
+
npm update -g @atlashub/smartstack-cli
|
|
406
410
|
|
|
407
411
|
# Mettre a jour les commandes installees
|
|
408
|
-
|
|
412
|
+
smartstack-cli update</code></pre>
|
|
409
413
|
</div>
|
|
410
414
|
</section>
|
|
411
415
|
|