A file organizer whose whole job is staying out of your way
A free, privacy-first automatic file organizer that quietly sorts your Downloads folder from the system tray.
At a glance
- What is it?
- Mouzi sorts a Downloads folder silently from the system tray using a customizable rules engine, with gitignore-style exclusions and full undo logged to a local database. Its privacy claims are stated as specific, checkable commitments rather than a slogan, and every release ships checksums for the published binaries.
- Who is it for?
- Mouzi fits anyone whose Downloads folder has become an unsorted mess and who wants it kept tidy automatically without a background process that nags, phones home, or moves files with no way back, and its roughly five-megabyte memory footprint and silent-by-default behaviour genuinely match that ambition.
- Can I use it commercially?
- Yes. MIT is a permissive licence: you can use, modify and sell software built on it, as long as you keep its copyright and licence notices.
- Is it still maintained?
- Yes. The repository last received commits 22 days ago.
- What is it written in?
- Mainly TypeScript, according to GitHub's language statistics.
Answers come from the project's GitHub data, last synced on September 17, 2026, and from our analysis. They are not legal advice.
DEEP OPEN-SOURCE ANALYSIS
A file organizer that stays quiet until it matters
Mouzi is a desktop application that lives in the system tray and keeps a Downloads folder, or any other folder you point it at, automatically tidy, watching for new files and moving, renaming or sorting them according to rules you define. It is built with Tauri, pairing a Rust backend with a React interface, which the README states keeps its background resource footprint to roughly five megabytes of memory while running continuously.
The design premise is that a file organiser's whole job is to be unobtrusive, and the feature list backs that up in specific, checkable ways rather than a vague claim of lightness: it starts silently with Windows, shows only a subtle toast notification summarising how many files it just organised, and runs continuously in the background rather than needing to be manually triggered. For software meant to run permanently and untended, a small memory footprint and a genuinely quiet default behaviour are not cosmetic details; they are the actual product, since an organiser that nags or noticeably slows the machine defeats its own purpose.
A rules engine specific enough to actually trust
The default sorting rules cover the obvious categories, images, documents, archives, installers, music and video, each routed to its own subfolder, with a catch-all rule for anything that does not match. What makes the engine worth relying on beyond the defaults is the customisation layer on top: rules can be built from file extensions or regular expression patterns, destinations can use dynamic placeholders for the year, month, day, extension or filename, and rules are evaluated in a user-defined priority order where the first match wins.
A more recent addition closes a specific gap the earlier rule set could not handle: files with no extension at all can now be identified by their actual content and processed by existing rules rather than falling through to the catch-all bucket by default. That is a real capability gap in most simple extension-based sorters, since plenty of legitimately common files, certain exports, certain downloads, certain generated artefacts, carry no extension, and a rules engine that can only key off a file's name misses them systematically until it can also look at what the file actually contains.
Ignore rules borrowed from a format developers already trust
Mouzi supports a per-folder ignore file, explicitly modelled on the same pattern a developer already knows from version control: wildcards, exact filenames and whole folder names can all be excluded from automatic organisation, configured either through the settings interface or by writing the ignore file by hand.
Borrowing a familiar, already-proven syntax for this rather than inventing a new one is a sound choice specifically because the audience most likely to want fine-grained exclusion rules, someone comfortable enough with file organisation to care about excluding specific patterns, is also disproportionately likely to already know exactly how a gitignore-style file behaves. That familiarity means the feature needs no new mental model to use correctly, and the risk of a rule doing something unexpected, always a real concern for software that moves files on its own, drops accordingly for anyone who already trusts that syntax from daily use elsewhere.
Undo as a designed feature, not an afterthought
Every file move Mouzi performs is logged locally in a SQLite database, and any single action can be undone individually with one click, with the full history clearable on demand. That is the correct safety net for software whose entire purpose is autonomously moving your files without asking first, and a release note elsewhere in the project's history shows the same caution extending into the interface's own language: the wording throughout the app was deliberately changed from Clean to Organize specifically because Clean could be read as implying deletion, when nothing the tool does actually deletes anything.
That kind of wording correction is easy to dismiss as cosmetic, and it is not. Software that autonomously acts on a user's files needs its interface to say exactly what it is about to do, because the gap between what a user believes a button does and what it actually does is precisely where trust in automation breaks. Renaming a feature to avoid a reasonable but incorrect inference, on top of already logging every action to a local database with real undo, is the kind of layered caution appropriate to a tool that touches files unattended.
Privacy stated as specific commitments, not a slogan
The privacy section states several concrete, checkable claims rather than a single blanket assurance: the application is described as one hundred percent offline with no cloud dependency and no filename uploads, no telemetry is collected by default, and known operating-system hidden files are explicitly excluded from any automatic organisation. A portable build is also offered specifically for anyone who wants to run the tool without installing it and without leaving any trace in the Windows registry, and every stored record, rules, history, settings, lives locally inside the user's own profile folder.
Each of those is a specific, testable claim about behaviour rather than a marketing adjective, which is the meaningful difference between a genuine privacy design and a privacy-flavoured description. A tool whose entire function is scanning and moving a user's personal files is exactly the category where an unverifiable claim of being private is not worth much, and grounding the claim in specifics, no cloud calls, no filename transmission, no telemetry by default, a registry-free portable option, is what actually lets a cautious user evaluate it rather than simply trust it.
What to weigh before installing it
Downloads are distributed as platform-specific installers rather than a single universal package: Windows users can choose a standard installer, an MSI aimed at enterprise and Active Directory deployment, or a portable executable, while Linux users get a universal AppImage or native packages for Debian and Fedora-family distributions, each with stated dependency requirements. The project states that every GitHub release includes a generated checksum file covering the exact published binaries, which is the right practice for any desktop application distributed as a signed executable rather than built by the user from source, giving anyone who wants to verify their download a way to do so independently of the download page itself.
The project is MIT licensed, permissive and allowing commercial use, and reports 941 stars, 43 forks and 12 open issues, with the most recent release and last push both landing within days of each other in late August 2026, so it is current and actively shipping. Before installing it, three steps in order. Verify your download against the published checksum file rather than trusting the binary on its own, since that verification exists specifically for this purpose. Set up a `.mouziignore` file for any folder holding files you never want automatically moved, particularly before pointing the tool at anything beyond a plain Downloads folder. And review the undo history after your first few automated runs so you actually understand how the rules you configured behave in practice before trusting the tool to run fully unattended.
Editorial conclusion
Mouzi fits anyone whose Downloads folder has become an unsorted mess and who wants it kept tidy automatically without a background process that nags, phones home, or moves files with no way back, and its roughly five-megabyte memory footprint and silent-by-default behaviour genuinely match that ambition. Its rules engine is specific enough to trust beyond the defaults, with content-based sorting for extensionless files and gitignore-style exclusions for anyone who already knows that syntax, and every move is logged with one-click undo, backed by a deliberate wording change away from anything implying deletion. Verify your download against the published checksum file before installing, set up ignore rules for anything you never want touched, and review the undo history after your first few runs to confirm your configured rules actually behave the way you expect before trusting the tool to run fully unattended.
Frequently asked questions
How does Mouzi decide where to move a file?
Through a customizable rules engine matching file extensions or regular expression patterns, evaluated in user-defined priority order where the first match wins. Destinations can use dynamic placeholders for year, month, day, extension or filename, and files with no extension can now be identified by their actual content.
Can I exclude specific files or folders from being organized?
Yes, through a per-folder .mouziignore file modeled on the same pattern used by version control ignore files, supporting wildcards, exact filenames and whole folder exclusions, configurable either through the settings interface or by editing the file directly.
Can I undo an automatic file move?
Yes. Every action is logged locally in a SQLite database, and any single move can be undone individually with one click, with the full history clearable at any time. A release also renamed the app's Clean terminology to Organize specifically to avoid implying deletion.
Does Mouzi send any data to the cloud?
No. The README states it is 100% offline with no cloud dependency and no filename uploads, collects no telemetry by default, and stores all rules, history and settings locally in the user's own profile folder. A portable build is also offered that leaves no trace in the Windows registry.
How can I verify my downloaded installer is authentic?
The project states every GitHub release includes a generated SHA-256 checksum file covering the exact published installers, letting anyone verify their download independently rather than trusting the binary on its own, which is standard practice for a signed desktop application.
Community notes