@atlashub/smartstack-cli 1.26.0 → 1.28.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.
@@ -162,7 +162,7 @@
162
162
  <td><a href="gitflow.html">GitFlow</a></td>
163
163
  </tr>
164
164
  <tr>
165
- <td><code>/gitflow 1-init</code></td>
165
+ <td><code>/gitflow init</code></td>
166
166
  <td>
167
167
  <span data-lang="fr">Initialiser la structure GitFlow</span>
168
168
  <span data-lang="en">Initialize GitFlow structure</span>
@@ -170,7 +170,7 @@
170
170
  <td><a href="gitflow.html#commands">GitFlow</a></td>
171
171
  </tr>
172
172
  <tr>
173
- <td><code>/gitflow 2-status</code></td>
173
+ <td><code>/gitflow status</code></td>
174
174
  <td>
175
175
  <span data-lang="fr">Afficher le statut detaille</span>
176
176
  <span data-lang="en">Show detailed status</span>
@@ -178,7 +178,7 @@
178
178
  <td><a href="gitflow.html#commands">GitFlow</a></td>
179
179
  </tr>
180
180
  <tr>
181
- <td><code>/gitflow 3-commit</code></td>
181
+ <td><code>/gitflow commit</code></td>
182
182
  <td>
183
183
  <span data-lang="fr">Commit intelligent avec validation EF Core</span>
184
184
  <span data-lang="en">Smart commit with EF Core validation</span>
@@ -186,7 +186,7 @@
186
186
  <td><a href="gitflow.html#commands">GitFlow</a></td>
187
187
  </tr>
188
188
  <tr>
189
- <td><code>/gitflow 4-plan</code></td>
189
+ <td><code>/gitflow plan</code></td>
190
190
  <td>
191
191
  <span data-lang="fr">Creer un plan d'integration</span>
192
192
  <span data-lang="en">Create integration plan</span>
@@ -194,7 +194,7 @@
194
194
  <td><a href="gitflow.html#commands">GitFlow</a></td>
195
195
  </tr>
196
196
  <tr>
197
- <td><code>/gitflow 5-exec</code></td>
197
+ <td><code>/gitflow exec</code></td>
198
198
  <td>
199
199
  <span data-lang="fr">Executer le plan d'integration</span>
200
200
  <span data-lang="en">Execute integration plan</span>
@@ -202,7 +202,7 @@
202
202
  <td><a href="gitflow.html#commands">GitFlow</a></td>
203
203
  </tr>
204
204
  <tr>
205
- <td><code>/gitflow 6-abort</code></td>
205
+ <td><code>/gitflow abort</code></td>
206
206
  <td>
207
207
  <span data-lang="fr">Annuler une operation en cours</span>
208
208
  <span data-lang="en">Abort ongoing operation</span>
@@ -210,7 +210,7 @@
210
210
  <td><a href="gitflow.html#commands">GitFlow</a></td>
211
211
  </tr>
212
212
  <tr>
213
- <td><code>/gitflow 10-start</code></td>
213
+ <td><code>/gitflow start</code></td>
214
214
  <td>
215
215
  <span data-lang="fr">Demarrer une branche (feature/release/hotfix)</span>
216
216
  <span data-lang="en">Start a branch (feature/release/hotfix)</span>
@@ -218,7 +218,7 @@
218
218
  <td><a href="gitflow.html#commands">GitFlow</a></td>
219
219
  </tr>
220
220
  <tr>
221
- <td><code>/gitflow 11-finish</code></td>
221
+ <td><code>/gitflow finish</code></td>
222
222
  <td>
223
223
  <span data-lang="fr">Terminer une branche (merge + tag)</span>
224
224
  <span data-lang="en">Finish a branch (merge + tag)</span>
@@ -292,10 +292,10 @@
292
292
  <h5 data-lang="fr">Workflow typique</h5>
293
293
  <h5 data-lang="en">Typical Workflow</h5>
294
294
  <p data-lang="fr">
295
- <code>/efcore db-status</code> → <code>/efcore migration</code> → <code>/efcore db-deploy</code> → <code>/gitflow 3-commit</code>
295
+ <code>/efcore db-status</code> → <code>/efcore migration</code> → <code>/efcore db-deploy</code> → <code>/gitflow commit</code>
296
296
  </p>
