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

Hollow AgentOS reduces Claude Code token usage by 68.5% with JSON-native OS for AI agents
Hollow AgentOS is a JSON-native operating system for AI agents that cuts Claude Code's token usage by 68.5% by eliminating wasteful shell command overhead. It plugs into Claude Code via MCP, runs local inference through Ollama, and is MIT licensed.

Setting Up OpenClaw as an Always-On AI Assistant
OpenClaw, configured as an always-on AI assistant for a small dev team, is set up on a Railway server with Claude as the backend and integrates with Google Workspace, GitHub, and more.

Skill Scaffolder: Build OpenClaw Skills Without Writing Code
Skill Scaffolder is an open-source tool that lets users create OpenClaw skills by describing what they want in plain English. It handles the entire process—interviewing users, writing skill files, testing, and installation—without requiring YAML, Python, or config files.

Team Brain: A Shared Memory Plugin for Claude Code That Stores Team Knowledge in Git
Team Brain is a Claude Code plugin that stores team knowledge in a .team-brain/ folder within your repository. It automatically generates a BRAIN.md file capped at 180 lines for optimal Claude instruction accuracy and works across tools by creating .cursorrules and AGENTS.md files.