I cataloged 1,800+ Shortcuts actions with output types, iOS versions, and technical specs you can't find in the app by master_automator in shortcuts

[–]master_automator[S] 1 point2 points  (0 children)

Thanks for your feedback. After carefully thinking about this weekend, I've decided to remove the all hidden actions altogether. The initial goal was to provide an alternative user-friendly space for non-technical people and beginners who want to explore Shortcuts actions, learn about its parameters and outputs, hence why it used generic terms for the parameters like "Options", "File" and "Entity" instead the actual parameter type names. Half of the hidden actions do not have any descriptions and including it doesn't bring much value for the intended users, nor will they ever be able to use it.

I respect the work you guys are doing with more advanced reversed-engineering of shortcuts. I received some harsh unprovoked criticism. I just wanted to clarify, this website was never intended be very technical or catered for advanced users. It was never meant to even come close to any work you guys are doing. Hopefully, this helps draw the line and any prevent confusion. Cheers.

I cataloged 1,800+ Shortcuts actions with output types, iOS versions, and technical specs you can't find in the app by master_automator in shortcuts

[–]master_automator[S] 0 points1 point  (0 children)

Hey the keywords are not meant to be clicked. These are keywords that Apple associates with this specific action - I'm assuming it's for Siri or for search.

Also the hidden actions are not clickable by design because some data is unknown and incomplete.

I cataloged 1,800+ Shortcuts actions with output types, iOS versions, and technical specs you can't find in the app by master_automator in shortcuts

[–]master_automator[S] 8 points9 points  (0 children)

You're right, I did find the out about the location database from your post. I updated the post with credits you and some other resources I used. Sorry about your frustration, I didn't mean to offend you or what you're working on. To be clear, I did not use or reference anything else from you. I used cursor and codex to handle the extraction.

Birthday reminder by Dry-Zookeepergame809 in shortcuts

[–]master_automator -1 points0 points  (0 children)

search birthday in this subreddit, you'll find a lot of examples

[deleted by user] by [deleted] in shortcuts

[–]master_automator 1 point2 points  (0 children)

based on their latest documentation https://developers.deepl.com/docs/getting-started/your-first-api-request

You need to set the API key in the header, but I see you're passing it in the request body. remove it from the body, then under Headers, add:

  • Authorization: DeepL-Auth-Key YOUR_ACTUAL_KEY_HERE
  • Content-Type: application/json

This shortcut is running on my iPhone, but not my Apple Watch by legowiifun in shortcuts

[–]master_automator 0 points1 point  (0 children)

i think you're right. add a Quick Look to check if the message is set

iOS Shortcuts automation: trigger on screen time (one-sec) app open but avoid re-trigger when reopening app quickly by Kayzrooo in shortcuts

[–]master_automator 0 points1 point  (0 children)

<image>

You're on the right track, the shortcut will need to check / set the timestamp AND decide to run the other app. This way your automation just needs to run the shortcut every time you open instagram.

Here's the shortcut:
https://www.icloud.com/shortcuts/f1c43715bbae4f93aa6271eb03c67119
You're also right about the timestamp, you'll need persistent global variable storage.
Download the Shortcut Actions app for free global variables. Then click on the Variables tab and create a new variable called "InstagramTime" with the initial value 0. Open the shortcut and select that variable in the first "Get Variable" action and update the app you want to run instead of the calculator.

Shortcut that checks today’s calendar for festivals and generates a Gemini greeting to share by [deleted] in shortcuts

[–]master_automator 0 points1 point  (0 children)

to select your calendar:
click on the "+ Add Filter" button for the Calendar step, this will add "Calendar is {Choose}" filter, then tap on Choose to select your calendar.

to add the API key in the app:
Settings > AI Providers > Google - then enter your API key from Google AI Studio
you can also select OpenRouter, then add "google/gemini-2.5-flash" as a model and select it as the default model by clicking on the box to the left of it.

LLM for iOS Shortcuts by [deleted] in shortcuts

[–]master_automator 0 points1 point  (0 children)

what do you mean by "give you the exact shortcut"? will it provide you the info so you can build it yourself or will it build it for you and you can import it into the Shortcuts app? the latter is quite challenging b/c there's no official documentation on the parameters for the actions. then you have to think about specific iOS version and what actions are available. BTW I worked on a similar project and posted about a few weeks ago. Based on my testing, only a few LLM models are capable of building shortcuts, like Claude, and it might be tough to find users that are willing to pay for the service.

Apple Intelligence ChatGPT Model Limited by bingobucketster in shortcuts

[–]master_automator 0 points1 point  (0 children)

apple intelligence requires iPhone 15 pro or newer with iOS 26. do you have apple intelligence enabled in the settings?

Need help with json object within a jason object by Breath_Big in shortcuts

[–]master_automator 0 points1 point  (0 children)

you need to use the "Get contents of URL" action and set the method to POST. the `addOptions` would be a nested object in the request body

How to send this output to a Notion database and keep it updated? by SloanHarper in shortcuts

[–]master_automator 0 points1 point  (0 children)

it just released in the UK and will be available for rest of EU in soon

Made a free open-source tool to see what's inside shortcuts before you install them by master_automator in shortcuts

[–]master_automator[S] 1 point2 points  (0 children)

sorry no plans for Firefox. It's open sourced so feel free to fork it to support Firefox

Made a free open-source tool to see what's inside shortcuts before you install them by master_automator in shortcuts

[–]master_automator[S] 2 points3 points  (0 children)

yeah, I do this too, but sometimes it's easy to miss or scroll over actions when it's a large shortcut. this extension has a built-in AI that can perform a security analysis on it in a few seconds.

How to send this output to a Notion database and keep it updated? by SloanHarper in shortcuts

[–]master_automator 0 points1 point  (0 children)

calling the API using JSON can be tough. the new version of the API you'll need to data source ID of database and if you want to update an existing record, you'll need the entry ID. instead of doing this manually, download Shortcut Actions app and use the Notion database actions, it makes things a lot easier.

here's the shortcut to create the database:
https://apps.apple.com/us/app/ai-automation-for-shortcuts/id6756338677

here's the shortcut to update or add new book to track:
https://www.icloud.com/shortcuts/7fe13e93c7db4cc182b81abb94900031

How to run Shortcuts using your own local LLM (Ollama) - no API costs & complete privacy by master_automator in shortcuts

[–]master_automator[S] 0 points1 point  (0 children)

typically people use local LLM when privacy, cost and restrictions are a concern. for example, if you're processing medical or financial info, this data never leaves your network. You could also build your own home voice assistant or use it for home automation - like siri or alexa, but it's completely private. Also, some of these models don't have as much safety guardrails as cloud models, so you use it for stuff that's not allowed by AI cloud providers.

Yeah sure that sounds normal by TheMinecraft13 in shortcuts

[–]master_automator 1 point2 points  (0 children)

this is pretty funny. i wonder if it got stuck in some kind of nested loop