by yashab-cyber
Your Open Autonomous Android Agent — A production-ready, self-planning AI assistant powered by local/remote LLMs and accessibility-driven screen automation.
# Add to your Claude Code skills
git clone https://github.com/yashab-cyber/opendroidLast scanned: 7/6/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-07-06T08:19:28.699Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}opendroid is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by yashab-cyber. Your Open Autonomous Android Agent — A production-ready, self-planning AI assistant powered by local/remote LLMs and accessibility-driven screen automation. It has 114 GitHub stars.
Yes. opendroid passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/yashab-cyber/opendroid" and add it to your Claude Code skills directory (see the Installation section above).
opendroid is primarily written in Kotlin. It is open-source under yashab-cyber on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh opendroid against similar tools.
No comments yet. Be the first to share your thoughts!
OpenDroid isn't just another chatbot. It's a fully autonomous AI agent that lives on your Android phone and actually does things for you.
"Check if it's going to rain tomorrow, and if so, text my wife that I'll be late and set an alarm for 6 PM."
OpenDroid will plan this as 3 steps, execute each one, verify the results, and adapt if anything fails — all without you lifting a finger.
| Capability | Description |
|---|---|
| Self-Planning | Breaks complex commands into sequential steps with dependency tracking |
| Re-Evaluation | Monitors execution results and dynamically replans when steps fail |
| Compound Intent Guard | Smart detection of multi-action commands (e.g. "open WhatsApp and send message") |
| Contact Disambiguation | 4-tier contact resolution with fuzzy matching and relationship aliases ("call dad") |
| Action | Examples |
|---|---|
| System | Brightness, WiFi, Bluetooth, Flashlight, DND, Volume, Screenshot |
| Communication | Calls, SMS, WhatsApp messages, Email drafts |
| Productivity | Alarms, Timers, Reminders, Calendar events, Notes |
| Navigation | Google Maps directions, Uber/Ola booking |
| Media | Play/pause music, YouTube search, camera |
| Finance | UPI payments, bill splitting, currency conversion |
| Smart Home | Google Home device control |
Captures screenshots via Accessibility API and feeds them to vision-capable LLMs for real-time screen analysis. Falls back to accessibility tree text-scraping on older devices.
┌─────────────────────────────────────────────────┐
│ Memory System │
├──────────────┬──────────────┬───────────────────┤
│ Working │ Episodic │ Semantic │
│ (current │ (past task │ (long-term facts │
│ context) │ results) │ & preferences) │
├──────────────┴──────────────┴───────────────────┤
│ Procedural Memory │
│ (user-defined macro workflows) │
└─────────────────────────────────────────────────┘
Built with Jetpack Compose featuring a futuristic glassmorphic design:
#080C10) + Neon green (#00FF88) color systemNote: If the video doesn't play inline on GitHub, click here to download and watch it.
Clean architecture with Dagger-Hilt dependency injection:
com.opendroid.ai
│
├── 🤖 accessibility/ App automators (WhatsApp, SMS, Calls)
├── ⚡ actions/ 60+ action executors across 10 modules
├── 🧠 core/
│ ├── agent/ AgentLoop, PlanManager, IntentClassifier, VisionEngine
│ ├── llm/ 12 LLM providers, fallback chain, prompt engine
│ ├── memory/ 4-tier memory system + notification intelligence
│ ├── security/ Encrypted SharedPreferences (EncryptedSharedPreferences)
│ ├── service/ Foreground service, notification listener, boot receiver
│ └── voice/ Wake word, speech recognition, TTS engine
│
├── 💾 data/
│ ├── db/ Room database (7 DAOs, 7 entities, 3 migrations)
│ ├── models/ Unified data models (Plan, Memory, ChatMessage)
│ └── repository/ Repositories backed by Room & DataStore
│
├── 💉 di/ Hilt modules (App, Database, LLM)
└── 🎨 ui/
├── theme/ Glassmorphic design system
├── screens/ 16 screens (Chat, Plan, Memory, Settings, etc.)
├── viewmodel/ 8 ViewModels
└── components/ Reusable Compose components
OpenDroid supports 12 LLM providers with automatic failover:
| Provider | Models | Type |
|---|---|---|
| 🟢 Google Gemini | Gemini 2.0 Flash, Pro, Nano | Cloud + On-device |
| 🟣 Anthropic Claude | Claude Sonnet 4, Opus 4 | Cloud |
| 🔵 OpenAI | GPT-4o, GPT-4.1, o3 | Cloud |
| ⚡ Groq | LLaMA 3, Mixtral (ultra-fast) | Cloud |
| 🔷 DeepSeek | DeepSeek V3, R1 | Cloud |
| 🟠 Mistral AI | Mistral Large, Medium | Cloud |
| 🌐 OpenRouter | 200+ models via unified API | Cloud |
| 🤝 Together AI | Open-source model hosting | Cloud |
| 🔴 Cohere | Command R+ | Cloud |
| 🐙 GitHub Copilot | GPT-4.1, Claude via Copilot API | Cloud |
| 🏠 Ollama | Any local model (LLaMA, Phi, etc.) | Local |
| 🔧 Custom OpenAI | Any OpenAI-compatible endpoint | Self-hosted |
Smart Fallback: If your primary provider fails, OpenDroid automatically tries the next available provider in the chain.
# Clone the repository
git clone https://github.com/yashab-cyber/opendroid.git
cd opendroid
# Build debug APK
./gradlew assembleDebug
# APK output location
# → app/build/outputs/apk/debug/app-debug.apk
On first launch, OpenDroid will guide you through granting:
| Permission | Why |
|---|---|
| 🔓 Accessibility Service | UI automation, screen reading, app control |
| ⚙️ Write Settings | Toggle WiFi, Bluetooth, brightness |
| 🎤 Record Audio | Wake word detection & voice commands |
| 🔔 Notification Access | Smart notification reading & auto-reply |
| 📱 Post Notifications | Foreground service status |
In Settings, add your API key for any supported provider. OpenDroid works best with:
OpenDroid is free, open-source, and maintained by a solo developer. If it's helped you, consider supporting the project!
UPI (India): 8960457971
Email: yashabalam707@gmail.com
→ See DONATE.md for more ways to support
Contributions are welcome! See CONTRIBUTING.md for guidelines.
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)Found a vulnerability? Please report it responsibly. See SECURITY.md for details.
Copyright 2026 OpenDroid Contributors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.