fallow 2.48.1 → 2.48.5

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,6 +1,6 @@
1
1
  {
2
2
  "name": "fallow",
3
- "version": "2.48.1",
3
+ "version": "2.48.5",
4
4
  "description": "Codebase intelligence for TypeScript and JavaScript. Finds unused code, duplication, circular dependencies, complexity hotspots, and architecture drift. Optional runtime intelligence layer (Fallow Runtime) adds production execution evidence. Rust-native, sub-second, 90 framework plugins.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -54,13 +54,13 @@
54
54
  "@tanstack/intent": "0.0.29"
55
55
  },
56
56
  "optionalDependencies": {
57
- "@fallow-cli/darwin-arm64": "2.48.1",
58
- "@fallow-cli/darwin-x64": "2.48.1",
59
- "@fallow-cli/linux-x64-gnu": "2.48.1",
60
- "@fallow-cli/linux-arm64-gnu": "2.48.1",
61
- "@fallow-cli/linux-x64-musl": "2.48.1",
62
- "@fallow-cli/linux-arm64-musl": "2.48.1",
63
- "@fallow-cli/win32-arm64-msvc": "2.48.1",
64
- "@fallow-cli/win32-x64-msvc": "2.48.1"
57
+ "@fallow-cli/darwin-arm64": "2.48.5",
58
+ "@fallow-cli/darwin-x64": "2.48.5",
59
+ "@fallow-cli/linux-x64-gnu": "2.48.5",
60
+ "@fallow-cli/linux-arm64-gnu": "2.48.5",
61
+ "@fallow-cli/linux-x64-musl": "2.48.5",
62
+ "@fallow-cli/linux-arm64-musl": "2.48.5",
63
+ "@fallow-cli/win32-arm64-msvc": "2.48.5",
64
+ "@fallow-cli/win32-x64-msvc": "2.48.5"
65
65
  }
66
66
  }
@@ -122,7 +122,7 @@ When using fallow via MCP (`fallow-mcp`), the following tools are available:
122
122
  | `fix_preview` | Dry-run auto-fix preview |
123
123
  | `fix_apply` | Apply auto-fixes (destructive) |
124
124
  | `check_health` | Complexity metrics, health scores, hotspots, and refactoring targets |
125
- | `health_production_coverage` | Merge V8 or Istanbul production-coverage data into the health report (paid). Required `coverage` param. Long dumps may exceed the 120s MCP timeout; raise `FALLOW_TIMEOUT_SECS`. |
125
+ | `check_production_coverage` | Merge V8 or Istanbul production-coverage data into the health report (paid). Required `coverage` param (V8 dir, V8 JSON, or Istanbul `coverage-final.json`). Tuning knobs: `min_invocations_hot` (default 100), `min_observation_volume` (default 5000), `low_traffic_threshold` (default 0.001), `max_crap` (default 30.0), `group_by`. Long dumps may exceed the 120s MCP timeout; raise `FALLOW_TIMEOUT_SECS`. Pick this over `check_health` when you have a coverage dump. |
126
126
  | `audit` | Combined dead-code + complexity + duplication for changed files, returns verdict |
127
127
  | `project_info` | Project metadata. Set `entry_points`, `files`, `plugins`, or `boundaries` to `true` to request specific sections |
128
128
  | `list_boundaries` | Architecture boundary zones and access rules. Returns `{"configured": false}` if no boundaries configured |