297
297
  <p data-lang="en">
298
- <code>/efcore db-status</code> → <code>/efcore migration</code> → <code>/efcore db-deploy</code> → <code>/gitflow 3-commit</code>
298
+ <code>/efcore db-status</code> → <code>/efcore migration</code> → <code>/efcore db-deploy</code> → <code>/gitflow commit</code>
299
299
  </p>
300
300
  </div>
301
301
  </div>
@@ -319,10 +319,10 @@
319
319
  <h5 data-lang="fr">Integration automatique</h5>
320
320
  <h5 data-lang="en">Automatic Integration</h5>
321
321
  <p data-lang="fr">
322
- Claude Tools detecte automatiquement les projets .NET utilisant EF Core lors de l'initialisation avec <code>/gitflow 1-init</code>.
322
+ Claude Tools detecte automatiquement les projets .NET utilisant EF Core lors de l'initialisation avec <code>/gitflow init</code>.
323
323
  </p>
324
324
  <p data-lang="en">
325
- Claude Tools automatically detects .NET projects using EF Core during initialization with <code>/gitflow 1-init</code>.
325
+ Claude Tools automatically detects .NET projects using EF Core during initialization with <code>/gitflow init</code>.
326
326
  </p>
327
327
  </div>
328
328
  </div>
@@ -878,7 +878,7 @@ dotnet ef migrations add $MCP_NAME --context ExtensionsDbContext -o Persistence/
878
878
  /efcore db-deploy
879
879
 
880
880
  # 7. Commit
881
- /gitflow 3-commit</code></pre>
881
+ /gitflow commit</code></pre>
882
882
  </div>
883
883
  </section>
884
884
 
@@ -2355,8 +2355,8 @@ ORDRE DE MERGE RECOMMANDE
2355
2355
  <span data-lang="fr">Toujours commiter les 3 fichiers ensemble</span>
2356
2356
  <span data-lang="en">Always commit all 3 files together</span>
2357
2357
  </h4>
2358
- <p data-lang="fr">Ne jamais commiter une migration incomplete. <code>/gitflow 3-commit</code> valide automatiquement la presence des 3 fichiers.</p>
2359
- <p data-lang="en">Never commit an incomplete migration. <code>/gitflow 3-commit</code> automatically validates the presence of all 3 files.</p>
2358
+ <p data-lang="fr">Ne jamais commiter une migration incomplete. <code>/gitflow commit</code> valide automatiquement la presence des 3 fichiers.</p>
2359
+ <p data-lang="en">Never commit an incomplete migration. <code>/gitflow commit</code> automatically validates the presence of all 3 files.</p>
2360
2360
  </div>
2361
2361
 
2362
2362
  <div class="best-practice">
@@ -2384,8 +2384,8 @@ dotnet ef migrations add Update</code></pre>
2384
2384
  <span data-lang="fr">Verifier les operations destructives</span>
2385
2385
  <span data-lang="en">Check destructive operations</span>
2386
2386
  </h4>
2387
- <p data-lang="fr"><code>/gitflow 3-commit</code> detecte automatiquement et alerte sur les operations suivantes :</p>
2388
- <p data-lang="en"><code>/gitflow 3-commit</code> automatically detects and alerts on the following operations:</p>
2387
+ <p data-lang="fr"><code>/gitflow commit</code> detecte automatiquement et alerte sur les operations suivantes :</p>
2388
+ <p data-lang="en"><code>/gitflow commit</code> automatically detects and alerts on the following operations:</p>
2389
2389
 
2390
2390
  <div class="table-container">
2391
2391
  <table>
@@ -2516,7 +2516,7 @@ dotnet ef migrations script --idempotent -o ./scripts/migrations/v1.2.0.sql
2516
2516
  <div class="card-header">
2517
2517
  <div class="card-icon" style="background: var(--primary);">1</div>
2518
2518
  <div>
2519
- <div class="card-title">/gitflow 1-init</div>
2519
+ <div class="card-title">/gitflow init</div>
2520
2520
  <div class="card-subtitle" data-lang="fr">Detection automatique</div>
2521
2521
  <div class="card-subtitle" data-lang="en">Automatic detection</div>
