@atlashub/smartstack-cli 2.9.0 → 3.1.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 +1 -371
- package/.documentation/business-analyse.html +81 -17
- package/.documentation/cli-commands.html +1 -1
- package/.documentation/commands.html +1 -1
- package/.documentation/efcore.html +1 -1
- package/.documentation/gitflow.html +1 -1
- package/.documentation/hooks.html +27 -66
- package/.documentation/index.html +166 -166
- package/.documentation/init.html +6 -7
- package/.documentation/installation.html +1 -1
- package/.documentation/ralph-loop.html +1 -9
- package/.documentation/test-web.html +15 -39
- package/dist/index.js +23 -16
- package/dist/index.js.map +1 -1
- package/dist/mcp-entry.mjs +1302 -223
- package/dist/mcp-entry.mjs.map +1 -1
- package/package.json +1 -1
- package/templates/agents/efcore/db-deploy.md +1 -1
- package/templates/agents/efcore/migration.md +26 -10
- package/templates/agents/efcore/rebase-snapshot.md +24 -7
- package/templates/agents/efcore/squash.md +73 -57
- package/templates/agents/gitflow/commit.md +138 -18
- package/templates/agents/gitflow/exec.md +1 -1
- package/templates/agents/gitflow/finish.md +79 -62
- package/templates/agents/gitflow/init-clone.md +186 -0
- package/templates/agents/gitflow/init-detect.md +137 -0
- package/templates/agents/gitflow/init-validate.md +210 -0
- package/templates/agents/gitflow/init.md +231 -74
- package/templates/agents/gitflow/merge.md +115 -33
- package/templates/agents/gitflow/pr.md +151 -46
- package/templates/agents/gitflow/start.md +76 -33
- package/templates/agents/gitflow/status.md +41 -71
- package/templates/hooks/appsettings-guard.sh +76 -0
- package/templates/hooks/ef-migration-check.md +1 -1
- package/templates/hooks/hooks.json +9 -0
- package/templates/project/appsettings.json.template +8 -2
- package/templates/project/test-frontend/msw/handlers.ts +58 -0
- package/templates/project/test-frontend/msw/server.ts +25 -0
- package/templates/project/test-frontend/setup.ts +16 -0
- package/templates/project/test-frontend/test-utils.tsx +59 -0
- package/templates/project/test-frontend/vitest.config.ts +31 -0
- package/templates/skills/_resources/config-safety.md +61 -0
- package/templates/skills/_resources/formatting-guide.md +2 -2
- package/templates/skills/application/SKILL.md +12 -3
- package/templates/skills/application/steps/step-04-backend.md +21 -0
- package/templates/skills/application/steps/step-07-tests.md +259 -120
- package/templates/skills/business-analyse/SKILL.md +57 -28
- package/templates/skills/business-analyse/_shared.md +70 -39
- package/templates/skills/business-analyse/html/ba-interactive.html +2596 -0
- package/templates/skills/business-analyse/questionnaire/00-application.md +123 -131
- package/templates/skills/business-analyse/questionnaire/01-context.md +173 -24
- package/templates/skills/business-analyse/questionnaire/02-stakeholders.md +170 -50
- package/templates/skills/business-analyse/questionnaire/03-scope.md +154 -48
- package/templates/skills/business-analyse/questionnaire/10-documentation.md +1 -1
- package/templates/skills/business-analyse/questionnaire/14-risk-assumptions.md +135 -0
- package/templates/skills/business-analyse/questionnaire/15-success-metrics.md +136 -0
- package/templates/skills/business-analyse/questionnaire.md +55 -46
- package/templates/skills/business-analyse/steps/step-00-init.md +24 -2
- package/templates/skills/business-analyse/steps/step-01-cadrage.md +31 -20
- package/templates/skills/business-analyse/steps/step-03-specify.md +58 -0
- package/templates/skills/business-analyse/steps/step-05-handoff.md +301 -1
- package/templates/skills/business-analyse/steps/step-06-extract.md +518 -0
- package/templates/skills/check-version/SKILL.md +1 -1
- package/templates/skills/efcore/steps/db/step-deploy.md +22 -3
- package/templates/skills/efcore/steps/db/step-reset.md +27 -4
- package/templates/skills/efcore/steps/db/step-seed.md +46 -2
- package/templates/skills/efcore/steps/db/step-status.md +14 -0
- package/templates/skills/efcore/steps/migration/step-01-check.md +31 -5
- package/templates/skills/efcore/steps/migration/step-02-create.md +20 -4
- package/templates/skills/efcore/steps/rebase-snapshot/step-03-create.md +60 -0
- package/templates/skills/efcore/steps/shared/step-00-init.md +47 -8
- package/templates/skills/efcore/steps/squash/step-03-create.md +27 -5
- package/templates/skills/gitflow/SKILL.md +91 -29
- package/templates/skills/gitflow/_shared.md +144 -2
- package/templates/skills/gitflow/phases/status.md +11 -1
- package/templates/skills/gitflow/steps/step-commit.md +1 -1
- package/templates/skills/gitflow/steps/step-init.md +202 -39
- package/templates/skills/gitflow/steps/step-pr.md +17 -5
- package/templates/skills/gitflow/templates/config.json +10 -1
- package/templates/skills/ralph-loop/SKILL.md +22 -15
- package/templates/skills/ralph-loop/steps/step-01-task.md +89 -4
- package/templates/skills/ralph-loop/steps/step-02-execute.md +408 -23
- package/templates/skills/ralph-loop/steps/step-03-commit.md +84 -2
- package/templates/skills/ralph-loop/steps/step-04-check.md +235 -6
- package/templates/skills/ralph-loop/steps/step-05-report.md +115 -0
- package/templates/skills/validate-feature/SKILL.md +83 -0
- package/templates/skills/validate-feature/steps/step-01-compile.md +38 -0
- package/templates/skills/validate-feature/steps/step-02-unit-tests.md +45 -0
- package/templates/skills/validate-feature/steps/step-03-integration-tests.md +53 -0
- package/templates/skills/validate-feature/steps/step-04-api-smoke.md +157 -0
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v3.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">GitFlow Workflow</span>
|
|
18
18
|
<nav class="breadcrumb">
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v3.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">Hooks</span>
|
|
18
18
|
<nav class="breadcrumb">
|
|
@@ -208,37 +208,25 @@
|
|
|
208
208
|
<section id="configuration">
|
|
209
209
|
<h2>Configuration</h2>
|
|
210
210
|
|
|
211
|
-
<p data-lang="fr">
|
|
212
|
-
|
|
211
|
+
<p data-lang="fr">
|
|
212
|
+
Les hooks sont automatiquement installes et configures par <code>smartstack install</code>. Aucune configuration manuelle n'est necessaire.
|
|
213
|
+
</p>
|
|
214
|
+
<p data-lang="en">
|
|
215
|
+
Hooks are automatically installed and configured by <code>smartstack install</code>. No manual configuration is needed.
|
|
216
|
+
</p>
|
|
213
217
|
|
|
214
|
-
<div class="
|
|
215
|
-
<
|
|
216
|
-
<
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
]
|
|
227
|
-
}
|
|
228
|
-
],
|
|
229
|
-
"PostToolUse": [
|
|
230
|
-
{
|
|
231
|
-
"matcher": "Write",
|
|
232
|
-
"hooks": [
|
|
233
|
-
{
|
|
234
|
-
"type": "command",
|
|
235
|
-
"command": "echo 'File written: $TOOL_OUTPUT'"
|
|
236
|
-
}
|
|
237
|
-
]
|
|
238
|
-
}
|
|
239
|
-
]
|
|
240
|
-
}
|
|
241
|
-
}</code></pre>
|
|
218
|
+
<div class="alert alert-success">
|
|
219
|
+
<span class="alert-icon">💡</span>
|
|
220
|
+
<div class="alert-content">
|
|
221
|
+
<h5 data-lang="fr">Fichier de configuration</h5>
|
|
222
|
+
<h5 data-lang="en">Configuration file</h5>
|
|
223
|
+
<p data-lang="fr">
|
|
224
|
+
Les hooks sont stockes dans <code>~/.claude/hooks/hooks.json</code>. Ce fichier est gere automatiquement par la CLI.
|
|
225
|
+
</p>
|
|
226
|
+
<p data-lang="en">
|
|
227
|
+
Hooks are stored in <code>~/.claude/hooks/hooks.json</code>. This file is automatically managed by the CLI.
|
|
228
|
+
</p>
|
|
229
|
+
</div>
|
|
242
230
|
</div>
|
|
243
231
|
</section>
|
|
244
232
|
|
|
@@ -366,43 +354,16 @@ EF_MIGRATION_FORCE=1 git commit -m "message"</code></pre>
|
|
|
366
354
|
<!-- Custom Hooks -->
|
|
367
355
|
<section id="custom">
|
|
368
356
|
<h2>
|
|
369
|
-
<span data-lang="fr">
|
|
370
|
-
<span data-lang="en">
|
|
357
|
+
<span data-lang="fr">Hooks personnalises</span>
|
|
358
|
+
<span data-lang="en">Custom Hooks</span>
|
|
371
359
|
</h2>
|
|
372
360
|
|
|
373
|
-
<
|
|
374
|
-
<
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
"matcher": "Bash",
|
|
380
|
-
"hooks": [
|
|
381
|
-
{
|
|
382
|
-
"type": "command",
|
|
383
|
-
"command": "node my-validation-script.js",
|
|
384
|
-
"blocking": true
|
|
385
|
-
}
|
|
386
|
-
]
|
|
387
|
-
}
|
|
388
|
-
]
|
|
389
|
-
}
|
|
390
|
-
}</code></pre>
|
|
391
|
-
</div>
|
|
392
|
-
|
|
393
|
-
<div class="alert alert-info">
|
|
394
|
-
<span class="alert-icon">💡</span>
|
|
395
|
-
<div class="alert-content">
|
|
396
|
-
<h5 data-lang="fr">Variables d'environnement</h5>
|
|
397
|
-
<h5 data-lang="en">Environment variables</h5>
|
|
398
|
-
<p data-lang="fr">
|
|
399
|
-
Les hooks ont acces a <code>$TOOL_NAME</code>, <code>$TOOL_INPUT</code>, <code>$TOOL_OUTPUT</code>, et <code>$CLAUDE_PLUGIN_ROOT</code>.
|
|
400
|
-
</p>
|
|
401
|
-
<p data-lang="en">
|
|
402
|
-
Hooks have access to <code>$TOOL_NAME</code>, <code>$TOOL_INPUT</code>, <code>$TOOL_OUTPUT</code>, and <code>$CLAUDE_PLUGIN_ROOT</code>.
|
|
403
|
-
</p>
|
|
404
|
-
</div>
|
|
405
|
-
</div>
|
|
361
|
+
<p data-lang="fr">
|
|
362
|
+
Vous pouvez creer vos propres hooks pour ajouter des validations specifiques a votre projet. Consultez la <a href="https://docs.anthropic.com/en/docs/claude-code/hooks" target="_blank">documentation officielle Claude Code</a> pour la syntaxe complete.
|
|
363
|
+
</p>
|
|
364
|
+
<p data-lang="en">
|
|
365
|
+
You can create your own hooks to add project-specific validations. See the <a href="https://docs.anthropic.com/en/docs/claude-code/hooks" target="_blank">official Claude Code documentation</a> for the full syntax.
|
|
366
|
+
</p>
|
|
406
367
|
</section>
|
|
407
368
|
|
|
408
369
|
<!-- Hook: mcp-check -->
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v3.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">@atlashub/smartstack-cli</span>
|
|
18
18
|
<!-- Language Select -->
|
|
@@ -131,58 +131,133 @@
|
|
|
131
131
|
</p>
|
|
132
132
|
</div>
|
|
133
133
|
|
|
134
|
-
<!--
|
|
135
|
-
<h2 data-lang="fr">
|
|
136
|
-
<h2 data-lang="en">
|
|
134
|
+
<!-- Getting Started Steps -->
|
|
135
|
+
<h2 data-lang="fr">Premiers pas</h2>
|
|
136
|
+
<h2 data-lang="en">Getting Started</h2>
|
|
137
137
|
|
|
138
|
-
<
|
|
139
|
-
<
|
|
140
|
-
<div class="
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
<div class="
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
<div class="
|
|
156
|
-
|
|
157
|
-
|
|
138
|
+
<ol class="steps-list">
|
|
139
|
+
<li>
|
|
140
|
+
<div class="step-content">
|
|
141
|
+
<h5 data-lang="fr">Installer le package</h5>
|
|
142
|
+
<h5 data-lang="en">Install the package</h5>
|
|
143
|
+
<p><code>npm install -g @atlashub/smartstack-cli</code></p>
|
|
144
|
+
</div>
|
|
145
|
+
</li>
|
|
146
|
+
<li>
|
|
147
|
+
<div class="step-content">
|
|
148
|
+
<h5 data-lang="fr">Deployer skills, agents et hooks</h5>
|
|
149
|
+
<h5 data-lang="en">Deploy skills, agents and hooks</h5>
|
|
150
|
+
<p data-lang="fr"><code>smartstack install</code> (global) ou <code>smartstack install --local</code> (projet)</p>
|
|
151
|
+
<p data-lang="en"><code>smartstack install</code> (global) or <code>smartstack install --local</code> (project)</p>
|
|
152
|
+
</div>
|
|
153
|
+
</li>
|
|
154
|
+
<li>
|
|
155
|
+
<div class="step-content">
|
|
156
|
+
<h5 data-lang="fr">Initialiser un projet</h5>
|
|
157
|
+
<h5 data-lang="en">Initialize a project</h5>
|
|
158
|
+
<p data-lang="fr">Dans votre projet .NET : <code>ss init</code> pour configurer SmartStack et GitFlow.</p>
|
|
159
|
+
<p data-lang="en">In your .NET project: <code>ss init</code> to configure SmartStack and GitFlow.</p>
|
|
160
|
+
</div>
|
|
161
|
+
</li>
|
|
162
|
+
<li>
|
|
163
|
+
<div class="step-content">
|
|
164
|
+
<h5 data-lang="fr">Commencer a developper</h5>
|
|
165
|
+
<h5 data-lang="en">Start developing</h5>
|
|
166
|
+
<p data-lang="fr"><code>/gitflow start feature ma-feature</code></p>
|
|
167
|
+
<p data-lang="en"><code>/gitflow start feature my-feature</code></p>
|
|
168
|
+
</div>
|
|
169
|
+
</li>
|
|
170
|
+
</ol>
|
|
158
171
|
|
|
159
|
-
<!--
|
|
160
|
-
<h2 data-lang="fr">
|
|
161
|
-
<h2 data-lang="en">What
|
|
172
|
+
<!-- Quick Reference -->
|
|
173
|
+
<h2 data-lang="fr">Que puis-je faire ?</h2>
|
|
174
|
+
<h2 data-lang="en">What can I do?</h2>
|
|
162
175
|
|
|
163
|
-
<div class="
|
|
164
|
-
<
|
|
165
|
-
<
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
<
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
176
|
+
<div class="table-container">
|
|
177
|
+
<table>
|
|
178
|
+
<thead>
|
|
179
|
+
<tr>
|
|
180
|
+
<th>
|
|
181
|
+
<span data-lang="fr">Je veux...</span>
|
|
182
|
+
<span data-lang="en">I want to...</span>
|
|
183
|
+
</th>
|
|
184
|
+
<th>
|
|
185
|
+
<span data-lang="fr">Commande</span>
|
|
186
|
+
<span data-lang="en">Command</span>
|
|
187
|
+
</th>
|
|
188
|
+
</tr>
|
|
189
|
+
</thead>
|
|
190
|
+
<tbody>
|
|
191
|
+
<tr>
|
|
192
|
+
<td>
|
|
193
|
+
<span data-lang="fr">Demarrer une feature</span>
|
|
194
|
+
<span data-lang="en">Start a feature</span>
|
|
195
|
+
</td>
|
|
196
|
+
<td><code>/gitflow start feature nom</code></td>
|
|
197
|
+
</tr>
|
|
198
|
+
<tr>
|
|
199
|
+
<td>
|
|
200
|
+
<span data-lang="fr">Commit intelligent</span>
|
|
201
|
+
<span data-lang="en">Smart commit</span>
|
|
202
|
+
</td>
|
|
203
|
+
<td><code>/gitflow commit</code></td>
|
|
204
|
+
</tr>
|
|
205
|
+
<tr>
|
|
206
|
+
<td>
|
|
207
|
+
<span data-lang="fr">Creer une release</span>
|
|
208
|
+
<span data-lang="en">Create a release</span>
|
|
209
|
+
</td>
|
|
210
|
+
<td><code>/gitflow start release</code></td>
|
|
211
|
+
</tr>
|
|
212
|
+
<tr>
|
|
213
|
+
<td>
|
|
214
|
+
<span data-lang="fr">Analyser un besoin metier</span>
|
|
215
|
+
<span data-lang="en">Analyze a business need</span>
|
|
216
|
+
</td>
|
|
217
|
+
<td><code>/business-analyse</code></td>
|
|
218
|
+
</tr>
|
|
219
|
+
<tr>
|
|
220
|
+
<td>
|
|
221
|
+
<span data-lang="fr">Creer une migration EF Core</span>
|
|
222
|
+
<span data-lang="en">Create an EF Core migration</span>
|
|
223
|
+
</td>
|
|
224
|
+
<td><code>/efcore migration</code></td>
|
|
225
|
+
</tr>
|
|
226
|
+
<tr>
|
|
227
|
+
<td>
|
|
228
|
+
<span data-lang="fr">Debugger une erreur</span>
|
|
229
|
+
<span data-lang="en">Debug an error</span>
|
|
230
|
+
</td>
|
|
231
|
+
<td><code>/debug Message d'erreur</code></td>
|
|
232
|
+
</tr>
|
|
233
|
+
<tr>
|
|
234
|
+
<td>
|
|
235
|
+
<span data-lang="fr">Revoir du code</span>
|
|
236
|
+
<span data-lang="en">Review code</span>
|
|
237
|
+
</td>
|
|
238
|
+
<td><code>/review-code</code></td>
|
|
239
|
+
</tr>
|
|
240
|
+
<tr>
|
|
241
|
+
<td>
|
|
242
|
+
<span data-lang="fr">Mettre a jour SmartStack</span>
|
|
243
|
+
<span data-lang="en">Update SmartStack</span>
|
|
244
|
+
</td>
|
|
245
|
+
<td><code>ss update</code></td>
|
|
246
|
+
</tr>
|
|
247
|
+
<tr>
|
|
248
|
+
<td>
|
|
249
|
+
<span data-lang="fr">Diagnostiquer l'installation</span>
|
|
250
|
+
<span data-lang="en">Diagnose the installation</span>
|
|
251
|
+
</td>
|
|
252
|
+
<td><code>ss doctor</code></td>
|
|
253
|
+
</tr>
|
|
254
|
+
</tbody>
|
|
255
|
+
</table>
|
|
181
256
|
</div>
|
|
182
257
|
|
|
183
258
|
<!-- Features Grid -->
|
|
184
|
-
<h2 data-lang="fr">
|
|
185
|
-
<h2 data-lang="en">Workflows
|
|
259
|
+
<h2 data-lang="fr">Explorer les workflows</h2>
|
|
260
|
+
<h2 data-lang="en">Explore Workflows</h2>
|
|
186
261
|
|
|
187
262
|
<div class="card-grid">
|
|
188
263
|
<a href="gitflow.html" class="card">
|
|
@@ -268,129 +343,54 @@
|
|
|
268
343
|
</a>
|
|
269
344
|
</div>
|
|
270
345
|
|
|
271
|
-
<!--
|
|
272
|
-
<h2 data-lang="fr">
|
|
273
|
-
<h2 data-lang="en">
|
|
346
|
+
<!-- Stats Bar -->
|
|
347
|
+
<h2 data-lang="fr">Ce que la CLI installe</h2>
|
|
348
|
+
<h2 data-lang="en">What the CLI installs</h2>
|
|
274
349
|
|
|
275
|
-
<div class="
|
|
276
|
-
<
|
|
277
|
-
<
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
<
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
<span data-lang="en">Start a feature</span>
|
|
294
|
-
</td>
|
|
295
|
-
<td><code>/gitflow start feature nom</code></td>
|
|
296
|
-
</tr>
|
|
297
|
-
<tr>
|
|
298
|
-
<td>
|
|
299
|
-
<span data-lang="fr">Commit intelligent</span>
|
|
300
|
-
<span data-lang="en">Smart commit</span>
|
|
301
|
-
</td>
|
|
302
|
-
<td><code>/gitflow commit</code></td>
|
|
303
|
-
</tr>
|
|
304
|
-
<tr>
|
|
305
|
-
<td>
|
|
306
|
-
<span data-lang="fr">Creer une release</span>
|
|
307
|
-
<span data-lang="en">Create a release</span>
|
|
308
|
-
</td>
|
|
309
|
-
<td><code>/gitflow start release</code></td>
|
|
310
|
-
</tr>
|
|
311
|
-
<tr>
|
|
312
|
-
<td>
|
|
313
|
-
<span data-lang="fr">Analyser un besoin metier</span>
|
|
314
|
-
<span data-lang="en">Analyze a business need</span>
|
|
315
|
-
</td>
|
|
316
|
-
<td><code>/business-analyse</code></td>
|
|
317
|
-
</tr>
|
|
318
|
-
<tr>
|
|
319
|
-
<td>
|
|
320
|
-
<span data-lang="fr">Creer une migration EF Core</span>
|
|
321
|
-
<span data-lang="en">Create an EF Core migration</span>
|
|
322
|
-
</td>
|
|
323
|
-
<td><code>/efcore migration</code></td>
|
|
324
|
-
</tr>
|
|
325
|
-
<tr>
|
|
326
|
-
<td>
|
|
327
|
-
<span data-lang="fr">Debugger une erreur</span>
|
|
328
|
-
<span data-lang="en">Debug an error</span>
|
|
329
|
-
</td>
|
|
330
|
-
<td><code>/debug Message d'erreur</code></td>
|
|
331
|
-
</tr>
|
|
332
|
-
<tr>
|
|
333
|
-
<td>
|
|
334
|
-
<span data-lang="fr">Revoir du code</span>
|
|
335
|
-
<span data-lang="en">Review code</span>
|
|
336
|
-
</td>
|
|
337
|
-
<td><code>/review-code</code></td>
|
|
338
|
-
</tr>
|
|
339
|
-
<tr>
|
|
340
|
-
<td>
|
|
341
|
-
<span data-lang="fr">Mettre a jour SmartStack</span>
|
|
342
|
-
<span data-lang="en">Update SmartStack</span>
|
|
343
|
-
</td>
|
|
344
|
-
<td><code>ss update</code></td>
|
|
345
|
-
</tr>
|
|
346
|
-
<tr>
|
|
347
|
-
<td>
|
|
348
|
-
<span data-lang="fr">Diagnostiquer l'installation</span>
|
|
349
|
-
<span data-lang="en">Diagnose the installation</span>
|
|
350
|
-
</td>
|
|
351
|
-
<td><code>ss doctor</code></td>
|
|
352
|
-
</tr>
|
|
353
|
-
</tbody>
|
|
354
|
-
</table>
|
|
350
|
+
<div class="stats-bar">
|
|
351
|
+
<div class="stat-item">
|
|
352
|
+
<div class="stat-number">26</div>
|
|
353
|
+
<div class="stat-label">Skills</div>
|
|
354
|
+
</div>
|
|
355
|
+
<div class="stat-item">
|
|
356
|
+
<div class="stat-number">33</div>
|
|
357
|
+
<div class="stat-label">Agents</div>
|
|
358
|
+
</div>
|
|
359
|
+
<div class="stat-item">
|
|
360
|
+
<div class="stat-number">6</div>
|
|
361
|
+
<div class="stat-label">Hooks</div>
|
|
362
|
+
</div>
|
|
363
|
+
<div class="stat-item">
|
|
364
|
+
<div class="stat-number">13</div>
|
|
365
|
+
<div class="stat-label" data-lang="fr">Commandes CLI</div>
|
|
366
|
+
<div class="stat-label" data-lang="en">CLI Commands</div>
|
|
367
|
+
</div>
|
|
355
368
|
</div>
|
|
356
369
|
|
|
357
|
-
<!--
|
|
358
|
-
<h2 data-lang="fr">
|
|
359
|
-
<h2 data-lang="en">
|
|
370
|
+
<!-- Ecosystem -->
|
|
371
|
+
<h2 data-lang="fr">L'ecosysteme SmartStack</h2>
|
|
372
|
+
<h2 data-lang="en">The SmartStack Ecosystem</h2>
|
|
360
373
|
|
|
361
|
-
<
|
|
362
|
-
<
|
|
363
|
-
<div class="
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
<div class="
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
<div class="
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
<p data-lang="fr">Dans votre projet .NET : <code>ss init</code> pour configurer SmartStack et GitFlow.</p>
|
|
382
|
-
<p data-lang="en">In your .NET project: <code>ss init</code> to configure SmartStack and GitFlow.</p>
|
|
383
|
-
</div>
|
|
384
|
-
</li>
|
|
385
|
-
<li>
|
|
386
|
-
<div class="step-content">
|
|
387
|
-
<h5 data-lang="fr">Commencer a developper</h5>
|
|
388
|
-
<h5 data-lang="en">Start developing</h5>
|
|
389
|
-
<p data-lang="fr"><code>/gitflow start feature ma-feature</code></p>
|
|
390
|
-
<p data-lang="en"><code>/gitflow start feature my-feature</code></p>
|
|
391
|
-
</div>
|
|
392
|
-
</li>
|
|
393
|
-
</ol>
|
|
374
|
+
<div class="ecosystem-grid">
|
|
375
|
+
<div class="ecosystem-card">
|
|
376
|
+
<div class="eco-icon eco-app">⚙</div>
|
|
377
|
+
<div class="eco-name">SmartStack.app</div>
|
|
378
|
+
<div class="eco-role" data-lang="fr">Application socle contenant l'architecture de reference, les conventions et les patterns de securite (OWASP, RBAC, multi-tenant).</div>
|
|
379
|
+
<div class="eco-role" data-lang="en">Foundation application containing the reference architecture, conventions and security patterns (OWASP, RBAC, multi-tenant).</div>
|
|
380
|
+
</div>
|
|
381
|
+
<div class="ecosystem-card">
|
|
382
|
+
<div class="eco-icon eco-cli">▶</div>
|
|
383
|
+
<div class="eco-name">SmartStack.cli</div>
|
|
384
|
+
<div class="eco-role" data-lang="fr">Orchestrateur qui deploie skills, agents, hooks et commandes dans Claude Code. Ne genere jamais de contenu.</div>
|
|
385
|
+
<div class="eco-role" data-lang="en">Orchestrator that deploys skills, agents, hooks and commands into Claude Code. Never generates content.</div>
|
|
386
|
+
</div>
|
|
387
|
+
<div class="ecosystem-card">
|
|
388
|
+
<div class="eco-icon eco-mcp">✓</div>
|
|
389
|
+
<div class="eco-name">SmartStack.mcp</div>
|
|
390
|
+
<div class="eco-role" data-lang="fr">Serveur MCP qui valide les conventions, genere le code conforme et assure la coherence de l'ensemble.</div>
|
|
391
|
+
<div class="eco-role" data-lang="en">MCP server that validates conventions, generates compliant code and ensures overall consistency.</div>
|
|
392
|
+
</div>
|
|
393
|
+
</div>
|
|
394
394
|
|
|
395
395
|
<!-- Footer -->
|
|
396
396
|
<div style="margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: center; color: var(--text-muted); font-size: 0.85rem;">
|
package/.documentation/init.html
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v3.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">
|
|
18
18
|
<span data-lang="fr">Projet Client</span>
|
|
@@ -296,12 +296,11 @@
|
|
|
296
296
|
<text x="608" y="164" text-anchor="end" fill="#8a9bb0" font-size="10.5" data-lang="fr">Entites, Interfaces, Regles metier</text>
|
|
297
297
|
<text x="608" y="164" text-anchor="end" fill="#8a9bb0" font-size="10.5" data-lang="en">Entities, Interfaces, Business Rules</text>
|
|
298
298
|
|
|
299
|
-
<!-- Domain content
|
|
300
|
-
<text x="100" y="
|
|
301
|
-
<text x="100" y="
|
|
302
|
-
<text x="100" y="
|
|
303
|
-
<text x="100" y="
|
|
304
|
-
<text x="100" y="246" fill="#8a9bb0" font-size="11" font-family="monospace">}</text>
|
|
299
|
+
<!-- Domain content -->
|
|
300
|
+
<text x="100" y="198" fill="#c8d0dc" font-size="11" data-lang="fr">Vos entites metier : Product, Order, Customer...</text>
|
|
301
|
+
<text x="100" y="198" fill="#c8d0dc" font-size="11" data-lang="en">Your business entities: Product, Order, Customer...</text>
|
|
302
|
+
<text x="100" y="220" fill="#8a9bb0" font-size="10" data-lang="fr">Heritent des classes de base SmartStack (BaseEntity, IAuditable)</text>
|
|
303
|
+
<text x="100" y="220" fill="#8a9bb0" font-size="10" data-lang="en">Inherit from SmartStack base classes (BaseEntity, IAuditable)</text>
|
|
305
304
|
|
|
306
305
|
<!-- Arrow: dependencies -->
|
|
307
306
|
<line x1="662" y1="272" x2="662" y2="160" stroke="#8a9bb0" stroke-width="1.5" marker-end="url(#arrowDown)"/>
|
|
@@ -302,7 +302,7 @@
|
|
|
302
302
|
<header class="global-header">
|
|
303
303
|
<div class="logo">SS</div>
|
|
304
304
|
<span class="site-title">SmartStack CLI</span>
|
|
305
|
-
<span class="version-badge">
|
|
305
|
+
<span class="version-badge">v3.0.0</span>
|
|
306
306
|
<div class="header-divider"></div>
|
|
307
307
|
<span class="page-title">Installation</span>
|
|
308
308
|
<nav class="breadcrumb">
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v3.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">Ralph Loop</span>
|
|
18
18
|
<nav class="breadcrumb">
|
|
@@ -196,14 +196,6 @@
|
|
|
196
196
|
<span data-lang="en">Concept</span>
|
|
197
197
|
</h2>
|
|
198
198
|
|
|
199
|
-
<div class="code-block">
|
|
200
|
-
<button class="copy-btn">Copy</button>
|
|
201
|
-
<pre><code># Core concept
|
|
202
|
-
while :; do
|
|
203
|
-
cat PROMPT.md | claude-code --continue
|
|
204
|
-
done</code></pre>
|
|
205
|
-
</div>
|
|
206
|
-
|
|
207
199
|
<h4 data-lang="fr">Chaque iteration</h4>
|
|
208
200
|
<h4 data-lang="en">Each iteration</h4>
|
|
209
201
|
|