LibShortcut

🌀 Cyclone Loader

by wheatwhole vTempest 9.1
iOS 16+
Requires
Utilities
Category
Jun 2026
Updated

You found a shortcut built on Cyclone, tapped run, and hit a wall because the framework it leans on isn’t on your iPhone yet. The Cyclone Loader exists for exactly that moment. It pulls the Cyclone function library onto your device locally, so any shortcut written against Cyclone has the code it needs to actually run.

How it works

Cyclone is a function library for the Shortcuts app — a shared toolkit of routines like global variables that persist after a shortcut stops, markdown-styled screens, a built-in auto-updater, and password encryption. Shortcuts built on top of it call those routines instead of reinventing them every time. The Loader’s single job is making sure that library is present and ready. You pass it a dictionary as input, and it loads Cyclone from a local install cache. If it suspects the framework is missing, the latest release now checks your shortcut library first before deciding to fetch a fresh copy.

Installing it

  1. Tap Add Shortcut on this page to open it in the Shortcuts app.
  2. Scroll the preview to the bottom and tap Add Shortcut to confirm.
  3. Run it once so the loader can build its local install cache.

You only need the Shortcuts app itself. There are no extra apps to download.

Putting it to work

Most of the time you won’t open the Loader directly. A shortcut that depends on Cyclone calls it quietly in the background, passes a dictionary as input, and gets the loaded framework back. If you’re building your own shortcut on Cyclone, you wire the Loader in as that first step so your code always has the library on hand, even on a device that has never seen the framework before. Running it manually is mainly handy for a quick check that everything installed cleanly, or to refresh the cache after an update.

Quick answers

Do I need this if I already have the Cyclone Library installed?

When the full library is present and current, a dependent shortcut can usually find it on its own. It earns its keep on a fresh device, or when something built on Cyclone can’t locate the framework. Rather than failing silently, it checks your library and installs Cyclone locally.

How is this different from the Cyclone Library itself?

The Library is the actual collection of functions, while the Loader is the small piece that makes sure that collection is present and ready to call before anything tries to use it.

Which iOS version does it need?

Cyclone uses newer Shortcuts actions, so iOS 16 or later is the safe floor. Older versions may add the shortcut fine but choke on some of the framework’s functions once they run.

You might also like