Cue

A native iOS AI assistant powered by Apple Intelligence, with persistent memory and an extensible skill system — no setup, no cloud
iOS Dev, Swift, AI
2025–2026
Cue hero
A port of the ZeroClaw agentic framework to iOS — built entirely in Swift, running on-device via Apple's Foundation Models, with no account and no mandatory network calls.
I use ZeroClaw on my laptop pretty much every day. It's an agentic framework with persistent memory, a skill system, and tool-calling built around whatever model you point it at. The frustrating part was that none of that existed on iOS. Every mobile AI app is just a chat interface that forgets everything when you close it.

Cue was built to fix that. It's a full port of the ZeroClaw runtime to Swift — same memory file format, same skill dispatch model, same agent loop — but running natively on iPhone using Apple's on-device Foundation Models. You open the app and you're immediately talking to an assistant that already knows who you are and what you were working on.
  • Rebuilt the ZeroClaw agent loop as a Swift actor using async/await and structured concurrency — same loop that runs on desktop, now running on-device on iOS 18
  • Full memory system: soul.md, memory.md, and agents.md in the same flat-file format as ZeroClaw, indexed with SQLite via GRDB
  • Skill system with bundled integrations for Calendar, Reminders, Files, Clipboard, and web search using iOS-native APIs
  • External provider support (OpenAI, Anthropic, Groq) as optional BYOK fallbacks when you want a more capable model

Contribution

iOS Architecture, Swift/SwiftUI,
Agent Runtime, Skill System
Memory System, Provider Abstraction, Security Policy

Stack

Swift 6, SwiftUI, Apple Foundation Models
GRDB (SQLite), EventKit, FileManager
AppIntents, Keychain, URLSession

Platform

iOS 18+ · iPhone 15 Pro or later
(Apple Intelligence for local inference)

Duration

Architecture & Design: 2 weeks
Agent Runtime: 4 weeks
Skills & Memory: 3 weeks
Ongoing