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 866 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!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
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") |
| Capability | Description |
|---|---|
| Background Downloader | Real network downloads (via WorkManager) with Pause/Resume, speed tracking, and ETA |
| Secure Authentication | Direct Android Keystore AES-GCM token storage to securely fetch gated Hugging Face models |
| Integrity Verification | Computes SHA-256 hashes and verifies LiteRT engine loading compatibility before marking READY |
| Local Model Import | Direct offline importing of catalog or freestanding custom .task / .litertlm files with JNI verification checks |
| 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/ Direct Keystore provider credentials + legacy plaintext migration
│ ├── 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.
jvmToolchain(21)). gradle/gradle-daemon-jvm.properties
makes ./gradlew select an installed JDK 21 automatically, so you do not have to
change JAVA_HOME — but a JDK 21 must be installed.# 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:
Found a vulnerability? Please report it responsibly. See SECURITY.md for details.
<