Marmy: A Self-Hosted Mobile App for Managing Multiple AI Coding Agent Sessions

Marmy is a self-hosted application built to manage multiple AI coding agent sessions remotely from a mobile device. The developer created it because existing tools, including Claude Code's Remote Control, were limited to viewing running sessions as conversation windows without the ability to start new sessions, browse files, or receive push notifications.
Architecture and Components
The system consists of two main parts:
- Rust agent: Runs on your machines (laptop, workstation, server, Raspberry Pi).
- iOS app: Runs on your phone to control everything.
Anything running in tmux shows up in the app and can be controlled. While built specifically for Claude Code, it works with any terminal-based AI agent.
Key Features from Source
- Org chart concept: You interact with a manager agent that starts worker sessions, monitors progress, sends instructions, and reports back to you.
- File browser: View code with syntax highlighting directly on your phone.
- Push notifications: Get alerts when sessions finish or need decisions.
- Voice mode: Call into any session hands-free. A Gemini-powered assistant reads status updates, you speak instructions, and it confirms before sending commands.
- Multi-machine support: View and control sessions across multiple machines from one app with a single session list.
- Privacy/security: Open source (MIT licensed), self-hosted, with no data leaving your network.
Availability
- Website: https://marmy.ai
- GitHub: https://github.com/marmy-ai/marmy
- iOS public beta: https://testflight.apple.com/join/v8HmNu1H
- MacMarmy: macOS menu bar app available from GitHub Releases (signed and notarized)
This tool is for developers who run multiple AI coding agent sessions across different machines and need centralized mobile management beyond simple chat interfaces.
📖 Read the full source: r/ClaudeAI
👀 See Also

Curated list of 260+ AI agents and tools with open-source and self-hosted focus
A comprehensive GitHub repository lists over 260 AI agents and frameworks, emphasizing open-source, self-hosted, and local-first options including Ollama, OpenClaw, and DeerFlow.

Collection of 177 OpenClaw SOUL.md Templates Organized into 24 Categories
A developer has compiled 177 ready-to-use SOUL.md templates for OpenClaw agents across 24 categories including Marketing, Development, Business, DevOps, Finance, Creative, Data, Security, Healthcare, Legal, HR, and Education. All templates are MIT licensed and available on GitHub.

Agentic Context Engine: Automated Agent Improvement Loop with 34.2% Accuracy Gain
An open-source tool automates the entire agent improvement loop from trace analysis to fix implementation, achieving 34.2% accuracy improvement on Tau-2 Bench in one iteration. The system uses Claude Code in a REPL environment to analyze failures and decide between prompt or code fixes.

Persistent Indexes Over Extraction: Architecture for a YouTube MCP Server
A developer shares architecture notes for building a YouTube MCP server that uses persistent local indexes instead of the common extract-and-forget pattern. Key decisions include a three-tier fallback system, SQLite + sqlite-vec for vector storage, embedding provider abstraction, and a separate visual search index.