slopbrick 0.15.0 → 0.17.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.
package/README.md CHANGED
@@ -46,7 +46,7 @@ on every scan — your repository, encoded for the next agent.
46
46
  lib, modal system, API client) once. The agent and the linter
47
47
  enforce it together.
48
48
 
49
- **Status:** v0.15.0 (current). See the [CHANGELOG](./CHANGELOG.md) for
49
+ **Status:** v0.16.0 (current). See the [CHANGELOG](./CHANGELOG.md) for
50
50
  the full release notes.
51
51
 
52
52
  ---
@@ -76,22 +76,21 @@ For every other config question, see [`EXAMPLES.md`](./EXAMPLES.md).
76
76
 
77
77
  ---
78
78
 
79
- ## The headlines (v0.15.0+ — 4-score model)
79
+ ## The headlines (4-score model, v0.16.0+)
80
80
 
81
- > **v0.15.0 breaking change:** The single `Slop Index` is replaced by
82
- > **4 independent scores** (all 0-100, **higher = better**). The legacy
83
- > `slopIndex` field is kept as optional on `ProjectReport` for backward
84
- > compat with existing test fixtures and historical telemetry; will be
85
- > removed in v0.16.0.
81
+ > **v0.15.0 introduced the 4-score model; v0.16.0 R3 completed it.**
82
+ > The single `Slop Index` is replaced by **4 independent scores**
83
+ > (all 0-100, **higher = better**). The legacy `slopIndex` field
84
+ > is kept as optional on `ProjectReport` for backward compat with
85
+ > existing test fixtures and historical telemetry; the v0.14-compat
86
+ > removal is tracked separately.
86
87
 
87
88
  | Score | What it measures | CI gate? |
88
89
  |-------|------------------|----------|
89
- | **`AI Quality`** | How good the AI-generated code is (USEFUL + OK rules) | **Yes** (≥ 70 passes) |
90
- | **`Engineering Hygiene`** | Internal consistency one stack, one pattern, no drift | No (informational) |
91
- | **`Security`** | Security findings (security/* rules) | No (informational) |
92
- | **`Repository Health`** (composite) | Weighted sum of the 3 + secondary signals | No (informational) |
93
-
94
- `AI Quality` is composed of boundary (40%) + context (35%) + visual (25%).
90
+ | **`aiQuality`** | AI-slop signatures (16 `ai/*` rules). INVERTED from legacy Slop Index. | **Yes** (≥ 70 passes) |
91
+ | **`engineeringHygiene`** | Average of 6 category scores: arch, logic, layout, visual, component, test | No (informational) |
92
+ | **`security`** | AI Security Risk band: low=100, medium=67, high=33, critical=0 | No (informational) |
93
+ | **`repositoryHealth`** (composite) | Weighted: 0.4×aiQ + 0.3×eng + 0.2×sec + 0.1×test | No (informational) |
95
94
 
96
95
  The same numbers are in `.slopbrick/health.json`.
97
96