{"id":51151095,"url":"https://github.com/null-dev/hermes-android-x","last_synced_at":"2026-06-26T06:02:55.460Z","repository":{"id":362580192,"uuid":"1259788805","full_name":"null-dev/hermes-android-x","owner":"null-dev","description":"Rewrite of https://github.com/raulvidis/hermes-android","archived":false,"fork":false,"pushed_at":"2026-06-04T22:39:10.000Z","size":207,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-05T00:11:13.947Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/null-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-04T21:27:56.000Z","updated_at":"2026-06-04T22:39:14.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/null-dev/hermes-android-x","commit_stats":null,"previous_names":["null-dev/hermes-android-x"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/null-dev/hermes-android-x","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-dev%2Fhermes-android-x","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-dev%2Fhermes-android-x/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-dev%2Fhermes-android-x/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-dev%2Fhermes-android-x/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/null-dev","download_url":"https://codeload.github.com/null-dev/hermes-android-x/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-dev%2Fhermes-android-x/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34805073,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-26T02:00:06.560Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-26T06:02:54.043Z","updated_at":"2026-06-26T06:02:55.439Z","avatar_url":"https://github.com/null-dev.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# hermes-android-x\n\nGive your Hermes agent hands on a real Android phone.\n\nRe-write of https://github.com/raulvidis/hermes-android, with the goal of improving stability and performance.\n\n## How it works\nThe phone runs a token-authenticated HTTP server (`0.0.0.0:8765`); the agent connects\ndirectly. All actions serialize through one command queue for reliability.\n\n## Setup\n1. Build/install the app (`mise run build-apk`; `adb install ...`).\n2. Enable the accessibility service; optionally grant SMS/Call/Contacts/Location,\n   screen recording, and Notification access.\n3. Tap **Start bridge**; copy the URL + token shown.\n4. Set `ANDROID_BRIDGE_URL` and `ANDROID_BRIDGE_TOKEN` in the agent env.\n5. `android_ping` to confirm.\n\n## Tools\n\n### Core / navigation\n- `android_ping` — connectivity and device info\n- `android_read_screen` — active app accessibility tree with top-level `window` metadata\n- `android_tap` — tap by coordinates or `node_id`\n- `android_type` — type into the focused field\n- `android_tap_text` — tap the first node whose text matches\n- `android_long_press` — long-press by coordinates or `node_id`\n- `android_drag` — drag between two points\n- `android_pinch` — two-finger pinch/zoom\n- `android_swipe` — swipe in a direction\n- `android_scroll` — scroll a node or the screen\n\n### Screen inspection\n- `android_screenshot` — capture a PNG screenshot\n- `android_find_nodes` — search the accessibility tree\n- `android_describe_node` — get full details for one node\n- `android_screen_hash` — SHA-256 digest of current screen content\n- `android_diff_screen` — compare current screen to a prior hash\n\n### Apps / system\n- `android_open_app` — launch an app by package name\n- `android_press_key` — press system keys such as back, home, recents\n- `android_current_app` — return the foreground package\n- `android_get_apps` — list installed launchable apps\n- `android_wait` — wait for an element to appear\n- `android_send_intent` — fire an Android intent\n- `android_broadcast` — send a broadcast intent\n\n### Clipboard / comms / sensors\n- `android_clipboard_read` — read clipboard text\n- `android_clipboard_write` — write clipboard text\n- `android_send_sms` — send an SMS on telephony devices\n- `android_call` — initiate a phone call\n- `android_search_contacts` — search contacts\n- `android_location` — get last known location\n- `android_media` — control media playback\n- `android_speak` — speak text via TTS\n- `android_speak_stop` — stop TTS\n\n### Notifications / events\n- `android_notifications` — read current notifications\n- `android_events` — read recent accessibility events\n- `android_event_stream` — collect live SSE events\n- `android_widgets` — list installed widget providers\n\n## Develop\n- `mise run test-py` — Python unit tests\n- `mise run test-android` — Kotlin unit tests\n- `mise run test-device` — instrumented tests on a connected phone\n- `mise run build-release-apk` — assemble the release APK\n- `mise run build-debug-apk` — assemble the debug APK\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnull-dev%2Fhermes-android-x","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnull-dev%2Fhermes-android-x","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnull-dev%2Fhermes-android-x/lists"}