@atlashub/smartstack-cli 1.5.0 → 1.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlashub/smartstack-cli",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "SmartStack Claude Code automation toolkit - GitFlow, APEX, EF Core migrations, prompts and more",
5
5
  "author": {
6
6
  "name": "SmartStack",
@@ -30,7 +30,7 @@ claude mcp list
30
30
  | Serveur | Fonction | Installation |
31
31
  |---------|----------|--------------|
32
32
  | **SmartStack MCP** | Validation conventions, scaffolding, API docs | `claude mcp add smartstack` |
33
- | **Context7 MCP** | Documentation libraries, exemples de code | `claude mcp add context7` |
33
+ | **Context7 MCP** | Documentation libraries, exemples de code | `claude mcp add context7 -- npx @upstash/context7-mcp -- --api-key YOUR_API_KEY` |
34
34
 
35
35
  **Si un MCP manque:**
36
36
  ```
@@ -210,16 +210,14 @@ dotnet add "src/$PROJECT_NAME.Api" reference "src/$PROJECT_NAME.Application"
210
210
  dotnet add "src/$PROJECT_NAME.Api" reference "src/$PROJECT_NAME.Infrastructure"
211
211
  ```
212
212
 
213
- ### 2.3 Installer les packages SmartStack (NuGet)
213
+ ### 2.3 Installer les packages NuGet
214
214
 
215
215
  ```bash
216
- # SmartStack packages
217
- dotnet add "src/$PROJECT_NAME.Domain" package SmartStack.Domain
218
- dotnet add "src/$PROJECT_NAME.Application" package SmartStack.Application
219
- dotnet add "src/$PROJECT_NAME.Infrastructure" package SmartStack.Infrastructure
220
- dotnet add "src/$PROJECT_NAME.Api" package SmartStack.Api.Core
216
+ # EF Core packages (Infrastructure)
217
+ dotnet add "src/$PROJECT_NAME.Infrastructure" package Microsoft.EntityFrameworkCore
218
+ dotnet add "src/$PROJECT_NAME.Infrastructure" package Microsoft.EntityFrameworkCore.Design
221
219
 
222
- # EF Core (selon base de donnees selectionnee)
220
+ # Database provider (selon base de donnees selectionnee)
223
221
  # SQL Server:
224
222
  dotnet add "src/$PROJECT_NAME.Infrastructure" package Microsoft.EntityFrameworkCore.SqlServer
225
223
 
@@ -229,8 +227,9 @@ dotnet add "src/$PROJECT_NAME.Infrastructure" package Microsoft.EntityFrameworkC
229
227
  # SQLite:
230
228
  # dotnet add "src/$PROJECT_NAME.Infrastructure" package Microsoft.EntityFrameworkCore.Sqlite
231
229
 
232
- # Tools
233
- dotnet add "src/$PROJECT_NAME.Infrastructure" package Microsoft.EntityFrameworkCore.Design
230
+ # API packages
231
+ dotnet add "src/$PROJECT_NAME.Api" package Microsoft.AspNetCore.Authentication.JwtBearer
232
+ dotnet add "src/$PROJECT_NAME.Api" package Swashbuckle.AspNetCore
234
233
  ```
235
234
 
236
235
  ---
@@ -495,10 +494,11 @@ STRUCTURE CREEE:
495
494
 
496
495
  PACKAGES INSTALLES:
497
496
  NuGet:
498
- SmartStack.Domain
499
- SmartStack.Application
500
- SmartStack.Infrastructure
501
- SmartStack.Api.Core
497
+ Microsoft.EntityFrameworkCore
498
+ Microsoft.EntityFrameworkCore.Design
499
+ Microsoft.EntityFrameworkCore.SqlServer (ou PostgreSQL/SQLite)
500
+ Microsoft.AspNetCore.Authentication.JwtBearer
501
+ ✓ Swashbuckle.AspNetCore
502
502
  npm:
503
503
  ✓ @atlashub/smartstack-react
504
504
  ✓ tailwindcss
@@ -557,6 +557,11 @@ Fournit:
557
557
 
558
558
  **Installation:**
559
559
  ```bash
560
+ # SmartStack MCP
560
561
  claude mcp add smartstack
561
- claude mcp add context7
562
+
563
+ # Context7 MCP (remplacez YOUR_API_KEY par votre cle)
564
+ claude mcp add context7 -- npx @upstash/context7-mcp -- --api-key YOUR_API_KEY
562
565
  ```
566
+
567
+ > **Note:** Obtenez votre cle API Context7 gratuite sur [context7.io](https://context7.io)