2522
2522
  </div>
@@ -2531,7 +2531,7 @@ dotnet ef migrations script --idempotent -o ./scripts/migrations/v1.2.0.sql
2531
2531
  <div class="card-header">
2532
2532
  <div class="card-icon" style="background: var(--success);">3</div>
2533
2533
  <div>
2534
- <div class="card-title">/gitflow 3-commit</div>
2534
+ <div class="card-title">/gitflow commit</div>
2535
2535
  <div class="card-subtitle" data-lang="fr">Validation des migrations</div>
2536
2536
  <div class="card-subtitle" data-lang="en">Migration validation</div>
2537
2537
  </div>
@@ -2546,7 +2546,7 @@ dotnet ef migrations script --idempotent -o ./scripts/migrations/v1.2.0.sql
2546
2546
  <div class="card-header">
2547
2547
  <div class="card-icon" style="background: var(--warning);">4</div>
2548
2548
  <div>
2549
- <div class="card-title">/gitflow 4-plan</div>
2549
+ <div class="card-title">/gitflow plan</div>
2550
2550
  <div class="card-subtitle" data-lang="fr">Analyse des conflits</div>
2551
2551
  <div class="card-subtitle" data-lang="en">Conflict analysis</div>
2552
2552
  </div>
@@ -2561,7 +2561,7 @@ dotnet ef migrations script --idempotent -o ./scripts/migrations/v1.2.0.sql
2561
2561
  <div class="card-header">
2562
2562
  <div class="card-icon" style="background: var(--secondary);">5</div>
2563
2563
  <div>
2564
- <div class="card-title">/gitflow 5-exec</div>
2564
+ <div class="card-title">/gitflow exec</div>
2565
2565
  <div class="card-subtitle" data-lang="fr">Resolution automatique</div>
2566
2566
  <div class="card-subtitle" data-lang="en">Automatic resolution</div>
2567
2567
  </div>
@@ -240,21 +240,21 @@
240
240
  <span data-lang="fr">Demarrer une feature</span>
241
241
  <span data-lang="en">Start a feature</span>
242
242
  </td>
243
- <td><code>/gitflow 10-start feature nom</code></td>
243
+ <td><code>/gitflow start feature nom</code></td>
244
244
  </tr>
245
245
  <tr>
246
246
  <td>
247
247
  <span data-lang="fr">Creer une release</span>
248
248
  <span data-lang="en">Create a release</span>
249
249
  </td>
250
- <td><code>/gitflow 10-start release</code></td>
250
+ <td><code>/gitflow start release</code></td>
251
251
  </tr>
252
252
  <tr>
253
253
  <td>
254
254
  <span data-lang="fr">Commit intelligent</span>
255
255
  <span data-lang="en">Smart commit</span>
256
256
  </td>
257
- <td><code>/gitflow 3-commit</code></td>
257
+ <td><code>/gitflow commit</code></td>
258
258
  </tr>
259
259
  <tr>
260
260
  <td>
@@ -305,16 +305,16 @@
305
305
  <div class="step-content">
306
306
  <h5 data-lang="fr">Initialiser GitFlow (optionnel)</h5>
307
307
  <h5 data-lang="en">Initialize GitFlow (optional)</h5>
308
- <p data-lang="fr">Dans votre projet : <code>/gitflow 1-init</code></p>
309
- <p data-lang="en">In your project: <code>/gitflow 1-init</code></p>
308
+ <p data-lang="fr">Dans votre projet : <code>/gitflow init</code></p>
309
+ <p data-lang="en">In your project: <code>/gitflow init</code></p>
310
310
  </div>
311
311
  </li>
312
312
  <li>
313
313
  <div class="step-content">
314
314
  <h5 data-lang="fr">Commencer a travailler</h5>
315
315
  <h5 data-lang="en">Start working</h5>
316
- <p data-lang="fr"><code>/gitflow 10-start feature ma-feature</code></p>
317
- <p data-lang="en"><code>/gitflow 10-start feature my-feature</code></p>
316
+ <p data-lang="fr"><code>/gitflow start feature ma-feature</code></p>
317
+ <p data-lang="en"><code>/gitflow start feature my-feature</code></p>
318
318
  </div>
319
319
  </li>
320
320
  </ol>