Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.fallow.tools/llms.txt

Use this file to discover all available pages before exploring further.

Inspect what fallow discovered in your project. Use this command to debug configuration issues or verify that the right files, entry points, plugins, and boundary zones are being picked up.
Use fallow list --plugins to verify which of the 94 built-in plugins are active for your project.
fallow list

Options

FlagDescription
--filesShow all discovered files
--entry-pointsShow entry point files
--pluginsShow active plugins
--boundariesShow architecture boundary zones, rules, and per-zone file counts
-f, --format <FORMAT>Output format: human (default), json

Examples

# Show active plugins
fallow list --plugins

# JSON output for scripting
fallow list --plugins --format json

Example output

$ fallow list --boundaries
Boundaries: 4 zones, 4 rules

Zones:
  app                  3 files  src/app/**
  features             12 files src/features/**
  shared               8 files  src/components/**, src/hooks/**, src/lib/**, ...
  server               4 files  src/server/**

Rules:
  app features, shared, server
  features shared, server
  server shared
  shared               (isolated  no imports allowed)
$ fallow list --plugins
Active plugins:
  - nextjs
  - vite
  - vitest
  - playwright
  - storybook
  - eslint
  - typescript
  - tailwind
  - drizzle
  - commitlint
  - sentry
$ fallow list --entry-points
Found 42 entry points
src/app/layout.tsx                   (Plugin: nextjs)
src/app/page.tsx                     (Plugin: nextjs)
src/instrumentation.ts               (Plugin: nextjs)
src/proxy.ts                         (Plugin: nextjs)
src/lib/utils.test.ts                (Plugin: vitest)
e2e/auth.setup.ts                    (Plugin: playwright)
.storybook/main.ts                   (Plugin: storybook)
drizzle.config.ts                    (Plugin: drizzle)
scripts/db-migrate.ts                (PackageJsonScript)
scripts/db-seed.ts                   (PackageJsonScript)
...
Each entry point shows how it was discovered. The plugin name tells you which framework detected it.

See also

Built-in plugins

Full list of fallow’s 94 built-in framework plugins.

Custom plugins

Create plugins for frameworks fallow doesn’t cover yet.