TwoMillionKit: Use Private Cloud Compute in MacOS 27 Foundation Models Without an Entitlement Developer Guilherme Rambo created TwoMillionKit, a Swift package that allows any Mac app to use Apple's Private Cloud Compute models via the `fm` command-line tool without requiring a special entitlement. The workaround bypasses Apple's restriction limiting PCC access to developers with fewer than two million first-time App Store downloads, but it does not work for sandboxed Mac App Store apps. Guilherme Rambo: Apple ships the fm command-line tool in macOS 27, which can be used to run inference with the local system model or Private Cloud Compute from Terminal or scripts. You know what else can run command-line tools? Mac apps 😃I decided to spend some of my Codex tokens and take GPT 5.6 Sol for a spin. I asked it to create this Swift package. All it does is provide a LanguageModel implementation that uses the fm command-line tool under the hood, meaning that any Mac app can use the Private Cloud Compute model without requiring a special entitlement from Apple.The main limitation is that this will not work for sandboxed Mac apps, so any Mac app distributed via the Mac App Store won’t be able to use it. But for developers of Mac apps distributed outside the Mac App Store, this provides a simple and entitlement-free way to use Private Cloud Compute in their apps. Use sparingly and at your own risk. This is a workaround for Apple’s current limitation https://daringfireball.net/linked/2026/06/13/pcc-severely-limited-third-party-developers that only grants access to Private Cloud Compute to “developers in the App Store Small Business Program with fewer than two million first time App Store downloads”. Hence Rambo’s clever name for the framework.