slopbrick 0.26.0 → 0.26.1
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/dist/engine/worker.cjs +5 -5
- package/dist/engine/worker.js +5 -5
- package/dist/index.cjs +6 -6
- package/dist/index.js +6 -6
- package/package.json +1 -1
package/dist/engine/worker.cjs
CHANGED
|
@@ -44193,7 +44193,7 @@ var signal_strength_default = {
|
|
|
44193
44193
|
precision: 0,
|
|
44194
44194
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
44195
44195
|
verdict: "DORMANT",
|
|
44196
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a small Java file (< 200 lines) has 3+ Javadoc tags with density >= 0.05.
|
|
44196
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a small Java file (< 200 lines) has 3+ Javadoc tags with density >= 0.05. v0.26.1 CALIBRATION (14769-file biased sample from v9-java corpus, files that fired >=1 of the 6 existing java rules): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. The v0.26.0 intuition that 'AI over-documents trivial methods' is NOT supported by the v9 corpus \u2014 AI code in Spring AI, LangChain4j, etc. has the same Javadoc density as human code. v0.20 hypothesis (humans avoid println/Date/raw types) and v0.26 hypothesis (AI over-documents/over-Opts/over-Builders) are both wrong for the v9 corpus. v0.27+ will redesign with a different approach: either train a classifier on the v9 features or use AST-based detection rather than regex heuristics. Reference: java/verbose-javadoc v0.26.0; calibration v0.26.1.",
|
|
44197
44197
|
aiSpecific: true,
|
|
44198
44198
|
_v9Verdict: "DORMANT",
|
|
44199
44199
|
_v9Lift: 1,
|
|
@@ -44209,7 +44209,7 @@ var signal_strength_default = {
|
|
|
44209
44209
|
precision: 0,
|
|
44210
44210
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
44211
44211
|
verdict: "DORMANT",
|
|
44212
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 2+ .orElseThrow() calls AND 0 Objects.requireNonNull()/null checks (optionalRatio > 0.6).
|
|
44212
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 2+ .orElseThrow() calls AND 0 Objects.requireNonNull()/null checks (optionalRatio > 0.6). v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI in the v9 corpus does NOT use Optional chains more than humans. v0.27+ will redesign. Reference: java/optional-overuse v0.26.0; calibration v0.26.1.",
|
|
44213
44213
|
aiSpecific: true,
|
|
44214
44214
|
_v9Verdict: "DORMANT",
|
|
44215
44215
|
_v9Lift: 1,
|
|
@@ -44225,7 +44225,7 @@ var signal_strength_default = {
|
|
|
44225
44225
|
precision: 0,
|
|
44226
44226
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
44227
44227
|
verdict: "DORMANT",
|
|
44228
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 5+ List.of/Map.of/Set.of calls AND < 1 new ArrayList/HashMap/HashSet/LinkedList/TreeMap calls.
|
|
44228
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 5+ List.of/Map.of/Set.of calls AND < 1 new ArrayList/HashMap/HashSet/LinkedList/TreeMap calls. v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI does NOT use immutable factory methods more than humans. v0.27+ will redesign. Reference: java/immutable-collection-preference v0.26.0; calibration v0.26.1.",
|
|
44229
44229
|
aiSpecific: true,
|
|
44230
44230
|
_v9Verdict: "DORMANT",
|
|
44231
44231
|
_v9Lift: 1,
|
|
@@ -44241,7 +44241,7 @@ var signal_strength_default = {
|
|
|
44241
44241
|
precision: 0,
|
|
44242
44242
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
44243
44243
|
verdict: "DORMANT",
|
|
44244
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when @Builder annotation (Lombok) is used on a class with <= 3 fields.
|
|
44244
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when @Builder annotation (Lombok) is used on a class with <= 3 fields. v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI does NOT use @Builder on small classes more than humans. v0.27+ will redesign. Reference: java/builder-overuse v0.26.0; calibration v0.26.1.",
|
|
44245
44245
|
aiSpecific: true,
|
|
44246
44246
|
_v9Verdict: "DORMANT",
|
|
44247
44247
|
_v9Lift: 1,
|
|
@@ -44257,7 +44257,7 @@ var signal_strength_default = {
|
|
|
44257
44257
|
precision: 0,
|
|
44258
44258
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
44259
44259
|
verdict: "DORMANT",
|
|
44260
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a single line has 3+ Stream API operations (.map, .filter, .flatMap, .collect, .reduce, .sorted, .distinct, .limit, .skip, .anyMatch, .allMatch, .noneMatch, .findFirst, .findAny).
|
|
44260
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a single line has 3+ Stream API operations (.map, .filter, .flatMap, .collect, .reduce, .sorted, .distinct, .limit, .skip, .anyMatch, .allMatch, .noneMatch, .findFirst, .findAny). v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI does NOT use Stream API chains more than humans. v0.27+ will redesign. Reference: java/stream-overuse v0.26.0; calibration v0.26.1.",
|
|
44261
44261
|
aiSpecific: true,
|
|
44262
44262
|
_v9Verdict: "DORMANT",
|
|
44263
44263
|
_v9Lift: 1,
|
package/dist/engine/worker.js
CHANGED
|
@@ -44164,7 +44164,7 @@ var signal_strength_default = {
|
|
|
44164
44164
|
precision: 0,
|
|
44165
44165
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
44166
44166
|
verdict: "DORMANT",
|
|
44167
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a small Java file (< 200 lines) has 3+ Javadoc tags with density >= 0.05.
|
|
44167
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a small Java file (< 200 lines) has 3+ Javadoc tags with density >= 0.05. v0.26.1 CALIBRATION (14769-file biased sample from v9-java corpus, files that fired >=1 of the 6 existing java rules): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. The v0.26.0 intuition that 'AI over-documents trivial methods' is NOT supported by the v9 corpus \u2014 AI code in Spring AI, LangChain4j, etc. has the same Javadoc density as human code. v0.20 hypothesis (humans avoid println/Date/raw types) and v0.26 hypothesis (AI over-documents/over-Opts/over-Builders) are both wrong for the v9 corpus. v0.27+ will redesign with a different approach: either train a classifier on the v9 features or use AST-based detection rather than regex heuristics. Reference: java/verbose-javadoc v0.26.0; calibration v0.26.1.",
|
|
44168
44168
|
aiSpecific: true,
|
|
44169
44169
|
_v9Verdict: "DORMANT",
|
|
44170
44170
|
_v9Lift: 1,
|
|
@@ -44180,7 +44180,7 @@ var signal_strength_default = {
|
|
|
44180
44180
|
precision: 0,
|
|
44181
44181
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
44182
44182
|
verdict: "DORMANT",
|
|
44183
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 2+ .orElseThrow() calls AND 0 Objects.requireNonNull()/null checks (optionalRatio > 0.6).
|
|
44183
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 2+ .orElseThrow() calls AND 0 Objects.requireNonNull()/null checks (optionalRatio > 0.6). v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI in the v9 corpus does NOT use Optional chains more than humans. v0.27+ will redesign. Reference: java/optional-overuse v0.26.0; calibration v0.26.1.",
|
|
44184
44184
|
aiSpecific: true,
|
|
44185
44185
|
_v9Verdict: "DORMANT",
|
|
44186
44186
|
_v9Lift: 1,
|
|
@@ -44196,7 +44196,7 @@ var signal_strength_default = {
|
|
|
44196
44196
|
precision: 0,
|
|
44197
44197
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
44198
44198
|
verdict: "DORMANT",
|
|
44199
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 5+ List.of/Map.of/Set.of calls AND < 1 new ArrayList/HashMap/HashSet/LinkedList/TreeMap calls.
|
|
44199
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 5+ List.of/Map.of/Set.of calls AND < 1 new ArrayList/HashMap/HashSet/LinkedList/TreeMap calls. v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI does NOT use immutable factory methods more than humans. v0.27+ will redesign. Reference: java/immutable-collection-preference v0.26.0; calibration v0.26.1.",
|
|
44200
44200
|
aiSpecific: true,
|
|
44201
44201
|
_v9Verdict: "DORMANT",
|
|
44202
44202
|
_v9Lift: 1,
|
|
@@ -44212,7 +44212,7 @@ var signal_strength_default = {
|
|
|
44212
44212
|
precision: 0,
|
|
44213
44213
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
44214
44214
|
verdict: "DORMANT",
|
|
44215
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when @Builder annotation (Lombok) is used on a class with <= 3 fields.
|
|
44215
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when @Builder annotation (Lombok) is used on a class with <= 3 fields. v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI does NOT use @Builder on small classes more than humans. v0.27+ will redesign. Reference: java/builder-overuse v0.26.0; calibration v0.26.1.",
|
|
44216
44216
|
aiSpecific: true,
|
|
44217
44217
|
_v9Verdict: "DORMANT",
|
|
44218
44218
|
_v9Lift: 1,
|
|
@@ -44228,7 +44228,7 @@ var signal_strength_default = {
|
|
|
44228
44228
|
precision: 0,
|
|
44229
44229
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
44230
44230
|
verdict: "DORMANT",
|
|
44231
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a single line has 3+ Stream API operations (.map, .filter, .flatMap, .collect, .reduce, .sorted, .distinct, .limit, .skip, .anyMatch, .allMatch, .noneMatch, .findFirst, .findAny).
|
|
44231
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a single line has 3+ Stream API operations (.map, .filter, .flatMap, .collect, .reduce, .sorted, .distinct, .limit, .skip, .anyMatch, .allMatch, .noneMatch, .findFirst, .findAny). v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI does NOT use Stream API chains more than humans. v0.27+ will redesign. Reference: java/stream-overuse v0.26.0; calibration v0.26.1.",
|
|
44232
44232
|
aiSpecific: true,
|
|
44233
44233
|
_v9Verdict: "DORMANT",
|
|
44234
44234
|
_v9Lift: 1,
|
package/dist/index.cjs
CHANGED
|
@@ -36,7 +36,7 @@ var VERSION;
|
|
|
36
36
|
var init_header = __esm({
|
|
37
37
|
"src/types/_header.ts"() {
|
|
38
38
|
"use strict";
|
|
39
|
-
VERSION = "0.26.
|
|
39
|
+
VERSION = "0.26.1";
|
|
40
40
|
}
|
|
41
41
|
});
|
|
42
42
|
|
|
@@ -50288,7 +50288,7 @@ var init_signal_strength = __esm({
|
|
|
50288
50288
|
precision: 0,
|
|
50289
50289
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
50290
50290
|
verdict: "DORMANT",
|
|
50291
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a small Java file (< 200 lines) has 3+ Javadoc tags with density >= 0.05.
|
|
50291
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a small Java file (< 200 lines) has 3+ Javadoc tags with density >= 0.05. v0.26.1 CALIBRATION (14769-file biased sample from v9-java corpus, files that fired >=1 of the 6 existing java rules): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. The v0.26.0 intuition that 'AI over-documents trivial methods' is NOT supported by the v9 corpus \u2014 AI code in Spring AI, LangChain4j, etc. has the same Javadoc density as human code. v0.20 hypothesis (humans avoid println/Date/raw types) and v0.26 hypothesis (AI over-documents/over-Opts/over-Builders) are both wrong for the v9 corpus. v0.27+ will redesign with a different approach: either train a classifier on the v9 features or use AST-based detection rather than regex heuristics. Reference: java/verbose-javadoc v0.26.0; calibration v0.26.1.",
|
|
50292
50292
|
aiSpecific: true,
|
|
50293
50293
|
_v9Verdict: "DORMANT",
|
|
50294
50294
|
_v9Lift: 1,
|
|
@@ -50304,7 +50304,7 @@ var init_signal_strength = __esm({
|
|
|
50304
50304
|
precision: 0,
|
|
50305
50305
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
50306
50306
|
verdict: "DORMANT",
|
|
50307
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 2+ .orElseThrow() calls AND 0 Objects.requireNonNull()/null checks (optionalRatio > 0.6).
|
|
50307
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 2+ .orElseThrow() calls AND 0 Objects.requireNonNull()/null checks (optionalRatio > 0.6). v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI in the v9 corpus does NOT use Optional chains more than humans. v0.27+ will redesign. Reference: java/optional-overuse v0.26.0; calibration v0.26.1.",
|
|
50308
50308
|
aiSpecific: true,
|
|
50309
50309
|
_v9Verdict: "DORMANT",
|
|
50310
50310
|
_v9Lift: 1,
|
|
@@ -50320,7 +50320,7 @@ var init_signal_strength = __esm({
|
|
|
50320
50320
|
precision: 0,
|
|
50321
50321
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
50322
50322
|
verdict: "DORMANT",
|
|
50323
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 5+ List.of/Map.of/Set.of calls AND < 1 new ArrayList/HashMap/HashSet/LinkedList/TreeMap calls.
|
|
50323
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 5+ List.of/Map.of/Set.of calls AND < 1 new ArrayList/HashMap/HashSet/LinkedList/TreeMap calls. v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI does NOT use immutable factory methods more than humans. v0.27+ will redesign. Reference: java/immutable-collection-preference v0.26.0; calibration v0.26.1.",
|
|
50324
50324
|
aiSpecific: true,
|
|
50325
50325
|
_v9Verdict: "DORMANT",
|
|
50326
50326
|
_v9Lift: 1,
|
|
@@ -50336,7 +50336,7 @@ var init_signal_strength = __esm({
|
|
|
50336
50336
|
precision: 0,
|
|
50337
50337
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
50338
50338
|
verdict: "DORMANT",
|
|
50339
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when @Builder annotation (Lombok) is used on a class with <= 3 fields.
|
|
50339
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when @Builder annotation (Lombok) is used on a class with <= 3 fields. v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI does NOT use @Builder on small classes more than humans. v0.27+ will redesign. Reference: java/builder-overuse v0.26.0; calibration v0.26.1.",
|
|
50340
50340
|
aiSpecific: true,
|
|
50341
50341
|
_v9Verdict: "DORMANT",
|
|
50342
50342
|
_v9Lift: 1,
|
|
@@ -50352,7 +50352,7 @@ var init_signal_strength = __esm({
|
|
|
50352
50352
|
precision: 0,
|
|
50353
50353
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
50354
50354
|
verdict: "DORMANT",
|
|
50355
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a single line has 3+ Stream API operations (.map, .filter, .flatMap, .collect, .reduce, .sorted, .distinct, .limit, .skip, .anyMatch, .allMatch, .noneMatch, .findFirst, .findAny).
|
|
50355
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a single line has 3+ Stream API operations (.map, .filter, .flatMap, .collect, .reduce, .sorted, .distinct, .limit, .skip, .anyMatch, .allMatch, .noneMatch, .findFirst, .findAny). v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI does NOT use Stream API chains more than humans. v0.27+ will redesign. Reference: java/stream-overuse v0.26.0; calibration v0.26.1.",
|
|
50356
50356
|
aiSpecific: true,
|
|
50357
50357
|
_v9Verdict: "DORMANT",
|
|
50358
50358
|
_v9Lift: 1,
|
package/dist/index.js
CHANGED
|
@@ -19,7 +19,7 @@ var VERSION;
|
|
|
19
19
|
var init_header = __esm({
|
|
20
20
|
"src/types/_header.ts"() {
|
|
21
21
|
"use strict";
|
|
22
|
-
VERSION = "0.26.
|
|
22
|
+
VERSION = "0.26.1";
|
|
23
23
|
}
|
|
24
24
|
});
|
|
25
25
|
|
|
@@ -50266,7 +50266,7 @@ var init_signal_strength = __esm({
|
|
|
50266
50266
|
precision: 0,
|
|
50267
50267
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
50268
50268
|
verdict: "DORMANT",
|
|
50269
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a small Java file (< 200 lines) has 3+ Javadoc tags with density >= 0.05.
|
|
50269
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a small Java file (< 200 lines) has 3+ Javadoc tags with density >= 0.05. v0.26.1 CALIBRATION (14769-file biased sample from v9-java corpus, files that fired >=1 of the 6 existing java rules): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. The v0.26.0 intuition that 'AI over-documents trivial methods' is NOT supported by the v9 corpus \u2014 AI code in Spring AI, LangChain4j, etc. has the same Javadoc density as human code. v0.20 hypothesis (humans avoid println/Date/raw types) and v0.26 hypothesis (AI over-documents/over-Opts/over-Builders) are both wrong for the v9 corpus. v0.27+ will redesign with a different approach: either train a classifier on the v9 features or use AST-based detection rather than regex heuristics. Reference: java/verbose-javadoc v0.26.0; calibration v0.26.1.",
|
|
50270
50270
|
aiSpecific: true,
|
|
50271
50271
|
_v9Verdict: "DORMANT",
|
|
50272
50272
|
_v9Lift: 1,
|
|
@@ -50282,7 +50282,7 @@ var init_signal_strength = __esm({
|
|
|
50282
50282
|
precision: 0,
|
|
50283
50283
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
50284
50284
|
verdict: "DORMANT",
|
|
50285
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 2+ .orElseThrow() calls AND 0 Objects.requireNonNull()/null checks (optionalRatio > 0.6).
|
|
50285
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 2+ .orElseThrow() calls AND 0 Objects.requireNonNull()/null checks (optionalRatio > 0.6). v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI in the v9 corpus does NOT use Optional chains more than humans. v0.27+ will redesign. Reference: java/optional-overuse v0.26.0; calibration v0.26.1.",
|
|
50286
50286
|
aiSpecific: true,
|
|
50287
50287
|
_v9Verdict: "DORMANT",
|
|
50288
50288
|
_v9Lift: 1,
|
|
@@ -50298,7 +50298,7 @@ var init_signal_strength = __esm({
|
|
|
50298
50298
|
precision: 0,
|
|
50299
50299
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
50300
50300
|
verdict: "DORMANT",
|
|
50301
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 5+ List.of/Map.of/Set.of calls AND < 1 new ArrayList/HashMap/HashSet/LinkedList/TreeMap calls.
|
|
50301
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a Java file has 5+ List.of/Map.of/Set.of calls AND < 1 new ArrayList/HashMap/HashSet/LinkedList/TreeMap calls. v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI does NOT use immutable factory methods more than humans. v0.27+ will redesign. Reference: java/immutable-collection-preference v0.26.0; calibration v0.26.1.",
|
|
50302
50302
|
aiSpecific: true,
|
|
50303
50303
|
_v9Verdict: "DORMANT",
|
|
50304
50304
|
_v9Lift: 1,
|
|
@@ -50314,7 +50314,7 @@ var init_signal_strength = __esm({
|
|
|
50314
50314
|
precision: 0,
|
|
50315
50315
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
50316
50316
|
verdict: "DORMANT",
|
|
50317
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when @Builder annotation (Lombok) is used on a class with <= 3 fields.
|
|
50317
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when @Builder annotation (Lombok) is used on a class with <= 3 fields. v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI does NOT use @Builder on small classes more than humans. v0.27+ will redesign. Reference: java/builder-overuse v0.26.0; calibration v0.26.1.",
|
|
50318
50318
|
aiSpecific: true,
|
|
50319
50319
|
_v9Verdict: "DORMANT",
|
|
50320
50320
|
_v9Lift: 1,
|
|
@@ -50330,7 +50330,7 @@ var init_signal_strength = __esm({
|
|
|
50330
50330
|
precision: 0,
|
|
50331
50331
|
lastCalibratedAt: "2026-07-03T00:00:00Z",
|
|
50332
50332
|
verdict: "DORMANT",
|
|
50333
|
-
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a single line has 3+ Stream API operations (.map, .filter, .flatMap, .collect, .reduce, .sorted, .distinct, .limit, .skip, .anyMatch, .allMatch, .noneMatch, .findFirst, .findAny).
|
|
50333
|
+
_calibrationNote: "v0.26.0: new positive AI-signal rule. Triggers when a single line has 3+ Stream API operations (.map, .filter, .flatMap, .collect, .reduce, .sorted, .distinct, .limit, .skip, .anyMatch, .allMatch, .noneMatch, .findFirst, .findAny). v0.26.1 CALIBRATION (14769-file biased sample): TP=0, FP=0, ratio=N/A. HYPOTHESIS FAILED. AI does NOT use Stream API chains more than humans. v0.27+ will redesign. Reference: java/stream-overuse v0.26.0; calibration v0.26.1.",
|
|
50334
50334
|
aiSpecific: true,
|
|
50335
50335
|
_v9Verdict: "DORMANT",
|
|
50336
50336
|
_v9Lift: 1,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slopbrick",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.1",
|
|
4
4
|
"description": "Discovered, modeled, and governed repository structure. SlopBrick scans source code, classifies it against 95+ rules in 15 categories, computes 4 scores (aiSlopScore: lower=cleaner, engineeringHygiene, security, repositoryHealth composite), and persists the structure for AI agents and CI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|