@anhth2/spec-driven-dev-plugin 0.5.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.
Files changed (152) hide show
  1. package/ARCHITECTURE.md +243 -0
  2. package/bin/build.js +230 -0
  3. package/bin/index.js +311 -0
  4. package/commands/debug.md +374 -0
  5. package/commands/debug.tmpl +77 -0
  6. package/commands/define-product.md +451 -0
  7. package/commands/define-product.tmpl +154 -0
  8. package/commands/fix-bug.md +379 -0
  9. package/commands/fix-bug.tmpl +82 -0
  10. package/commands/generate-bdd.md +591 -0
  11. package/commands/generate-bdd.tmpl +294 -0
  12. package/commands/generate-code.md +395 -0
  13. package/commands/generate-code.tmpl +98 -0
  14. package/commands/generate-prd.md +488 -0
  15. package/commands/generate-prd.tmpl +191 -0
  16. package/commands/generate-tech-docs.md +362 -0
  17. package/commands/generate-tech-docs.tmpl +65 -0
  18. package/commands/generate-tests.md +377 -0
  19. package/commands/generate-tests.tmpl +80 -0
  20. package/commands/refine-prd.md +408 -0
  21. package/commands/refine-prd.tmpl +111 -0
  22. package/commands/review-code.md +354 -0
  23. package/commands/review-code.tmpl +57 -0
  24. package/commands/review-context.md +646 -0
  25. package/commands/review-context.tmpl +349 -0
  26. package/commands/review-tech-docs.md +518 -0
  27. package/commands/review-tech-docs.tmpl +221 -0
  28. package/commands/run-tests.md +343 -0
  29. package/commands/run-tests.tmpl +46 -0
  30. package/commands/setup-ai-first.md +278 -0
  31. package/commands/setup-ai-first.tmpl +197 -0
  32. package/commands/smoke-test.md +366 -0
  33. package/commands/smoke-test.tmpl +69 -0
  34. package/commands/validate-traces.md +529 -0
  35. package/commands/validate-traces.tmpl +232 -0
  36. package/core/FRAMEWORK_VERSION +1 -0
  37. package/core/commands/debug.md +374 -0
  38. package/core/commands/define-product.md +451 -0
  39. package/core/commands/fix-bug.md +379 -0
  40. package/core/commands/generate-bdd.md +591 -0
  41. package/core/commands/generate-code.md +395 -0
  42. package/core/commands/generate-prd.md +488 -0
  43. package/core/commands/generate-tech-docs.md +362 -0
  44. package/core/commands/generate-tests.md +377 -0
  45. package/core/commands/refine-prd.md +408 -0
  46. package/core/commands/review-code.md +354 -0
  47. package/core/commands/review-context.md +646 -0
  48. package/core/commands/review-tech-docs.md +518 -0
  49. package/core/commands/run-tests.md +343 -0
  50. package/core/commands/setup-ai-first.md +278 -0
  51. package/core/commands/smoke-test.md +366 -0
  52. package/core/commands/validate-traces.md +529 -0
  53. package/core/hooks/data-guard.js +141 -0
  54. package/core/hooks/settings.json +18 -0
  55. package/core/modules/angular/architecture-snippets/component-patterns.md +187 -0
  56. package/core/modules/angular/module.yaml +6 -0
  57. package/core/modules/angular/stack-profile.yaml +38 -0
  58. package/core/modules/context-engineering/architecture-snippets/context-design.md +119 -0
  59. package/core/modules/context-engineering/module.yaml +9 -0
  60. package/core/modules/context-engineering/stack-profile.yaml +61 -0
  61. package/core/modules/dotnet/architecture-snippets/clean-arch.md +160 -0
  62. package/core/modules/dotnet/module.yaml +6 -0
  63. package/core/modules/dotnet/stack-profile.yaml +50 -0
  64. package/core/modules/golang/architecture-snippets/domain-layout.md +283 -0
  65. package/core/modules/golang/module.yaml +6 -0
  66. package/core/modules/golang/stack-profile.yaml +40 -0
  67. package/core/modules/java-spring/architecture-snippets/layered-arch.md +201 -0
  68. package/core/modules/java-spring/module.yaml +15 -0
  69. package/core/modules/java-spring/stack-profile.yaml +28 -0
  70. package/core/modules/nextjs/architecture-snippets/app-router-patterns.md +269 -0
  71. package/core/modules/nextjs/module.yaml +14 -0
  72. package/core/modules/nextjs/stack-profile.yaml +74 -0
  73. package/core/modules/php-laravel/architecture-snippets/service-repository.md +302 -0
  74. package/core/modules/php-laravel/module.yaml +15 -0
  75. package/core/modules/php-laravel/stack-profile.yaml +56 -0
  76. package/core/modules/react/architecture-snippets/hooks-query-patterns.md +254 -0
  77. package/core/modules/react/module.yaml +14 -0
  78. package/core/modules/react/stack-profile.yaml +63 -0
  79. package/core/rules/data-protection.md +80 -0
  80. package/core/rules/workflow.md +44 -0
  81. package/core/skills/code/SKILL.md +526 -0
  82. package/core/skills/debug/SKILL.md +584 -0
  83. package/core/skills/discovery/SKILL.md +363 -0
  84. package/core/skills/prd/SKILL.md +456 -0
  85. package/core/skills/setup-ai-first/SKILL.md +160 -0
  86. package/core/skills/spec/SKILL.md +361 -0
  87. package/core/skills/test/SKILL.md +862 -0
  88. package/core/steps/context-loader.md +163 -0
  89. package/core/steps/gate.md +81 -0
  90. package/core/steps/report-footer.md +53 -0
  91. package/core/steps/spawn-agent.md +123 -0
  92. package/core/templates/architecture.template.md +113 -0
  93. package/core/templates/feature.template +259 -0
  94. package/core/templates/platform-guide.template.md +145 -0
  95. package/core/templates/prd.template.md +312 -0
  96. package/core/templates/product-definition.template.md +168 -0
  97. package/core/templates/project-context.yaml +78 -0
  98. package/hooks/data-guard.js +141 -0
  99. package/hooks/settings.json +18 -0
  100. package/modules/angular/architecture-snippets/component-patterns.md +187 -0
  101. package/modules/angular/module.yaml +6 -0
  102. package/modules/angular/stack-profile.yaml +38 -0
  103. package/modules/context-engineering/architecture-snippets/context-design.md +119 -0
  104. package/modules/context-engineering/module.yaml +9 -0
  105. package/modules/context-engineering/stack-profile.yaml +61 -0
  106. package/modules/dotnet/architecture-snippets/clean-arch.md +160 -0
  107. package/modules/dotnet/module.yaml +6 -0
  108. package/modules/dotnet/stack-profile.yaml +50 -0
  109. package/modules/golang/architecture-snippets/domain-layout.md +283 -0
  110. package/modules/golang/module.yaml +6 -0
  111. package/modules/golang/stack-profile.yaml +40 -0
  112. package/modules/java-spring/architecture-snippets/layered-arch.md +201 -0
  113. package/modules/java-spring/module.yaml +15 -0
  114. package/modules/java-spring/stack-profile.yaml +28 -0
  115. package/modules/nextjs/architecture-snippets/app-router-patterns.md +269 -0
  116. package/modules/nextjs/module.yaml +14 -0
  117. package/modules/nextjs/stack-profile.yaml +74 -0
  118. package/modules/php-laravel/architecture-snippets/service-repository.md +302 -0
  119. package/modules/php-laravel/module.yaml +15 -0
  120. package/modules/php-laravel/stack-profile.yaml +56 -0
  121. package/modules/react/architecture-snippets/hooks-query-patterns.md +254 -0
  122. package/modules/react/module.yaml +14 -0
  123. package/modules/react/stack-profile.yaml +63 -0
  124. package/package.json +42 -0
  125. package/rules/data-protection.md +80 -0
  126. package/rules/workflow.md +44 -0
  127. package/scripts/init.sh +49 -0
  128. package/scripts/upgrade.sh +94 -0
  129. package/skills/code/SKILL.md +526 -0
  130. package/skills/code/SKILL.tmpl +176 -0
  131. package/skills/debug/SKILL.md +584 -0
  132. package/skills/debug/SKILL.tmpl +262 -0
  133. package/skills/discovery/SKILL.md +363 -0
  134. package/skills/discovery/SKILL.tmpl +147 -0
  135. package/skills/prd/SKILL.md +456 -0
  136. package/skills/prd/SKILL.tmpl +188 -0
  137. package/skills/setup-ai-first/SKILL.md +160 -0
  138. package/skills/setup-ai-first/SKILL.tmpl +107 -0
  139. package/skills/spec/SKILL.md +361 -0
  140. package/skills/spec/SKILL.tmpl +174 -0
  141. package/skills/test/SKILL.md +862 -0
  142. package/skills/test/SKILL.tmpl +296 -0
  143. package/steps/context-loader.md +163 -0
  144. package/steps/gate.md +81 -0
  145. package/steps/report-footer.md +53 -0
  146. package/steps/spawn-agent.md +123 -0
  147. package/templates/architecture.template.md +113 -0
  148. package/templates/feature.template +259 -0
  149. package/templates/platform-guide.template.md +145 -0
  150. package/templates/prd.template.md +312 -0
  151. package/templates/product-definition.template.md +168 -0
  152. package/templates/project-context.yaml +78 -0
