fallow 2.92.1 → 2.94.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 +9 -9
- package/schema.json +18 -0
- package/skills/fallow/SKILL.md +224 -140
- package/skills/fallow/references/cli-reference.md +271 -214
- package/skills/fallow/references/node-bindings.md +21 -0
- package/skills/fallow/references/patterns.md +4 -4
- package/types/output-contract.d.ts +93 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fallow",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.94.0",
|
|
4
4
|
"description": "Deterministic codebase intelligence for TypeScript and JavaScript. Quality, risk, architecture, dependencies, duplication, and safe cleanup evidence for humans, CI, and agents. Optional runtime intelligence layer (Fallow Runtime) adds production execution evidence. Rust-native, sub-second, zero-config framework support.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -83,13 +83,13 @@
|
|
|
83
83
|
"@tanstack/intent": "0.0.41"
|
|
84
84
|
},
|
|
85
85
|
"optionalDependencies": {
|
|
86
|
-
"@fallow-cli/darwin-arm64": "2.
|
|
87
|
-
"@fallow-cli/darwin-x64": "2.
|
|
88
|
-
"@fallow-cli/linux-x64-gnu": "2.
|
|
89
|
-
"@fallow-cli/linux-arm64-gnu": "2.
|
|
90
|
-
"@fallow-cli/linux-x64-musl": "2.
|
|
91
|
-
"@fallow-cli/linux-arm64-musl": "2.
|
|
92
|
-
"@fallow-cli/win32-arm64-msvc": "2.
|
|
93
|
-
"@fallow-cli/win32-x64-msvc": "2.
|
|
86
|
+
"@fallow-cli/darwin-arm64": "2.94.0",
|
|
87
|
+
"@fallow-cli/darwin-x64": "2.94.0",
|
|
88
|
+
"@fallow-cli/linux-x64-gnu": "2.94.0",
|
|
89
|
+
"@fallow-cli/linux-arm64-gnu": "2.94.0",
|
|
90
|
+
"@fallow-cli/linux-x64-musl": "2.94.0",
|
|
91
|
+
"@fallow-cli/linux-arm64-musl": "2.94.0",
|
|
92
|
+
"@fallow-cli/win32-arm64-msvc": "2.94.0",
|
|
93
|
+
"@fallow-cli/win32-x64-msvc": "2.94.0"
|
|
94
94
|
}
|
|
95
95
|
}
|
package/schema.json
CHANGED
|
@@ -125,6 +125,8 @@
|
|
|
125
125
|
"maxCognitive": 15,
|
|
126
126
|
"maxCrap": 30.0,
|
|
127
127
|
"crapRefactorBand": 5,
|
|
128
|
+
"coverage": null,
|
|
129
|
+
"coverageRoot": null,
|
|
128
130
|
"ignore": [],
|
|
129
131
|
"ownership": {
|
|
130
132
|
"botPatterns": [
|
|
@@ -806,6 +808,22 @@
|
|
|
806
808
|
"maximum": 65535,
|
|
807
809
|
"default": 5
|
|
808
810
|
},
|
|
811
|
+
"coverage": {
|
|
812
|
+
"description": "Path to Istanbul-format coverage data for accurate per-function CRAP\nscores. Relative paths resolve against the project root. The CLI\n`--coverage` flag and `FALLOW_COVERAGE` environment variable override\nthis value.",
|
|
813
|
+
"type": [
|
|
814
|
+
"string",
|
|
815
|
+
"null"
|
|
816
|
+
],
|
|
817
|
+
"default": null
|
|
818
|
+
},
|
|
819
|
+
"coverageRoot": {
|
|
820
|
+
"description": "Absolute prefix to strip from Istanbul file paths before CRAP matching.\nUse when coverage was generated under a different checkout root in CI\nor Docker. The CLI `--coverage-root` flag and `FALLOW_COVERAGE_ROOT`\nenvironment variable override this value.",
|
|
821
|
+
"type": [
|
|
822
|
+
"string",
|
|
823
|
+
"null"
|
|
824
|
+
],
|
|
825
|
+
"default": null
|
|
826
|
+
},
|
|
809
827
|
"ignore": {
|
|
810
828
|
"description": "Glob patterns to exclude from complexity analysis.",
|
|
811
829
|
"type": "array",
|