fallow 3.19.0 → 3.20.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/capabilities.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fallow",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.20.0",
|
|
4
4
|
"manifest_version": "1",
|
|
5
5
|
"description": "Codebase analyzer for TypeScript/JavaScript: unused code, circular dependencies, code duplication, complexity hotspots, and architecture boundary violations",
|
|
6
6
|
"global_flags": [
|
|
@@ -1792,7 +1792,7 @@
|
|
|
1792
1792
|
"name": "--walkthrough-file",
|
|
1793
1793
|
"type": "string",
|
|
1794
1794
|
"required": false,
|
|
1795
|
-
"description": "Ingest an agent's judgment JSON and POST-VALIDATE it against the LIVE graph. Rejects any judgment whose `signal_id` fallow did not emit (anti-hallucination); refuses the whole payload as stale when the echoed graph-snapshot hash no longer matches (the tree moved). The verifier is the graph, not a second model. Implies the brief; always exits 0. The agent's free-text framing
|
|
1795
|
+
"description": "Ingest an agent's judgment JSON and POST-VALIDATE it against the LIVE graph. Rejects any judgment whose `signal_id` fallow did not emit (anti-hallucination); refuses the whole payload as stale when the echoed graph-snapshot hash no longer matches (the tree moved); rejects an `action` outside `block`, `address`, `consider`, `fyi` (`invalid-action`). The verifier is the graph, not a second model. Implies the brief; always exits 0. The agent's free-text framing and action label are fenced as non-deterministic and never gate or auto-post"
|
|
1796
1796
|
},
|
|
1797
1797
|
{
|
|
1798
1798
|
"name": "--walkthrough",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fallow",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.20.0",
|
|
4
4
|
"mcpName": "io.github.fallow-rs/fallow",
|
|
5
5
|
"description": "Codebase intelligence for TypeScript and JavaScript. Free static analysis of code and styles, optional paid runtime intelligence (Fallow Runtime). Quality, risk, architecture, dependencies, duplication, and design-system drift for humans, CI, and the agents writing your code. Zero-config framework support.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -88,14 +88,14 @@
|
|
|
88
88
|
"@tanstack/intent": "0.3.6"
|
|
89
89
|
},
|
|
90
90
|
"optionalDependencies": {
|
|
91
|
-
"@fallow-cli/darwin-arm64": "3.
|
|
92
|
-
"@fallow-cli/darwin-x64": "3.
|
|
93
|
-
"@fallow-cli/linux-x64-gnu": "3.
|
|
94
|
-
"@fallow-cli/linux-arm64-gnu": "3.
|
|
95
|
-
"@fallow-cli/linux-x64-musl": "3.
|
|
96
|
-
"@fallow-cli/linux-arm64-musl": "3.
|
|
97
|
-
"@fallow-cli/win32-arm64-msvc": "3.
|
|
98
|
-
"@fallow-cli/win32-x64-msvc": "3.
|
|
99
|
-
"fallow-type-aware": "3.
|
|
91
|
+
"@fallow-cli/darwin-arm64": "3.20.0",
|
|
92
|
+
"@fallow-cli/darwin-x64": "3.20.0",
|
|
93
|
+
"@fallow-cli/linux-x64-gnu": "3.20.0",
|
|
94
|
+
"@fallow-cli/linux-arm64-gnu": "3.20.0",
|
|
95
|
+
"@fallow-cli/linux-x64-musl": "3.20.0",
|
|
96
|
+
"@fallow-cli/linux-arm64-musl": "3.20.0",
|
|
97
|
+
"@fallow-cli/win32-arm64-msvc": "3.20.0",
|
|
98
|
+
"@fallow-cli/win32-x64-msvc": "3.20.0",
|
|
99
|
+
"fallow-type-aware": "3.20.0"
|
|
100
100
|
}
|
|
101
101
|
}
|
|
@@ -385,7 +385,7 @@ Human output groups paths under "Shared with your team (commit these)" and "Loca
|
|
|
385
385
|
{
|
|
386
386
|
"kind": "agent-install",
|
|
387
387
|
"schema_version": 1,
|
|
388
|
-
"fallow_version": "3.
|
|
388
|
+
"fallow_version": "3.20.0",
|
|
389
389
|
"root": "/abs/path",
|
|
390
390
|
"mode": "install",
|
|
391
391
|
"dry_run": false,
|
|
@@ -988,7 +988,7 @@ export type FeatureFlagActionType = ("investigate-flag" | "suppress-line")
|
|
|
988
988
|
* Independently-versioned wire-version newtype for the brief envelope.
|
|
989
989
|
* Serializes as the integer `REVIEW_BRIEF_SCHEMA_VERSION`.
|
|
990
990
|
*/
|
|
991
|
-
export type ReviewBriefSchemaVersion =
|
|
991
|
+
export type ReviewBriefSchemaVersion = 8
|
|
992
992
|
/**
|
|
993
993
|
* The exactly-three shippable decision categories (the SOLID-3). No cut category
|
|
994
994
|
* (abstraction / deletion / convention / irreversibility) is representable: this
|
|
@@ -1033,6 +1033,13 @@ export type DecisionSurfaceSchemaVersion = number
|
|
|
1033
1033
|
* The discriminated action kinds a decision can carry.
|
|
1034
1034
|
*/
|
|
1035
1035
|
export type DecisionActionType = ("ask-expert" | "suppress")
|
|
1036
|
+
/**
|
|
1037
|
+
* Whether a changed source unit has a test file importing it, and whether that
|
|
1038
|
+
* test moved with the change. A direct-importer fact from the graph, not a
|
|
1039
|
+
* coverage claim: `untouched` says a test exists and was not edited, which is
|
|
1040
|
+
* the verification question the reviewer asks the author, never an answer.
|
|
1041
|
+
*/
|
|
1042
|
+
export type TestAdjacency = ("none" | "untouched" | "changed")
|
|
1036
1043
|
/**
|
|
1037
1044
|
* The `fallow suppressions --format json` schema version. Independently
|
|
1038
1045
|
* versioned from the main contract, mirroring `SecuritySchemaVersion`.
|
|
@@ -12518,6 +12525,16 @@ units: ReviewUnitFact[]
|
|
|
12518
12525
|
* the `units` module directories.
|
|
12519
12526
|
*/
|
|
12520
12527
|
order: string[]
|
|
12528
|
+
/**
|
|
12529
|
+
* Connected components of the inter-unit dependency graph: groups of
|
|
12530
|
+
* module directories that share no import edge with any unit outside the
|
|
12531
|
+
* group. Present only when there are two or more; a single slice is just
|
|
12532
|
+
* `order`. A slice proves the absence of import edges to the rest of the
|
|
12533
|
+
* change, nothing more: whether it can land on its own is still a
|
|
12534
|
+
* judgment (generated files and lockstep contracts share no edge and
|
|
12535
|
+
* still belong together). An orientation fact, never a demand to split.
|
|
12536
|
+
*/
|
|
12537
|
+
independent_slices?: string[][]
|
|
12521
12538
|
}
|
|
12522
12539
|
/**
|
|
12523
12540
|
* One review unit: a coherent by-module cluster of the changed set.
|
|
@@ -12683,6 +12700,19 @@ cycle_introduced: string[]
|
|
|
12683
12700
|
* reachable through an `exports` path is present (exactly one).
|
|
12684
12701
|
*/
|
|
12685
12702
|
public_api_added: string[]
|
|
12703
|
+
/**
|
|
12704
|
+
* Third-party dependencies a changed `package.json` declares that the base
|
|
12705
|
+
* manifest did not, as `<manifest>::<name>` keys. Every dependency section
|
|
12706
|
+
* participates. Always present, empty when no manifest changed.
|
|
12707
|
+
*/
|
|
12708
|
+
dependency_added: string[]
|
|
12709
|
+
/**
|
|
12710
|
+
* Declared dependencies whose range moved across a major version (or a
|
|
12711
|
+
* `0.x` minor) vs base, as `<manifest>::<name>@<from>-><to>` keys. Minor
|
|
12712
|
+
* and patch moves are not candidates; a non-numeric range is skipped.
|
|
12713
|
+
* Always present, empty when nothing crossed a major version.
|
|
12714
|
+
*/
|
|
12715
|
+
dependency_major_bumped: string[]
|
|
12686
12716
|
}
|
|
12687
12717
|
/**
|
|
12688
12718
|
* One weakening signal: a category, the file it was detected in, and a short
|
|
@@ -12963,6 +12993,11 @@ out_of_diff: string[]
|
|
|
12963
12993
|
* Routed expert(s), when ownership signals are available.
|
|
12964
12994
|
*/
|
|
12965
12995
|
expert: string[]
|
|
12996
|
+
/**
|
|
12997
|
+
* Direct test adjacency of this unit. Absent when the graph was not
|
|
12998
|
+
* retained or the unit is itself a test file.
|
|
12999
|
+
*/
|
|
13000
|
+
test_adjacency?: (TestAdjacency | null)
|
|
12966
13001
|
}
|
|
12967
13002
|
/**
|
|
12968
13003
|
* One stable per-hunk CHANGE ANCHOR: a changed region the agent may cite as a
|
|
@@ -13005,8 +13040,10 @@ previous_change_anchor?: (string | null)
|
|
|
13005
13040
|
*/
|
|
13006
13041
|
export interface AgentSchema {
|
|
13007
13042
|
/**
|
|
13008
|
-
* How the agent must structure each judgment: cite an emitted `signal_id
|
|
13009
|
-
* add free-text `framing` (non-deterministic, fenced),
|
|
13043
|
+
* How the agent must structure each judgment: cite an emitted `signal_id`
|
|
13044
|
+
* or `change_anchor`, add free-text `framing` (non-deterministic, fenced),
|
|
13045
|
+
* an optional `concern`, and an optional `action` from the closed
|
|
13046
|
+
* vocabulary.
|
|
13010
13047
|
*/
|
|
13011
13048
|
judgment_shape: string
|
|
13012
13049
|
/**
|
|
@@ -13018,6 +13055,16 @@ echo_field: string
|
|
|
13018
13055
|
* The anchoring rule name.
|
|
13019
13056
|
*/
|
|
13020
13057
|
anchoring_rule: string
|
|
13058
|
+
/**
|
|
13059
|
+
* The closed `action` vocabulary ([`JUDGMENT_ACTIONS`]): a judgment with
|
|
13060
|
+
* any other value is rejected on reentry.
|
|
13061
|
+
*/
|
|
13062
|
+
action_vocabulary: string[]
|
|
13063
|
+
/**
|
|
13064
|
+
* The recommended `concern` vocabulary ([`JUDGMENT_CONCERNS`]), documented
|
|
13065
|
+
* for grouping; free text is still accepted.
|
|
13066
|
+
*/
|
|
13067
|
+
concern_vocabulary: string[]
|
|
13021
13068
|
}
|
|
13022
13069
|
/**
|
|
13023
13070
|
* The `fallow review --walkthrough-file` validation envelope: the result of
|
|
@@ -13095,6 +13142,13 @@ agent_framing: string
|
|
|
13095
13142
|
* The agent's optional concern category.
|
|
13096
13143
|
*/
|
|
13097
13144
|
concern?: (string | null)
|
|
13145
|
+
/**
|
|
13146
|
+
* The author-action label the judgment carries (`block`, `address`,
|
|
13147
|
+
* `consider`, or `fyi`), validated against [`JUDGMENT_ACTIONS`]. It tells
|
|
13148
|
+
* the receiving author what is required and what is optional; it is the
|
|
13149
|
+
* reviewer's instruction, fenced with the framing, never a gate.
|
|
13150
|
+
*/
|
|
13151
|
+
action?: (string | null)
|
|
13098
13152
|
/**
|
|
13099
13153
|
* Hard fence: always `false`. The framing is agent prose, never a
|
|
13100
13154
|
* deterministic fallow result, so it never gates or auto-posts.
|
|
@@ -13118,9 +13172,15 @@ change_anchor: string
|
|
|
13118
13172
|
/**
|
|
13119
13173
|
* The rejection reason: `unanchored-signal-id` (cited a signal fallow did
|
|
13120
13174
|
* not emit), `unknown-change-anchor` (cited a region fallow did not emit),
|
|
13121
|
-
*
|
|
13175
|
+
* `stale-snapshot` (the tree moved), or `invalid-action` (an `action`
|
|
13176
|
+
* outside [`JUDGMENT_ACTIONS`]; the anchor itself resolved).
|
|
13122
13177
|
*/
|
|
13123
13178
|
reason: string
|
|
13179
|
+
/**
|
|
13180
|
+
* The offending value for an `invalid-action` rejection, echoed so the
|
|
13181
|
+
* agent can correct it in one round trip. Absent for the other reasons.
|
|
13182
|
+
*/
|
|
13183
|
+
invalid_value?: (string | null)
|
|
13124
13184
|
}
|
|
13125
13185
|
/**
|
|
13126
13186
|
* The `fallow suppressions --format json` envelope. `FallowOutput`
|