WIP: stage all uncommitted work — sprints 46-221, graduation headers, specialist fleet, test steps 909-1988

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Bill
2026-04-22 10:15:48 -06:00
parent 486940cbe4
commit 72ffee68fa
2179 changed files with 82979 additions and 1150 deletions

View File

@@ -0,0 +1,9 @@
# java_order_service
- stack: java
- validator: mvn -q test
- common_failure_modes: null checks, quantity rules, test gaps
## Scope
Small representative project for training data generation.

View File

@@ -0,0 +1,7 @@
# Task Seeds: java_order_service
src/main/java/app/*.java
## Validator
`mvn -q test`

View File

@@ -0,0 +1,2 @@
package app;
public record Order(String id, int quantity) {}

View File

@@ -0,0 +1,6 @@
package app;
public class OrderValidator {
public static boolean valid(Order order) {
return order != null && order.quantity() > 0;
}
}