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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "slopbrick",
3
- "version": "0.15.0",
4
- "description": "Discovered, modeled, and governed repository structure. SlopBrick scans source code, classifies it against 60+ rules and 13 scores, and persists the structure for AI agents and CI.",
3
+ "version": "0.17.0",
4
+ "description": "Discovered, modeled, and governed repository structure. SlopBrick scans source code, classifies it against 80+ rules across 13 categories, computes 4 scores (aiQuality, engineeringHygiene, security, repositoryHealth), and persists the structure for AI agents and CI.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "slopbrick": "bin/slopbrick.js"
@@ -29,7 +29,9 @@
29
29
  ],
30
30
  "scripts": {
31
31
  "dev": "tsx src/index.ts",
32
- "generate:rules": "tsx scripts/generate-rule-registry.ts",
32
+ "generate:rules": "tsx scripts/generate-rule-registry.ts && tsx scripts/generate-rule-catalog.ts",
33
+ "generate:rules:catalog": "tsx scripts/generate-rule-catalog.ts",
34
+ "bench:scan": "tsx scripts/bench-scan.ts",
33
35
  "prebuild": "pnpm --filter @usebrick/engine build",
34
36
  "build": "pnpm --filter @usebrick/engine build && pnpm generate:rules && tsup",
35
37
  "test": "pnpm generate:rules && tsup && vitest run",