theslopmachine 1.0.9 → 1.0.10

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.
@@ -25,9 +25,11 @@ Accept `./docs/design.md` only if it:
25
25
  - defines modules as product/system responsibilities, not file-by-file work packets
26
26
  - handles auth, authorization, ownership/isolation, validation, logging/redaction, admin/debug boundaries, and sensitive data where relevant
27
27
  - defines frontend states and FE-BE expectations where relevant
28
+ - visibly defines the testing contract in the design itself: 90%+ unit coverage target for meaningful business logic, API/interface tests for every endpoint with positive and negative cases, and full E2E/platform coverage for main user journeys in user-facing apps
29
+ - gives explicit not-applicable reasons and replacement proof layers for any missing unit/API/E2E coverage surface
28
30
  - avoids vague placeholders such as `TBD`, `later`, `standard CRUD`, `normal auth`, or `basic tests` for correctness-critical behavior
29
31
 
30
- Reject the design if it drops prompt meaning, over-expands scope without justification, hides major product decisions, or turns demo/shell behavior into acceptable delivery.
32
+ Reject the design if it drops prompt meaning, over-expands scope without justification, hides major product decisions, turns demo/shell behavior into acceptable delivery, or leaves full test planning to later implementation instead of making it part of the visible design contract.
31
33
 
32
34
  ## API Spec Acceptance
33
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "theslopmachine",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "SlopMachine installer and project bootstrap CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",