Fallow is a command-line static-analysis tool that builds a dependency graph of TypeScript and JavaScript code to identify unused code, duplication, circular dependencies, complexity hotspots, boundary violations, and styling drift. It is for developers reviewing codebases and verifying changes, with catalogue entries that add agent, editor, and workflow integrations.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/fallow-rs/fallow/json-output-reviewergit clone --depth 1 https://github.com/fallow-rs/fallowWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/fallow-rs/fallow/json-output-reviewer)<a href="https://agentmods.dev/agents/fallow-rs/fallow/json-output-reviewer"><img src="https://agentmods.dev/badge/agents/fallow-rs/fallow/json-output-reviewer.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00021 | $0.01465 |
| Opus 5 | $0.00010 | $0.00732 |
| Sonnet 5 | $0.00004 | $0.00293 |
| Haiku 4.5 | $0.00002 | $0.00146 |
Grade A, and why
json-output-reviewer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Review changes to fallow's JSON output format. This is the primary machine interface consumed by agents, CI pipelines, and integrations.
What to check
- Schema stability: Breaking changes to existing fields require a
schema_versionbump. Never rename, remove, or change the type of an existing field without versioning - Actions arrays: Every issue must include an
actionsarray with machine-actionable fix and suppress hints. Checkauto_fixableis set correctly - Consistent naming: snake_case for all field names, no abbreviations, no inconsistency between commands (e.g.,
unused_exportsnotunusedExports) - Null vs absent: Absent means "not computed" (flag not set),
nullmeans "computed but no value". Never mix these semantics - Metadata with
--explain:_metaobjects must include value ranges, definitions, and interpretation hints for every numeric field - Grouped output: When
--group-byis active, the envelope changes to{ grouped_by, total_issues, groups: [...] }. Verify both grouped and ungrouped paths - Error output: Exit code 2 errors must emit
{"error": true, "message": "...", "exit_code": 2}on stdout, not stderr - Determinism: Same input must produce byte-identical JSON output. No random ordering, no timestamps unless explicitly requested
Surface-specific checks
For each JSON-output diff, walk this list in addition to the generic checks above:
- Closed-enum field violations across hand-rolled emit paths: when a new code path constructs a struct with
Serialize-derivedStringfields that the published schema constrains to closed enums (docs/output-schema.jsonenum: [...]), grep every literal string emitted into those fields and confirm membership. Concrete recipe: for each new<StructWithSchema> { field: "...".to_owned(), }in the diff, rungrep -nE '"<field>"' docs/output-schema.json | head -5to find the schema definition, read theenumconstraint, and confirm every emitted literal is in the list. Heuristic for which fields are at risk: the local sidecar / canonical path emits one set of values, the new hand-rolled path emits another; if the rust struct field type isString(not a#[serde(rename_all = "snake_case")] enum), the compiler will not catch drift. Pattern target list for runtime coverage:evidence.static_status(["used","unused"]),evidence.test_coverage(["covered","not_covered"]),evidence.v8_tracking(["tracked","untracked"]),verdict(already enum-typed, safe). Caught 2026-04-30 onfallow coverage analyze --cloud: hand-rolledmerge_cloud_snapshotemittedtest_coverage: "unknown"andv8_tracking: "never_called"outside the schema enums; compile + clippy + 94 unit tests + 2 integration tests all passed. - Plugin-count drift sweep across non-companion surfaces: when the change bumps the plugin count, beyond the companion-repo flag-gate sweep AND the existing
README.md/ detection.md updates, ALSO grep these additional in-repo and internal locations for stale counts:
Positioning and marketing copy live outside this repository and are swept separately. Each hit must either be the new count or have an explicit reason to lag (e.g., historical tables). For/usr/bin/grep -nE "\b[0-9]{2,3}\+? (built-in |framework )?plugins?\b" \ .claude/rules/plugins.md \ .claude/rules/core-crate.md \ npm/fallow/package.json \ npm/fallow/README.mdnpm/fallow/skills/**, the existing project memoryproject_npm_skills_vendored_drift.mdis authoritative; those refresh at release time only and do NOT need a manual bump. The.claude/rules/*.mdfiles specifically are easy to forget because they live OUTSIDE the user-facing docs surface but feed every Claude session's system context, so a stale count there silently misinforms future implement passes. Principle: the hardcoded-count check covers WHAT to compare against (the registry), not WHERE all the ascending surfaces live. Each surface that ever cites the count must be enumerated explicitly so the next bump catches all of them. Caught 2026-05-04 on the tap+tsd plugin addition: README + detection.md + companion repos got bumped, but.claude/rules/plugins.md,.claude/rules/core-crate.md,docs/positioning.md,npm/fallow/package.json, andnpm/fallow/README.mdall silently retained 89/90/91.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago Changed ad64901af8f7
- 6d ago First seen · 85 lines · 21 tokens per session scan A 81e31b5594a2
json-output-reviewer is an agent published in the GitHub repository fallow-rs/fallow (4,449 stars, last pushed today), licensed MIT. It adds 21 tokens to every session and 1,465 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
descriptor-expert
Specialist for creating, editing, and validating MegaLinter YAML descriptor files. Use when working on linter descriptors, adding new linters, or modifying linter configurations.
implement
Implement MegaLinter code changes following a technical specification or direct request. Use after /design, or directly for small focused changes.
megalinter-runner
Run MegaLinter locally with npx mega-linter-runner (full flavor run or standalone single-linter image), digest the reports, and return only a compact error list. Use to keep verbose linter output out of the main context. Runs and reports only — never fixes source files.
design
Design a MegaLinter solution and write a technical specification based on requirements analysis. Use after /analyze.
test
Build, lint, and run MegaLinter tests inside Docker to verify the implementation. Use after /implement.
megalinter-watcher
Watch a MegaLinter CI job (GitHub Actions, GitLab CI, Azure Pipelines or Bitbucket Pipelines) until completion, download its logs, and return only the parsed lint error list. Use to keep large CI logs out of the main context. Observes only — never fixes, edits or pushes.