fallowlisted
Install: claude install-skill produtoramaxvision/maxvision-utilities
# fallow — deterministic codebase intelligence (TS/JS)
Static analysis of this pnpm monorepo (no AI): dead code, duplication, complexity, dependency hygiene, architecture cycles. Run via `pnpm exec fallow` or the `fallow` MCP server (registered in `.mcp.json`).
## Commands
- `pnpm exec fallow audit --format json --quiet` — PR gate: verdict `pass` / `warn` / `fail` over changed files
- `pnpm exec fallow health --score` — repo health score 0–100
- `pnpm exec fallow dead-code --format json --quiet` — unused-code + dependency-hygiene candidates
- `pnpm exec fallow dupes` — copy-paste and structural duplication
- `pnpm exec fallow fix --dry-run` — preview safe unused-code auto-fixes
## Rules
- Apply only the `auto_fixable` actions from the `actions[]` array; review the rest.
- PR gate passes only on verdict `pass`.
- Suppress narrowly: `// fallow-ignore-next-line <rule>` plus a one-line reason. NEVER raise a global threshold to hide a hotspot.
- Config lives in `.fallowrc.jsonc` (workspaces: `media-forge`, `credit-core`). The MCP server and this skill load when the Claude Code session reopens in this repo.