@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/.documentation/agents.html +920 -916
- package/.documentation/apex.html +1022 -1018
- package/.documentation/business-analyse.html +1505 -1501
- package/.documentation/commands.html +684 -680
- package/.documentation/efcore.html +2509 -2505
- package/.documentation/gitflow.html +2622 -2618
- package/.documentation/hooks.html +417 -413
- package/.documentation/index.html +327 -323
- package/.documentation/init.html +565 -0
- package/.documentation/installation.html +548 -462
- package/.documentation/ralph-loop.html +534 -530
- package/.documentation/test-web.html +517 -513
- package/dist/index.js +18 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/commands/init.md +20 -15
package/package.json
CHANGED
|
@@ -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
|
|
213
|
+
### 2.3 Installer les packages NuGet
|
|
214
214
|
|
|
215
215
|
```bash
|
|
216
|
-
#
|
|
217
|
-
dotnet add "src/$PROJECT_NAME.
|
|
218
|
-
dotnet add "src/$PROJECT_NAME.
|
|
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
|
-
#
|
|
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
|
-
#
|
|
233
|
-
dotnet add "src/$PROJECT_NAME.
|
|
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
|
-
✓
|
|
499
|
-
✓
|
|
500
|
-
✓
|
|
501
|
-
✓
|
|
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
|
-
|
|
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)
|