Off Grid: Utilizing Phone Hardware for Offline AI Applications

Off Grid is an open-source application designed to utilize the powerful GPU in your smartphone to perform AI tasks offline, without relying on cloud services. This includes text generation using llama.cpp at 15-30 tokens per second with any GGUF model, image generation with Stable Diffusion running NPU-accelerated on Snapdragon NPUs taking 5-10 seconds per image, voice transcription with Whisper, and vision AI with models like SmolVLM and Qwen3-VL.
The app operates entirely offline, ensuring no data leaves your device, which is particularly crucial in scenarios with no internet access, such as flights, in countries with censorship, or in compliance-heavy environments like hospitals. For Android, the app is available as an APK from GitHub, while iOS users need to build the app from source code.
To run Off Grid, Android users should use npm install followed by cd android && ./gradlew clean && cd .. and npm run android. iOS setup requires cd ios && pod install && cd .. and npm run ios. Ensure Node.js 20+ and Xcode 15+ for iOS, or JDK 17 and Android SDK 34 for Android are installed. This type of offline capability is particularly useful for developers concerned about data privacy and those working in internet-restricted or data-sensitive environments.
📖 Read the full source: HN AI Agents
👀 See Also

Homebutler: MCP Server for Multi-Server Homelab Management via Claude
Homebutler is a Go binary with a built-in MCP server that lets Claude manage multiple servers over SSH without installing agents on remote machines. It provides 9 tools including system status monitoring, Docker container management, port scanning, and alert rules.

Claude-Code v2.1.76 adds MCP elicitation, worktree optimizations, and numerous fixes
Claude-Code v2.1.76 introduces MCP elicitation support for structured input mid-task, adds worktree.sparsePaths for monorepo efficiency, and fixes 20+ issues including deferred tool schema loss, slash command problems, and Remote Control session stability.

mnemos: A Persistent Memory Layer for AI Coding Agents (Go, MCP-Native, No Python)
mnemos is a Go-based MCP-native memory layer for AI coding agents. The author built a verifier to measure lift: +40% aggregate on read-side scenarios, but only 53% write-side capture rate after iterative fixes.

Semble: Code Search for AI Agents Using 98% Fewer Tokens Than grep+read
Semble is an open-source code search library for AI agents that combines static Model2Vec embeddings with BM25, running entirely on CPU. It indexes a repo in ~250ms and answers queries in ~1.5ms, achieving 0.854 NDCG@10 — 99% of a 137M-parameter transformer's quality — while using 98% fewer tokens than grep+read.