An Android-first local AI Agent app
Lyra Code is an Android-first local AI Agent app. It brings model chat, file tools, native downloads, command execution, web search, MCP client/server support, SSH, WebDAV, FTP/FTPS/SFTP, a built-in mini server, backups, Skills, device diagnostics, and usage statistics into a mobile workflow.
| Chat | Settings | Agent Tools |
|---|---|---|
![]() |
![]() |
![]() |
- OpenAI Chat Completions-compatible APIs, Anthropic Messages API, and Gemini GenerateContent API.
- Multiple providers, API keys, base URLs, saved models, custom system prompts, and reasoning-depth presets.
- Fast provider/model/prompt switching from the chat action panel.
- HTTP API URLs are supported with an explicit security warning.
- Workspace/global file operations, file search, code editing, and change review.
- Native HTTP/HTTPS downloads with redirects, headers, progress, and optional SHA-256 verification.
- Command execution through Termux RunCommandService with stdout/stderr feedback; only obvious high-risk blacklist patterns are blocked.
- TODO planning, process records, file-change review, and diff visualization.
- Web search, web page reading, source annotation, and a configurable domain blacklist to avoid unwanted, spammy, or low-quality sources.
- Time/location awareness, configuration management, background tasks, and scheduled tasks.
- Device information page covering manufacturer, model, Android version, CPU/hardware, ABI, memory, storage, display, network, Bluetooth, and battery state.
- Hardware inspection Agent for device diagnostics, troubleshooting, and hardware comparison.
- Installed-app recognition, optional Shizuku Shell, and optional Root command tools.
- System-level tools can be disabled independently.
- MCP Client: connect to remote MCP servers over Streamable HTTP or SSE.
- MCP Server: expose Lyra Code's enabled local tools and connected MCP tools to other MCP clients over local/LAN HTTP, with configurable port and optional auth key.
- SSH: password/key login for Linux, Windows, and Git servers, with user-approved command execution.
- WebDAV: file listing, PROPFIND, search, upload, download, and cloud backup.
- FTP / FTPS / SFTP: add storage servers, list directories, search files, upload, and download through AI tools or manual configuration.
- Natural-language configuration management for MCP, SSH, WebDAV, FTP/FTPS/SFTP, Skills, and Agent tools.
- Built-in local HTTP/HTTPS static file server for previewing and debugging local websites, documentation sites, and generated front-end projects.
- Configurable host, port, password authentication, custom domains, HTTPS certificate chain/private key, and force-HTTPS mode.
- Terminal-style live logs for connections, resource loading, 404/auth failures, and page JavaScript errors.
- The Agent can start/stop the mini server and inspect logs after user approval.
- Import zip packages or a single
SKILL.mdfile. - Import a full GitHub / Gitee / GitLab repository.
- Manually create a Skill by editing
SKILL.md. - The Agent first reads
name/descriptionto judge relevance, then reads internal files on demand to avoid context bloat.
- Image upload, photo capture, cropping, rotation, brush annotation, and mosaic annotation.
- Thumbnail preview, full-screen preview, and save support for user/AI images and videos.
- Markdown, tables, syntax-highlighted code blocks, LaTeX math, and media Data URL rendering.
- Preview and save AI-returned base64 media, remote URLs, and local media files.
- Light, dark, and system-following theme modes.
- Optional Material You dynamic color, applying wallpaper-derived colors without changing the app layout.
- Adjustable font size with live preview, system-following mode, and a wider custom range.
- Refresh-rate preference: system smart mode, 30 Hz, 60 Hz, 90 Hz, or 120 Hz. The final effective rate still depends on device and Android display policy.
- Export/import profile data, conversations, model providers, MCP, SSH, WebDAV, FTP/FTPS/SFTP, system prompts, Skills, and immersive roleplay scenarios.
- Local zip backup and WebDAV cloud backup, with supplement import mode and deduplication.
- Safe export without API keys, or full migration export with secrets included.
- Counts conversations, messages, user-input tokens, and AI-output tokens, including reasoning, tool context, file reads, command output, and repeated context.
- Offline token estimation without a network dependency.
- Daily, weekly, monthly, yearly, total, and historical date-range views.
- Import character scenario packages and configure AI nickname, avatar, chat background, and sticker shortcodes.
- Separate history between normal chat and immersive roleplay.
- Affection state, sticker replacement, and character memory.
- Chat-bubble UI optimized for roleplay sessions.
app/ Android application module
app/src/main/java/... Kotlin / Jetpack Compose source code
third_party/jlatexmath/ JLaTeXMath Android fork for LaTeX rendering
example-img/ README screenshots
gradle/ Gradle Wrapper configuration
- Android Studio or command-line Android SDK
- JDK 11+
- Android SDK 36
- Gradle Wrapper
Build a debug APK:
.\gradlew.bat assembleDebugThe generated APK is usually under:
app/build/outputs/apk/debug/
For release builds, configure signing in Android Studio manually. Do not commit signing keys, keystores, API keys, .env, local.properties, or local private files.
Before using run_command, enable external app calls in Termux:
mkdir -p ~/.termux && (grep -qxF 'allow-external-apps=true' ~/.termux/termux.properties || echo 'allow-external-apps=true' >> ~/.termux/termux.properties) && termux-reload-settingsThen grant the Termux communication permission in Lyra Code settings. If permission is not granted, run_command is disabled automatically.
Lyra Code may handle API keys, SSH passwords/private keys, MCP tokens, WebDAV/FTP credentials, conversations, local files, and remote server output. Please note:
- HTTP API, MCP, WebDAV, FTP, and mini server endpoints are insecure unless protected by HTTPS/TLS or a trusted network.
- Exposing the mini server to LAN, tunneling, or public networks may leak local files if the served directory, authentication, or HTTPS configuration is wrong. Review the workspace and password before enabling external access.
- Review tool calls before allowing AI to execute commands, edit files, upload/download files, or operate remote servers.
run_commandno longer uses a fixed command allowlist, but it still blocks obvious high-risk operations such asrm -rf /, writes to/dev/block, and filesystem formatting commands. Review commands before approving them.- The web search blacklist is stored locally. Plain domains are exact matches:
x.comblocks onlyx.com, whilewww.x.commust be added separately. Use wildcard rules such as*.x.comto block subdomains; add bothx.comand*.x.comwhen you want to block the root domain and all subdomains. - Backup files containing secrets must be stored carefully and must not be shared publicly.
- This project does not verify that remote scripts, MCP servers, Skill repositories, or SSH commands are trustworthy.
This project does not accept external pull requests. If you have feedback or suggestions, please submit an issue. If you need long-term modifications, fork this repository for independent maintenance or contact the repository owner.
This project uses a dual-license model. The original Lyra Code source code is available under AGPLv3-or-later. A commercial license is required for closed-source distribution, private modifications, commercial exceptions, or use cases where you do not want to comply with AGPL copyleft obligations. Third-party components remain governed by their own licenses.
See LICENSE and THIRD_PARTY_NOTICES.md for details.



