Apple Intelligence File Renaming: What It Can (and Can't) Do
There is no toggle for this in Finder. Here is what Apple Intelligence actually offers, how to wire up your own renaming shortcut with it, and exactly where that DIY version falls apart.
By Ram Velmurugan · Founder & Lead Developer, 1dot.ai
Editorial note: 1dot.ai builds Files Magic AI, whose Magic Rename feature is one of the tools discussed below alongside the do-it-yourself Shortcuts approach. Every hardware requirement, Shortcuts action, and pricing figure in this guide was checked live against Apple's own documentation and current product pages in August 2026; sources are listed near the bottom.
Why People Assume Apple Intelligence Renames Files
It is a reasonable thing to expect. Apple Intelligence can already rewrite a paragraph in Mail, summarize a long email thread, and generate an image from a description, so "read this scan and give it a sensible name" sounds like it should already exist somewhere in System Settings. It does not, and searching for it in Finder's preferences will not turn anything up.
What actually exists is one level down from that: a model you can call, not a feature that calls itself. This guide covers what that model is, how to point it at your files yourself using Shortcuts, and the specific places that approach breaks so you are not left guessing why forty files went in and only thirty came out renamed.
What You Need Before Any of This Works
Apple Intelligence is gated by hardware, not just software. You need an Apple Silicon Mac, M1 or later; Intel Macs cannot run it at all, no matter how current the OS is. On top of that, you need macOS 26 Tahoe or later, roughly 7GB of free storage for the on-device model files, and Apple Intelligence switched on under System Settings > Apple Intelligence & Siri. Full functionality is currently most reliable with the system language set to English.
The "Use Model" Action, and Its Three Sources
This single Shortcuts action is the entire bridge between Apple Intelligence and anything you build yourself, file renaming included. It gives you a choice of three places to actually run the request.
On-Device
Runs entirely on your Mac using Apple's own compact language model, the same one available to developers through the Foundation Models framework. Nothing leaves the machine. It handles short text tasks, extracting a name from a block of invoice text, well, but has a harder time producing a specific, useful description from a busy or ambiguous photo.
Private Cloud Compute
Sends the request to Apple's own servers to run a larger version of the same model family. Apple's stated design goal for Private Cloud Compute is that it applies the same data-handling guarantees as on-device processing, nothing is retained for training and Apple states it cannot access the content, but the request does briefly leave your Mac, which matters if you are renaming anything genuinely sensitive.
ChatGPT
Routes the request to OpenAI's ChatGPT instead of an Apple model. Usable for basic requests without linking an account, or connected to your own ChatGPT account for higher limits. This is the one option where your file content is going to a company other than Apple, worth knowing before you point it at anything private.
For file renaming specifically, On-Device is the default worth starting with, since it is free, private, and fast enough that a batch of a few dozen files finishes in seconds. Switch a single "Use Model" action to Private Cloud Compute only for files where the on-device result is visibly weak, which in practice means photos and complex images more often than text documents.
How to Build Your Own Renaming Shortcut
None of this requires writing code, only assembling five actions in the Shortcuts app in the right order. It takes about ten minutes the first time.
Start a New Shortcut and Set It Up as a Finder Quick Action
Open Shortcuts, create a new shortcut, and in its details set it to receive Files as input and to ask for files if none are provided. Then turn on "Use as Quick Action" so it shows up when you right-click a file or folder in Finder, which is how you will trigger it later.
Shortcuts app, macOS 26 Tahoe or laterAdd "Repeat with Each" to Handle More Than One File at a Time
Drop a "Repeat with Each" action right after the input and everything below it runs once per file. Skip this if you only ever plan to rename one file at a time, but almost nobody actually uses these shortcuts that way in practice.
Loops over your Quick Action's inputPull Out the Original Name and Extension
Add an action that reads the file's details and stores its base name and its extension in separate variables. You will need the extension again at the end, since the model itself has no idea what kind of file it is looking at unless you tell it, and it should never be asked to generate one.
So you can reuse them later in the shortcutCall "Use Model" With a Tightly Worded Prompt
This is the one action in the whole shortcut that touches Apple Intelligence. Feed it the file as input and a prompt that constrains the output hard, something like: describe this file in 2 to 5 words, use spaces between words, no punctuation, no file extension, and return only those words and nothing else.
The wording matters more than it looks like it should. A loose prompt ("give this file a good name") reliably comes back with extra sentences, quotation marks, or a restated version of your instructions glued onto the actual name, all of which you would then have to strip out before renaming anything.
This is the actual Apple Intelligence stepRename the File and Reattach the Extension
Combine the model's output with the extension you saved in Step 3, then run "Rename File" with that combined text. Miss this step and Shortcuts will either strip the extension entirely or leave the file unopenable by its original app until you fix the name by hand.
The step people forget, and the shortcut breaksThe PDF Version Needs One More Step
Images can go straight into "Use Model." A PDF needs its text pulled out first, since the model reads text, not a page layout. Add a "Get Text from PDF" action, trim it to a reasonable length (the first page or two is almost always enough context), and only then hand it to "Use Model."
This is also exactly where the DIY approach quietly fails. A scanned page with no real text layer, a photographed receipt saved as a PDF, or a fax-quality document returns an empty string from "Get Text from PDF." A shortcut that checks for that and skips the file when it happens will do so silently, so a batch of forty scanned invoices can come out of this with thirty renamed and ten left exactly as they were, with no error and no obvious reason why until you go looking.
Silent failure point, see belowWhere the DIY Version Breaks Down
The shortcut above genuinely works, and for a small, occasional batch it is a reasonable free option. It also has real limits worth knowing before you point it at anything you care about.
- Scanned documents with no text layer get skipped, not warned about. A conditional check that tests for extracted text will treat an empty result as "nothing to do" rather than "something went wrong," so a folder of photographed receipts or fax-quality scans can go through a batch run and come out mostly untouched with no error message telling you why.
- On-device image descriptions are hit or miss. The on-device model is compact by design, built for fast, private text tasks rather than richly describing a busy photo. It will usually produce something, but "something" is not always a useful filename.
- The output format needs constant babysitting. Models tend to add filler ("Sure, here's a name:") unless the prompt aggressively rules it out, and even a well-worded prompt occasionally slips. Every version of this shortcut in circulation includes some form of cleanup step for exactly this reason.
- There is no preview and no undo. Shortcuts renames the file the moment the action runs. If a name comes out wrong on file 12 of 40, you find out by looking at file 12 afterward, not before, and fixing it means renaming it back by hand.
- The ChatGPT option adds a dependency you don't control. It works without an account for casual use, but you are now relying on OpenAI's uptime and rate limits inside what was supposed to be a simple Mac automation, and your file content is going to a company other than Apple.
DIY Shortcut vs. a Dedicated Renaming App
Both routes can end up using the same underlying idea, a language model reading a file and proposing a name. Where they differ is everything wrapped around that core step.
| Question | DIY Shortcuts Build | Dedicated App (e.g. Magic Rename) |
|---|---|---|
| Setup required | Build it yourself in Shortcuts | Install the app, done |
| Preview before renaming | No, add your own Quick Look step | Yes, batch preview by default |
| One-click undo | No | Yes |
| Handles scanned PDFs with no text layer | Fails silently unless you add OCR first | Yes, on-device OCR built in |
| Folder/watch automation | Possible with a separate Folder Action shortcut | Not yet a built-in feature |
| Runs fully offline | Yes, if you choose On-Device in "Use Model" | Yes, by default |
| Cost | Free (uses what is already on your Mac) | Free trial, then from $4.99/mo or $49.99 lifetime |
Pricing and feature claims for Files Magic AI verified against its own product page in August 2026.
When the Shortcut Is Enough, and When It Isn't
If you rename files rarely, want to keep the whole thing free, and don't mind spending ten minutes building it once, the Shortcuts route is a genuinely good option. It is also a reasonable way to learn what "Use Model" can do before deciding whether you want more than that.
It stops being enough once renaming becomes a routine chore rather than an occasional one, once the files involved are financial or otherwise consequential enough that a silent skip or a wrong guess is actually costly, or once you find yourself wanting a folder watched automatically instead of running a shortcut by hand every time. That is the gap a purpose-built tool is meant to close: the same idea, a model reading your files and proposing names, but with a batch preview before anything changes and a history you can roll back afterward. Files Magic AI's Magic Rename works this way, using Apple Intelligence, a built-in local model, or an optional Rename LLM depending on what your Mac supports, with everything processed on-device.
Sources & Further Reading
Apple Intelligence hardware and OS requirements, and the "Use Model" action's three sources: Apple Support, "How to get Apple Intelligence", Apple Support, "Use Apple Intelligence in Shortcuts on Mac".
The on-device Foundation Models framework Apple opened to developers: Apple Newsroom, "Apple's Foundation Models framework unlocks new intelligent app experiences", Apple Machine Learning Research, "Introducing Apple's On-Device and Server Foundation Models".
A worked example of the DIY Shortcuts build this guide describes, including where it fails on scanned PDFs: MacMost, "Using Apple Intelligence and Shortcuts To Rename Files".
Magic Rename's own engines and pricing: Files Magic AI's Magic Rename product page.
Frequently Asked Questions
The Bottom Line
Apple Intelligence gives you a real, capable language model to work with, not a finished renaming feature. Shortcuts lets you point that model at your files yourself, and it genuinely works for light, occasional use once you know to save the file extension separately and give the model a tightly worded prompt. Where it runs out of road is scale and consequence: no preview, no undo, and scanned documents that fail without telling you. That gap between "a model you can call" and "a tool that previews, applies, and lets you undo a rename" is exactly what a dedicated app like Magic Rename is built to close, using the same Apple Intelligence option under the hood when your Mac supports it.
For the fuller picture of this category, including cloud and BYOK renamers beyond just Apple's own model, see how AI file renaming works on Mac. For hands-on workflows built on Magic Rename specifically, read how to rename invoices, scanned receipts, and OCR-scanned documents. For naming conventions once your files are readable again, see our file naming conventions guide, or browse every 1dot.ai guide.
Want the Preview and Undo Step Built In?
Magic Rename reads your files on-device, using Apple Intelligence or a built-in local model, and shows you every name before anything changes.
Explore Magic RenameRead More Guides