siesa-agents 2.1.42 → 2.1.43
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/bmad/bmm/workflows/3-solutioning/create-architecture/data/company-standards/architecture-patterns.md +5 -5
- package/bmad/bmm/workflows/3-solutioning/create-architecture/data/company-standards/backend-standards.md +1 -1
- package/bmad/bmm/workflows/3-solutioning/create-architecture/data/company-standards/technology-stack.md +3 -3
- package/package.json +1 -1
|
@@ -120,7 +120,7 @@ Use MCP to install Shadcn components instead of creating manually.
|
|
|
120
120
|
|
|
121
121
|
### Technology Stack
|
|
122
122
|
- **.NET 10** with **C# Minimal API**
|
|
123
|
-
- **Entity Framework Core** with **PostgreSQL
|
|
123
|
+
- **Entity Framework Core** with **PostgreSQL 18+**
|
|
124
124
|
- **UUID (Guid)** primary keys mandatory
|
|
125
125
|
- **linq2db**, **DynamicLinq**, **LinqKit** for advanced queries
|
|
126
126
|
- **FluentValidation** for validation
|
|
@@ -300,7 +300,7 @@ public class InventoryServiceClient
|
|
|
300
300
|
### Database per Microservice Pattern
|
|
301
301
|
|
|
302
302
|
**Key Principles:**
|
|
303
|
-
- Each microservice has its own PostgreSQL database
|
|
303
|
+
- Each microservice has its own PostgreSQL database (v18+)
|
|
304
304
|
- No direct database access between services
|
|
305
305
|
- Data consistency via eventual consistency and sagas
|
|
306
306
|
- Each database uses UUID (Guid) primary keys
|
|
@@ -359,7 +359,7 @@ public class QuoteConfiguration : IEntityTypeConfiguration<QuoteEntity>
|
|
|
359
359
|
#### Test-Driven Development
|
|
360
360
|
- Write xUnit tests before or alongside implementation
|
|
361
361
|
- Use EF Core InMemory for fast unit tests
|
|
362
|
-
- Use PostgreSQL Test Containers for integration tests
|
|
362
|
+
- Use PostgreSQL 18+ Test Containers for integration tests
|
|
363
363
|
- Mock external dependencies
|
|
364
364
|
|
|
365
365
|
#### FluentValidation Usage
|
|
@@ -398,10 +398,10 @@ app.MapScalarApiReference(); // NOT app.UseSwagger()
|
|
|
398
398
|
### Backend
|
|
399
399
|
- **Framework**: .NET 10 with C# Minimal API
|
|
400
400
|
- **Architecture**: Clean Architecture + DDD + Microservices
|
|
401
|
-
- **Database**: PostgreSQL (one per microservice)
|
|
401
|
+
- **Database**: PostgreSQL 18+ (one per microservice)
|
|
402
402
|
- **ORM**: Entity Framework Core + linq2db + DynamicLinq + LinqKit
|
|
403
403
|
- **Validation**: FluentValidation
|
|
404
|
-
- **Testing**: xUnit + EF Core InMemory + PostgreSQL Test Containers
|
|
404
|
+
- **Testing**: xUnit + EF Core InMemory + PostgreSQL 18+ Test Containers
|
|
405
405
|
- **Documentation**: Scalar (NO Swagger)
|
|
406
406
|
- **Primary Keys**: UUID (Guid) mandatory
|
|
407
407
|
- **PDF Generation**: QuestPDF
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
### Framework Standards
|
|
15
15
|
- **Default Framework**: .NET 10 with C# Minimal API
|
|
16
|
-
- **Database**: PostgreSQL with Entity Framework Core 10 (mandatory)
|
|
16
|
+
- **Database**: PostgreSQL 18+ with Entity Framework Core 10 (mandatory)
|
|
17
17
|
- **ORM Extensions**:
|
|
18
18
|
- **linq2db**: For highly optimized complex queries requiring maximum performance
|
|
19
19
|
- **DynamicLinq**: For runtime dynamic filters from user input or configurable scenarios
|
|
@@ -176,7 +176,7 @@ Use MCP to install Shadcn components instead of creating manually
|
|
|
176
176
|
- **REST API** - Primary communication protocol
|
|
177
177
|
|
|
178
178
|
### Database & Data Management
|
|
179
|
-
- **PostgreSQL
|
|
179
|
+
- **PostgreSQL 18+** - Primary relational database (mandatory)
|
|
180
180
|
- **Database per Microservice** - Each microservice has its own isolated database
|
|
181
181
|
- **Primary Keys UUID** - Universal unique identifiers for all entities
|
|
182
182
|
- **EF Core 10 Migrations** - Entity Framework migrations package for schema version control
|
|
@@ -184,7 +184,7 @@ Use MCP to install Shadcn components instead of creating manually
|
|
|
184
184
|
### Testing
|
|
185
185
|
- **xUnit** - Unit and integration testing framework
|
|
186
186
|
- **EF Core 10 InMemory** - In-memory database for fast tests
|
|
187
|
-
- **PostgreSQL Test Containers** - PostgreSQL containers for real integration tests
|
|
187
|
+
- **PostgreSQL 18+ Test Containers** - PostgreSQL containers for real integration tests
|
|
188
188
|
|
|
189
189
|
### Additional Libraries
|
|
190
190
|
- **QuestPDF** - PDF document generation
|
|
@@ -218,7 +218,7 @@ Business logic drives architecture decisions
|
|
|
218
218
|
|
|
219
219
|
### Microservices Isolation
|
|
220
220
|
- Each service is independent
|
|
221
|
-
- Own PostgreSQL database per service
|
|
221
|
+
- Own PostgreSQL 18+ database per service
|
|
222
222
|
- No shared databases between services
|
|
223
223
|
|
|
224
224
|
### UUID Primary Keys
|