Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Control Android devices via ADB. Use when user asks to tap, swipe, type, launch apps, take screenshots, or automate Android device interactions. --- name: android-use description: Control Android devices via ADB. Use when user asks to tap, swipe, type, launch apps, take screenshots, or automate Android device interactions. version: 0.1.0 author: iurysza license: MIT keywords: - android - adb - device-control - automation category: automation tech-stack: - Bun - ADB allowed-tools: Bash(android-use:*) --- Android Device Control CLI for Android device control vi Capability contract not published. No trust telemetry is available yet. 14 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
android-use is best for when workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Control Android devices via ADB. Use when user asks to tap, swipe, type, launch apps, take screenshots, or automate Android device interactions. --- name: android-use description: Control Android devices via ADB. Use when user asks to tap, swipe, type, launch apps, take screenshots, or automate Android device interactions. version: 0.1.0 author: iurysza license: MIT keywords: - android - adb - device-control - automation category: automation tech-stack: - Bun - ADB allowed-tools: Bash(android-use:*) --- Android Device Control CLI for Android device control vi
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 14 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Iurysza
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 14 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/iurysza/android-use.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Iurysza
Protocol compatibility
OpenClaw
Adoption signal
14 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
curl -fsSL https://raw.githubusercontent.com/iurysza/android-use/main/install.sh | bash
bash
curl -fsSL https://raw.githubusercontent.com/iurysza/android-use/main/install.sh | bash
bash
~/.config/opencode/skill/android-use/scripts/android-use check-device
bash
android-use check-device # List connected devices android-use get-screen # Get UI hierarchy (compact JSON) android-use tap 540 960 # Tap at coordinates android-use type-text "Hello" # Type text android-use key HOME # Press key android-use screenshot ./screen.png # Capture screen
bash
android-use check-device
bash
android-use get-screen
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Control Android devices via ADB. Use when user asks to tap, swipe, type, launch apps, take screenshots, or automate Android device interactions. --- name: android-use description: Control Android devices via ADB. Use when user asks to tap, swipe, type, launch apps, take screenshots, or automate Android device interactions. version: 0.1.0 author: iurysza license: MIT keywords: - android - adb - device-control - automation category: automation tech-stack: - Bun - ADB allowed-tools: Bash(android-use:*) --- Android Device Control CLI for Android device control vi
name: android-use description: Control Android devices via ADB. Use when user asks to tap, swipe, type, launch apps, take screenshots, or automate Android device interactions. version: 0.1.0 author: iurysza license: MIT keywords:
CLI for Android device control via ADB. Requires device connected with USB debugging enabled.
Before using this skill:
adb version should work)When this skill is not installed, agents should:
Run installer (recommended):
curl -fsSL https://raw.githubusercontent.com/iurysza/android-use/main/install.sh | bash
Installed structure:
~/.config/opencode/skill/android-use/SKILL.md~/.config/opencode/skill/android-use/scripts/android-use~/.config/opencode/skill/android-use/references/~/.config/opencode/skill/android-use/assets/~/.config/opencode/skill/android-use/repo/Verify installation:
~/.config/opencode/skill/android-use/scripts/android-use check-device
android-use check-device # List connected devices
android-use get-screen # Get UI hierarchy (compact JSON)
android-use tap 540 960 # Tap at coordinates
android-use type-text "Hello" # Type text
android-use key HOME # Press key
android-use screenshot ./screen.png # Capture screen
STEP 1: Check device
android-use check-device
STEP 2: Get screen state
android-use get-screen
text, contentDesc, resourceIdcenter field for coordinates (e.g., "center": [540, 289])/tmp/.ai-artifacts/skills/android-use/screen.jsonSTEP 3: Execute action
android-use tap <center_x> <center_y>android-use tap <field_x> <field_y> then android-use type-text "text"android-use swipe <x1> <y1> <x2> <y2> [duration_ms]android-use key <KEY_NAME> (HOME, BACK, ENTER, etc.)STEP 4: Verify and repeat
get-screen again to verify state change| Command | Args | Description |
| -------------- | ----------------- | ----------------------------------------- |
| check-device | [serial] | List/verify connected devices |
| wake | [serial] | Wake device + dismiss lock |
| get-screen | [serial] | Dump UI accessibility tree (compact JSON) |
| screenshot | [path] [serial] | Capture screen image |
| Command | Args | Description |
| ----------- | ----------------------------------- | ------------------ |
| tap | <x> <y> [serial] | Tap at coordinates |
| type-text | <text> [serial] | Type text string |
| swipe | <x1> <y1> <x2> <y2> [ms] [serial] | Swipe gesture |
| key | <keycode\|name> [serial] | Press key |
| Command | Args | Description |
| ------------- | -------------------- | -------------------------- |
| launch-app | <package> [serial] | Launch app by package name |
| install-apk | <path> [serial] | Install APK file |
| Option | Description |
| ------------------- | ---------------------------------- |
| -s, --serial <id> | Target specific device |
| --json | Output as JSON |
| --verbose | Verbose logging |
| --timeout <ms> | Timeout (default: 15000) |
| --adb-path <path> | Path to ADB binary |
| --full | Full XML output (for get-screen) |
Use these package names with launch-app:
| App Name | Package Name |
|----------|-------------|
| Chrome | com.android.chrome |
| Settings | com.android.settings |
| Phone / Dialer | com.android.dialer |
| Messages / SMS | com.google.android.apps.messaging |
| Camera | com.android.camera |
| Photos | com.google.android.apps.photos |
| Gmail | com.google.android.gm |
| Maps | com.google.android.apps.maps |
| YouTube | com.google.android.youtube |
| Play Store | com.android.vending |
| Calendar | com.google.android.calendar |
| Clock | com.google.android.deskclock |
| Calculator | com.google.android.calculator |
| Contacts | com.android.contacts |
| Files | com.google.android.documentsui |
| WhatsApp | com.whatsapp |
| Instagram | com.instagram.android |
| Facebook | com.facebook.katana |
| Twitter / X | com.twitter.android |
| Spotify | com.spotify.music |
| Netflix | com.netflix.mediaclient |
| Telegram | org.telegram.messenger |
| Discord | com.discord |
| Slack | com.Slack |
| Zoom | us.zoom.videomeetings |
| Teams | com.microsoft.teams |
| Outlook | com.microsoft.office.outlook |
| Drive | com.google.android.apps.docs |
| Keep / Notes | com.google.android.keep |
| Reddit | com.reddit.frontpage |
| Bluesky | xyz.blueskyweb.app |
Compact JSON (default):
get-screen outputs pre-calculated tap coordinates and filtered elements (99% smaller than XML):
{
"elements": [
{
"text": "Settings",
"resourceId": "com.android.settings:id/title",
"contentDesc": "",
"clickable": true,
"scrollable": false,
"focused": false,
"bounds": [42, 234, 1038, 345],
"center": [540, 289]
}
],
"clickable": [...],
"scrollable": [...],
"withText": [...],
"withContentDesc": [...]
}
Key attributes:
text - Visible textcontentDesc - Accessibility description (icons)resourceId - Element identifierclickable / scrollable - Interaction statescenter - Pre-calculated tap coordinates [x, y]bounds - Original bounds [left, top, right, bottom]Use pre-calculated center:
tap 540 289 (no manual math needed)Full XML (when needed):
get-screen --full for raw XML/tmp/.ai-artifacts/skills/android-use/screen.xmlCache location (memory-backed):
/tmp/.ai-artifacts/skills/android-use/screen.json (compact)/tmp/.ai-artifacts/skills/android-use/screen.xml (full)HOME, BACK, MENU, POWER, ENTER, TAB, DEL, ESCAPE, VOLUME_UP, VOLUME_DOWN, DPAD_UP, DPAD_DOWN, DPAD_LEFT, DPAD_RIGHT
When multiple devices connected:
check-device to see all devices with types[PHYSICAL] device[EMULATOR] device-s <serial> to ALL subsequent commandsandroid-use check-device
# Multiple devices connected (2):
# [PHYSICAL] 1A051FDF6007PA - Pixel 6
# [EMULATOR] emulator-5554 - sdk_gphone64_arm64
android-use -s 1A051FDF6007PA get-screen
android-use -s 1A051FDF6007PA tap 540 960
android-use get-screen # Get JSON with pre-calculated centers
# Search JSON for button, find center: [540, 289]
android-use tap 540 289 # Tap at center
android-use tap 540 184 # Focus field
android-use type-text "search term"
android-use key ENTER # Submit
android-use get-screen # Check if visible
android-use swipe 540 1500 540 500 # Swipe up (scroll down)
android-use get-screen # Check again
# Look for "OK", "Allow", "Accept" buttons in XML
android-use tap <button-center>
# Or dismiss with back
android-use key BACK
android-use launch-app com.android.chrome
android-use get-screen
# Find URL bar, tap it
android-use tap 540 184
android-use type-text "example.com"
android-use key ENTER
See the references/ directory for:
AGENTS_GETTING_STARTED.md - Setup and command guideAGENT_WORKFLOWS.md - End-to-end agent workflows01-taking-a-screenshot.md - Capture and verify screenshots02-opening-an-app.md - App launch and navigation03-tapping-a-button.md - Tap flow from screen JSON04-filling-a-form.md - Multi-step form input pattern05-scrolling-to-find-content.md - Scroll/search interaction loop06-handling-dialogs.md - Popup detection and dismissalUse --json for structured output:
android-use --json check-device
{
"success": true,
"exitCode": 0,
"data": { "devices": [...], "count": 1 },
"message": "Found 1 device(s)",
"trace": { ... }
}
adb kill-server && adb start-server/tmp/.ai-artifacts/skills/android-use/The compact JSON includes elements with ANY of:
text (visible labels)contentDesc (accessibility descriptions)clickable = true (interactive elements)scrollable = true (scrollable containers)This filters ~336 raw nodes → ~55 useful elements (4x smaller)
references/ folderMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/iurysza-android-use/snapshot"
curl -s "https://xpersona.co/api/v1/agents/iurysza-android-use/contract"
curl -s "https://xpersona.co/api/v1/agents/iurysza-android-use/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/iurysza-android-use/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/iurysza-android-use/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/iurysza-android-use/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/iurysza-android-use/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/iurysza-android-use/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/iurysza-android-use/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:29:42.862Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "when",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:when|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Iurysza",
"href": "https://github.com/iurysza/android-use",
"sourceUrl": "https://github.com/iurysza/android-use",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T02:13:49.841Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/iurysza-android-use/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/iurysza-android-use/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T02:13:49.841Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "14 GitHub stars",
"href": "https://github.com/iurysza/android-use",
"sourceUrl": "https://github.com/iurysza/android-use",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T02:13:49.841Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/iurysza-android-use/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/iurysza-android-use/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to android-use and adjacent AI workflows.