@@ -0,0 +1,160 @@
1
+ # .NET Clean Architecture — Code Patterns
2
+
3
+ ## Command and Query with MediatR
4
+
5
+ ```csharp
6
+ // Application/Orders/Commands/CreateOrder/CreateOrderCommand.cs
7
+ // @trace.implements=ORDER-UC1-SC1
8
+ public record CreateOrderCommand(
9
+ long CustomerId,
10
+ List<OrderItemDto> Items,
11
+ string ShippingAddress
12
+ ) : IRequest<CreateOrderResult>;
13
+
14
+ // Application/Orders/Commands/CreateOrder/CreateOrderCommandHandler.cs
15
+ public class CreateOrderCommandHandler : IRequestHandler<CreateOrderCommand, CreateOrderResult>
16
+ {
17
+ private readonly IOrderRepository _orderRepository;
18
+ private readonly IUnitOfWork _unitOfWork;
19
+
20
+ public CreateOrderCommandHandler(IOrderRepository orderRepository, IUnitOfWork unitOfWork)
21
+ {
22
+ _orderRepository = orderRepository;
23
+ _unitOfWork = unitOfWork;
24
+ }
25
+
26
+ public async Task<CreateOrderResult> Handle(CreateOrderCommand command, CancellationToken ct)
27
+ {
28
+ var order = Order.Create(command.CustomerId, command.Items, command.ShippingAddress);
29
+ await _orderRepository.AddAsync(order, ct);
30
+ await _unitOfWork.SaveChangesAsync(ct);
31
+ return new CreateOrderResult(order.Id, order.Status.ToString());
32
+ }
33
+ }
34
+
35
+ // Application/Orders/Queries/GetOrder/GetOrderQuery.cs
36
+ // @trace.implements=ORDER-UC1-SC2
37
+ public record GetOrderQuery(long OrderId) : IRequest<OrderDto>;
38
+ ```
39
+
40
+ ## FluentValidation for Commands
41
+
42
+ ```csharp
43
+ // Application/Orders/Commands/CreateOrder/CreateOrderCommandValidator.cs
44
+ public class CreateOrderCommandValidator : AbstractValidator<CreateOrderCommand>
45
+ {
46
+ public CreateOrderCommandValidator()
47
+ {
48
+ RuleFor(x => x.CustomerId).GreaterThan(0);
49
+ RuleFor(x => x.Items).NotEmpty().WithMessage("Order must have at least one item.");
50
+ RuleFor(x => x.ShippingAddress).NotEmpty().MaximumLength(500);
51
+ RuleForEach(x => x.Items).ChildRules(item =>
52
+ {
53
+ item.RuleFor(i => i.ProductId).GreaterThan(0);
54
+ item.RuleFor(i => i.Quantity).InclusiveBetween(1, 999);
55
+ });
56
+ }
57
+ }
58
+ ```
59
+
60
+ ## Domain Entity Pattern
61
+
62
+ ```csharp
63
+ // Domain/Entities/Order.cs
64
+ public class Order : BaseEntity
65
+ {
66
+ private readonly List<OrderItem> _items = new();
67
+
68
+ public long CustomerId { get; private set; }
69
+ public OrderStatus Status { get; private set; }
70
+ public string ShippingAddress { get; private set; } = string.Empty;
71
+ public IReadOnlyCollection<OrderItem> Items => _items.AsReadOnly();
72
+ public decimal TotalAmount => _items.Sum(i => i.Subtotal);
73
+
74
+ private Order() { } // EF Core constructor
75
+
76
+ public static Order Create(long customerId, IEnumerable<OrderItemDto> items, string shippingAddress)
77
+ {
78
+ var order = new Order
79
+ {
80
+ CustomerId = customerId,
81
+ ShippingAddress = shippingAddress,
82
+ Status = OrderStatus.Pending,
83
+ CreatedAt = DateTime.UtcNow
84
+ };
85
+
86
+ foreach (var item in items)
87
+ order._items.Add(OrderItem.Create(item.ProductId, item.Quantity, item.UnitPrice));
88
+
89
+ order.AddDomainEvent(new OrderCreatedEvent(order.Id, order.CustomerId));
90
+ return order;
91
+ }
92
+
93
+ public void Cancel()
94
+ {
95
+ if (Status == OrderStatus.Shipped)
96
+ throw new DomainException("Cannot cancel an order that has already been shipped.");
97
+ Status = OrderStatus.Cancelled;
98
+ }
99
+ }
100
+ ```
101
+
102
+ ## Repository Implementation with EF Core
103
+
104
+ ```csharp
105
+ // Infrastructure/Persistence/Repositories/OrderRepository.cs
106
+ public class OrderRepository : IOrderRepository
107
+ {
108
+ private readonly AppDbContext _context;
109
+
110
+ public OrderRepository(AppDbContext context) => _context = context;
111
+
112
+ public async Task<Order?> GetByIdAsync(long id, CancellationToken ct = default)
113
+ => await _context.Orders
114
+ .Include(o => o.Items)
115
+ .FirstOrDefaultAsync(o => o.Id == id, ct);
116
+
117
+ public async Task AddAsync(Order order, CancellationToken ct = default)
118
+ => await _context.Orders.AddAsync(order, ct);
119
+
120
+ public async Task<IReadOnlyList<Order>> GetByCustomerAsync(long customerId, CancellationToken ct = default)
121
+ => await _context.Orders
122
+ .Where(o => o.CustomerId == customerId)
123
+ .OrderByDescending(o => o.CreatedAt)
124
+ .ToListAsync(ct);
125
+ }
126
+ ```
127
+
128
+ ## Minimal API Controller Pattern
129
+
130
+ ```csharp
131
+ // Presentation/Endpoints/OrderEndpoints.cs
132
+ // @trace.implements=ORDER-UC1
133
+ public static class OrderEndpoints
134
+ {
135
+ public static void MapOrderEndpoints(this IEndpointRouteBuilder app)
136
+ {
137
+ var group = app.MapGroup("/v1/orders").RequireAuthorization();
138
+
139
+ // @trace.implements=ORDER-UC1-SC1
140
+ group.MapPost("/", async (CreateOrderCommand command, IMediator mediator, CancellationToken ct) =>
141
+ {
142
+ var result = await mediator.Send(command, ct);
143
+ return Results.Created($"/v1/orders/{result.Id}", result);
144
+ })
145
+ .WithName("CreateOrder")
146
+ .Produces<CreateOrderResult>(StatusCodes.Status201Created)
147
+ .ProducesValidationProblem();
148
+
149
+ // @trace.implements=ORDER-UC1-SC2
150
+ group.MapGet("/{id:long}", async (long id, IMediator mediator, CancellationToken ct) =>
151
+ {
152
+ var result = await mediator.Send(new GetOrderQuery(id), ct);
153
+ return result is null ? Results.NotFound() : Results.Ok(result);
154
+ })
155
+ .WithName("GetOrder")
156
+ .Produces<OrderDto>()
157
+ .Produces(StatusCodes.Status404NotFound);
158
+ }
159
+ }
160
+ ```
@@ -0,0 +1,6 @@
1
+ name: ".NET"
2
+ version: "1.0.0"
3
+ description: ".NET 8 with Clean Architecture"
4
+ language: "C#"
5
+ framework: ".NET 8 / ASP.NET Core"
6
+ stack_type: "backend"
@@ -0,0 +1,50 @@
1
+ build:
2
+ compile: "dotnet build"
3
+ test: "dotnet test"
4
+ run: "dotnet run --project src/{ProjectName}.Api"
5
+
6
+ architecture:
7
+ style: "Clean Architecture"
8
+ layers:
9
+ - name: "Domain"
10
+ contains: "Entities, Value Objects, Domain Events, Interfaces"
11
+ rules:
12
+ - "No dependencies on outer layers"
13
+ - "Pure business logic only"
14
+ - name: "Application"
15
+ contains: "Commands, Queries, Handlers (MediatR), DTOs, Validators"
16
+ rules:
17
+ - "Depends only on Domain"
18
+ - "All use cases are Commands or Queries"
19
+ - "Validation via FluentValidation"
20
+ - name: "Infrastructure"
21
+ contains: "EF Core DbContext, Repository implementations, External service adapters"
22
+ rules:
23
+ - "Implements interfaces from Application and Domain"
24
+ - "No business logic"
25
+ - name: "Presentation"
26
+ contains: "Controllers (or Minimal API endpoints), Middleware"
27
+ rules:
28
+ - "Dispatches to MediatR only"
29
+ - "No direct service injection (only IMediator)"
30
+
31
+ coding_standards:
32
+ naming:
33
+ classes: "PascalCase"
34
+ methods: "PascalCase"
35
+ interfaces: "IPascalCase (with I prefix)"
36
+ async_methods: "PascalCase + Async suffix (e.g., GetOrderAsync)"
37
+ patterns:
38
+ cqrs: "MediatR — IRequest<T> for commands/queries, IRequestHandler<T,R> for handlers"
39
+ validation: "FluentValidation — one AbstractValidator<T> per command/query"
40
+ error_handling: "Result pattern or domain exceptions, caught by global middleware"
41
+ response_type: "IActionResult with ProblemDetails for errors (RFC 7807)"
42
+
43
+ testing:
44
+ unit: "xUnit + Moq + FluentAssertions"
45
+ integration: "WebApplicationFactory<Program> + Testcontainers"
46
+ patterns:
47
+ - "Arrange / Act / Assert structure"
48
+ - "Method names: MethodName_WhenCondition_ShouldExpectation"
49
+ - "Use FluentAssertions for readable assertions"
50
+ - "Mock only the direct dependencies of the unit under test"
@@ -0,0 +1,283 @@
1
+ # Go — Domain-Driven Layout Code Patterns
2
+
3
+ ## Domain Model
4
+
5
+ ```go
6
+ // internal/domain/order.go
7
+ package domain
8
+
9
+ import (
10
+ "errors"
11
+ "time"
12
+ )
13
+
14
+ // OrderStatus represents the lifecycle state of an order.
15
+ type OrderStatus string
16
+
17
+ const (
18
+ OrderStatusPending OrderStatus = "PENDING"
19
+ OrderStatusConfirmed OrderStatus = "CONFIRMED"
20
+ OrderStatusShipped OrderStatus = "SHIPPED"
21
+ OrderStatusCancelled OrderStatus = "CANCELLED"
22
+ )
23
+
24
+ // Order is the aggregate root for the order domain.
25
+ type Order struct {
26
+ ID int64
27
+ CustomerID int64
28
+ Status OrderStatus
29
+ Items []OrderItem
30
+ ShippingAddress string
31
+ CreatedAt time.Time
32
+ UpdatedAt time.Time
33
+ }
34
+
35
+ // OrderItem represents a single line item within an order.
36
+ type OrderItem struct {
37
+ ProductID int64
38
+ Quantity int
39
+ UnitPrice float64
40
+ }
41
+
42
+ // TotalAmount calculates the total order value.
43
+ func (o *Order) TotalAmount() float64 {
44
+ var total float64
45
+ for _, item := range o.Items {
46
+ total += float64(item.Quantity) * item.UnitPrice
47
+ }
48
+ return total
49
+ }
50
+
51
+ // Cancel transitions the order to CANCELLED status.
52
+ func (o *Order) Cancel() error {
53
+ if o.Status == OrderStatusShipped {
54
+ return errors.New("cannot cancel an order that has already been shipped")
55
+ }
56
+ o.Status = OrderStatusCancelled
57
+ return nil
58
+ }
59
+ ```
60
+
61
+ ## Repository Interface (defined in domain)
62
+
63
+ ```go
64
+ // internal/domain/order_repository.go
65
+ package domain
66
+
67
+ import "context"
68
+
69
+ // OrderRepository defines persistence operations for orders.
70
+ // Implementations live in internal/repo/.
71
+ type OrderRepository interface {
72
+ GetByID(ctx context.Context, id int64) (*Order, error)
73
+ GetByCustomerID(ctx context.Context, customerID int64) ([]*Order, error)
74
+ Create(ctx context.Context, order *Order) error
75
+ Update(ctx context.Context, order *Order) error
76
+ }
77
+ ```
78
+
79
+ ## Use Case (business logic)
80
+
81
+ ```go
82
+ // internal/usecase/order_usecase.go
83
+ // @trace.implements=ORDER-UC1
84
+ package usecase
85
+
86
+ import (
87
+ "context"
88
+ "fmt"
89
+ "myapp/internal/domain"
90
+ "time"
91
+ )
92
+
93
+ // OrderUseCase handles all order-related business operations.
94
+ type OrderUseCase struct {
95
+ repo domain.OrderRepository
96
+ }
97
+
98
+ // NewOrderUseCase creates a new OrderUseCase with required dependencies.
99
+ func NewOrderUseCase(repo domain.OrderRepository) *OrderUseCase {
100
+ return &OrderUseCase{repo: repo}
101
+ }
102
+
103
+ // CreateOrderRequest holds input data for creating an order.
104
+ type CreateOrderRequest struct {
105
+ CustomerID int64
106
+ Items []domain.OrderItem
107
+ ShippingAddress string
108
+ }
109
+
110
+ // CreateOrder creates a new order for a customer.
111
+ // @trace.implements=ORDER-UC1-SC1
112
+ func (uc *OrderUseCase) CreateOrder(ctx context.Context, req CreateOrderRequest) (*domain.Order, error) {
113
+ if len(req.Items) == 0 {
114
+ return nil, fmt.Errorf("order must contain at least one item")
115
+ }
116
+
117
+ order := &domain.Order{
118
+ CustomerID: req.CustomerID,
119
+ Status: domain.OrderStatusPending,
120
+ Items: req.Items,
121
+ ShippingAddress: req.ShippingAddress,
122
+ CreatedAt: time.Now(),
123
+ }
124
+
125
+ if err := uc.repo.Create(ctx, order); err != nil {
126
+ return nil, fmt.Errorf("create order: %w", err)
127
+ }
128
+ return order, nil
129
+ }
130
+
131
+ // GetOrder retrieves an order by ID.
132
+ // @trace.implements=ORDER-UC1-SC2
133
+ func (uc *OrderUseCase) GetOrder(ctx context.Context, id int64) (*domain.Order, error) {
134
+ order, err := uc.repo.GetByID(ctx, id)
135
+ if err != nil {
136
+ return nil, fmt.Errorf("get order %d: %w", id, err)
137
+ }
138
+ if order == nil {
139
+ return nil, domain.ErrNotFound
140
+ }
141
+ return order, nil
142
+ }
143
+ ```
144
+
145
+ ## HTTP Handler (Gin)
146
+
147
+ ```go
148
+ // internal/handler/order_handler.go
149
+ // @trace.implements=ORDER-UC1
150
+ package handler
151
+
152
+ import (
153
+ "errors"
154
+ "net/http"
155
+ "strconv"
156
+
157
+ "github.com/gin-gonic/gin"
158
+ "myapp/internal/domain"
159
+ "myapp/internal/usecase"
160
+ )
161
+
162
+ // OrderHandler handles HTTP requests for order operations.
163
+ type OrderHandler struct {
164
+ uc *usecase.OrderUseCase
165
+ }
166
+
167
+ // NewOrderHandler creates a new OrderHandler.
168
+ func NewOrderHandler(uc *usecase.OrderUseCase) *OrderHandler {
169
+ return &OrderHandler{uc: uc}
170
+ }
171
+
172
+ // RegisterRoutes registers all order endpoints on the given router group.
173
+ func (h *OrderHandler) RegisterRoutes(r *gin.RouterGroup) {
174
+ r.POST("/orders", h.CreateOrder) // @trace.implements=ORDER-UC1-SC1
175
+ r.GET("/orders/:id", h.GetOrder) // @trace.implements=ORDER-UC1-SC2
176
+ }
177
+
178
+ // CreateOrder handles POST /v1/orders.
179
+ func (h *OrderHandler) CreateOrder(c *gin.Context) {
180
+ var req usecase.CreateOrderRequest
181
+ if err := c.ShouldBindJSON(&req); err != nil {
182
+ c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
183
+ return
184
+ }
185
+ order, err := h.uc.CreateOrder(c.Request.Context(), req)
186
+ if err != nil {
187
+ c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
188
+ return
189
+ }
190
+ c.JSON(http.StatusCreated, order)
191
+ }
192
+
193
+ // GetOrder handles GET /v1/orders/:id.
194
+ func (h *OrderHandler) GetOrder(c *gin.Context) {
195
+ id, err := strconv.ParseInt(c.Param("id"), 10, 64)
196
+ if err != nil {
197
+ c.JSON(http.StatusBadRequest, gin.H{"error": "invalid order id"})
198
+ return
199
+ }
200
+ order, err := h.uc.GetOrder(c.Request.Context(), id)
201
+ if errors.Is(err, domain.ErrNotFound) {
202
+ c.JSON(http.StatusNotFound, gin.H{"error": "order not found"})
203
+ return
204
+ }
205
+ if err != nil {
206
+ c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
207
+ return
208
+ }
209
+ c.JSON(http.StatusOK, order)
210
+ }
211
+ ```
212
+
213
+ ## Table-Driven Test Pattern
214
+
215
+ ```go
216
+ // internal/usecase/order_usecase_test.go
217
+ // @trace.verifies=ORDER-UC1
218
+ // @trace.test_type=unit
219
+ package usecase_test
220
+
221
+ import (
222
+ "context"
223
+ "testing"
224
+
225
+ "github.com/stretchr/testify/assert"
226
+ "github.com/stretchr/testify/mock"
227
+ "myapp/internal/domain"
228
+ "myapp/internal/usecase"
229
+ )
230
+
231
+ func TestOrderUseCase_CreateOrder(t *testing.T) {
232
+ tests := []struct {
233
+ name string
234
+ request usecase.CreateOrderRequest
235
+ setupMock func(*MockOrderRepository)
236
+ expectError bool
237
+ expectOrder bool
238
+ }{
239
+ {
240
+ name: "valid order with items should create successfully",
241
+ request: usecase.CreateOrderRequest{
242
+ CustomerID: 1,
243
+ Items: []domain.OrderItem{{ProductID: 10, Quantity: 2, UnitPrice: 99.9}},
244
+ ShippingAddress: "123 Main St",
245
+ },
246
+ setupMock: func(m *MockOrderRepository) {
247
+ m.On("Create", mock.Anything, mock.AnythingOfType("*domain.Order")).Return(nil)
248
+ },
249
+ expectError: false,
250
+ expectOrder: true,
251
+ },
252
+ {
253
+ name: "empty items should return validation error",
254
+ request: usecase.CreateOrderRequest{
255
+ CustomerID: 1,
256
+ Items: []domain.OrderItem{},
257
+ },
258
+ setupMock: func(m *MockOrderRepository) {},
259
+ expectError: true,
260
+ expectOrder: false,
261
+ },
262
+ }
263
+
264
+ for _, tt := range tests {
265
+ t.Run(tt.name, func(t *testing.T) {
266
+ mockRepo := new(MockOrderRepository)
267
+ tt.setupMock(mockRepo)
268
+ uc := usecase.NewOrderUseCase(mockRepo)
269
+
270
+ order, err := uc.CreateOrder(context.Background(), tt.request)
271
+
272
+ if tt.expectError {
273
+ assert.Error(t, err)
274
+ assert.Nil(t, order)
275
+ } else {
276
+ assert.NoError(t, err)
277
+ assert.NotNil(t, order)
278
+ }
279
+ mockRepo.AssertExpectations(t)
280
+ })
281
+ }
282
+ }
283
+ ```
@@ -0,0 +1,6 @@
1
+ name: "Go"
2
+ version: "1.0.0"
3
+ description: "Go with domain-driven layout"
4
+ language: "Go"
5
+ framework: "Standard library / Gin / Echo"
6
+ stack_type: "backend"
@@ -0,0 +1,40 @@
1
+ build:
2
+ compile: "go build ./..."
3
+ test: "go test ./..."
4
+ run: "go run ./cmd/{service-name}"
5
+
6
+ architecture:
7
+ style: "Domain-driven layout"
8
+ directory_structure:
9
+ cmd/: "Main entry points, one per binary (e.g., cmd/api/main.go)"
10
+ internal/domain/: "Domain entities, interfaces, and business rules"
11
+ internal/repo/: "Repository implementations (DB, cache)"
12
+ internal/handler/: "HTTP handlers (Gin/Echo) — thin, delegate to use cases"
13
+ internal/usecase/: "Use case implementations (business logic)"
14
+ pkg/: "Reusable packages safe for external use"
15
+ config/: "Configuration loading (env vars, YAML)"
16
+ key_rules:
17
+ - "Define interfaces in the consumer package (dependency inversion)"
18
+ - "internal/ packages cannot be imported outside the module"
19
+ - "Handlers must not contain business logic — only parse, call use case, respond"
20
+ - "Use cases own business rules and call repository interfaces"
21
+ - "Repositories implement persistence — never call use cases"
22
+
23
+ coding_standards:
24
+ naming:
25
+ packages: "lowercase single word (e.g., order, handler, repo)"
26
+ interfaces: "Describe behavior, no 'I' prefix (e.g., OrderRepository, not IOrderRepository)"
27
+ structs: "PascalCase for exported, camelCase for unexported"
28
+ methods: "PascalCase for exported, camelCase for unexported"
29
+ patterns:
30
+ error_handling: "Return error as last return value; use errors.Is/As; wrap with fmt.Errorf(\"...: %w\", err)"
31
+ interfaces: "Define small interfaces at point of use; prefer 1-2 method interfaces"
32
+ constructors: "NewXxx(deps...) *Xxx — always use constructor functions"
33
+
34
+ testing:
35
+ framework: "Standard library testing package + testify"
36
+ patterns:
37
+ - "Table-driven tests for all cases"
38
+ - "Use testify/assert and testify/mock"
39
+ - "Test file: {file}_test.go in same package (white-box) or {pkg}_test package (black-box)"
40
+ - "Integration tests in internal/{pkg}/integration_test.go with build tag //go:build integration"