How macOS actually works
It is not laziness or fee avoidance. Some apps are technically impossible to ship on the App Store, and file search is one of them.
Every Mac App Store app must be sandboxed: confined to its own container, able to touch only what the user explicitly opens or drags in.
That is excellent for most software and fatal for a few kinds:
An app outside the App Store is signed with a Developer ID certificate and notarised by Apple — uploaded, scanned for malware, and issued a ticket that is stapled to the download.
Gatekeeper checks that ticket on first launch. So the app is still identified and still checked by Apple; it is not reviewed for content, and it is not sandboxed.
the Terminal: spctl --assess --type install --verbose=2 /path/to.pkg should say source=Notarized Developer ID.
App Store: reviewed, sandboxed, easy refunds, limited capability. Direct: full capability, notarised but not reviewed, and you are trusting the developer more directly.
For a tool whose entire purpose is to see every file on your disk, the second is the only option that can exist.
Notarised apps have been scanned by Apple for malware. That is a lower bar than review, so the developer's reputation matters more.
spctl --assess --type install --verbose=2 <file> — look for source=Notarized Developer ID.
Everywhere keeps track of every file on your Mac — including the folders Spotlight hides and drives you have unplugged. Free for a day, then $19 once.
Download for Mac