Files Magic AI · Editorial

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

Verified against macOS 26 Tahoe·Updated August 2026·10 min read
Quick answer: Apple Intelligence does not rename files on its own. There is no setting for it anywhere in macOS. What it offers is a language model, either running on your Mac or on Apple's Private Cloud Compute servers, that the Shortcuts app can call through a "Use Model" action. You can chain that into your own Finder Quick Action to batch-rename files, and it works, but it has no preview screen, no undo button, and quietly skips scanned documents with no readable text. A dedicated tool built on the same underlying model, including Files Magic AI's Magic Rename, wraps that same capability in a batch preview and history you can roll back.

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.

If your Mac is Intel-based
None of the Apple Intelligence options in this guide will be available to you, including the "Use Model" action itself. A dedicated app with its own bundled local model, rather than one that depends on Apple Intelligence specifically, is the only route to on-device AI renaming on an Intel Mac.

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.

Private, fastest, weakest on images

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.

Same privacy model, more capability

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.

Third-party, usable without an account

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.

Step 1

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 later
Step 2

Add "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 input
Step 3

Pull 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 shortcut
Step 4

Call "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 step
Step 5

Rename 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 breaks
For PDFs

The 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 below

Where 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.
The honest summary
This is a real, working automation, not a myth or a rumor. It is also a hand-built tool with sharp edges, closer to a personal script than a finished product, which is the right trade for some people and the wrong one for anyone renaming financial or otherwise important documents in bulk.

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.

QuestionDIY Shortcuts BuildDedicated App (e.g. Magic Rename)
Setup requiredBuild it yourself in ShortcutsInstall the app, done
Preview before renamingNo, add your own Quick Look stepYes, batch preview by default
One-click undoNoYes
Handles scanned PDFs with no text layerFails silently unless you add OCR firstYes, on-device OCR built in
Folder/watch automationPossible with a separate Folder Action shortcutNot yet a built-in feature
Runs fully offlineYes, if you choose On-Device in "Use Model"Yes, by default
CostFree (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

Does Apple Intelligence rename files automatically?
No. There is no setting in Finder or System Settings that renames files for you. Apple Intelligence is a set of on-device (and optionally server-based) language models that apps and Shortcuts can call into. Renaming only happens if something, a Shortcut you build, or a third-party app like Files Magic AI's Magic Rename, calls that model and applies the result to a file.
What Mac do I need to use Apple Intelligence for anything, including renaming?
An Apple Silicon Mac (M1 or later, Intel Macs cannot run it), macOS 26 Tahoe or later, about 7GB of free storage for the model files, and Apple Intelligence turned on in System Settings. Full functionality is currently strongest with the system language set to English.
Can I build my own file renaming automation with Apple Intelligence?
Yes, using the Shortcuts app. Set up a shortcut as a Finder Quick Action that receives files, add "Repeat with Each" to loop over a batch, a "Use Model" action with a prompt describing the filename you want, and a "Rename File" action to apply it. It works, but it is a DIY build with no preview screen and no one-click undo, so mistakes are more painful to fix than in a dedicated app.
What are the three options inside the "Use Model" action in Shortcuts?
On-Device, which runs Apple's own model entirely on your Mac with nothing sent anywhere; Private Cloud Compute, which sends the request to Apple's own servers for extra capability while keeping the same privacy guarantees Apple applies to on-device processing; and ChatGPT, which routes the request to OpenAI instead, usable without an account for basic requests or linked to your ChatGPT account for extended ones.
Why does my DIY Apple Intelligence rename shortcut fail on some files?
The two most common causes: a scanned PDF or image-based document with no real text layer returns nothing for the model to read, so a shortcut built around extracting text first will silently skip it. And the on-device model, while fast and private, is a small model built for short, structured text tasks, not for describing a busy photo in detail, so image renaming through the On-Device option specifically is the weakest case. Switching that one action to Private Cloud Compute or adding OCR before the model call fixes most of these.
Is there a native way to preview an Apple Intelligence rename before it happens?
Not in the DIY Shortcuts version. Shortcuts will run the rename immediately once you tap or trigger it; the only way to check the result beforehand is to add a Quick Look or a confirmation dialog step yourself, which most tutorials skip. Dedicated renaming apps, including Files Magic AI's Magic Rename, build a preview-then-apply step in by default.
Does a third-party app like Magic Rename use Apple Intelligence?
Files Magic AI's Magic Rename can, as one of three engine options: Apple Intelligence (on Macs that support it), a built-in local model that works without it, or an optional Rename LLM download for broader language coverage. This is the same underlying idea as the DIY Shortcuts build, an app calling a language model to read a file and propose a name, but wrapped in a batch preview, undo history, and no Shortcuts assembly required.

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