{"id":51025565,"url":"https://github.com/parktest0325/im-not-finder","last_synced_at":"2026-06-21T19:30:55.498Z","repository":{"id":364629393,"uuid":"1268626046","full_name":"parktest0325/im-not-finder","owner":"parktest0325","description":"file explorer with ssh, adb or more..?","archived":false,"fork":false,"pushed_at":"2026-06-13T19:16:15.000Z","size":1467,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-13T21:14:09.211Z","etag":null,"topics":["adb","gui","ssh","tauri","terminal"],"latest_commit_sha":null,"homepage":"","language":"Svelte","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/parktest0325.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-13T18:50:29.000Z","updated_at":"2026-06-13T19:16:17.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/parktest0325/im-not-finder","commit_stats":null,"previous_names":["parktest0325/im-not-finder"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/parktest0325/im-not-finder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parktest0325%2Fim-not-finder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parktest0325%2Fim-not-finder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parktest0325%2Fim-not-finder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parktest0325%2Fim-not-finder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/parktest0325","download_url":"https://codeload.github.com/parktest0325/im-not-finder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parktest0325%2Fim-not-finder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34623906,"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-21T02:00:05.568Z","response_time":54,"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":["adb","gui","ssh","tauri","terminal"],"created_at":"2026-06-21T19:30:55.425Z","updated_at":"2026-06-21T19:30:55.490Z","avatar_url":"https://github.com/parktest0325.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# im-not-finder\n\nA unified **SSH + ADB workbench**: connect to a remote host (SSH/SFTP) or an Android\ndevice (ADB) and browse files, run a terminal, inspect bytes in a hex view, and\n**drag files straight out to your desktop** (auto scp/pull). It *looks* like a TUI\n(monospace, single-hue dark theme, box-drawing panels) but behaves like a GUI —\nhover highlights, drag \u0026 drop, resizable panels.\n\nBuilt with **Tauri v2 + Rust** (cross-platform) and a plain **Svelte 5 + Vite** frontend.\n\n![im-not-finder screenshot](docs/image1.png)\n\n## Why\nSSH file managers (WinSCP, Termix…) and ADB GUIs (scrcpy, ADB File Explorer…) exist\nseparately. Almost nothing gives you *both* protocols in one TUI-styled UI with\ndrag-to-desktop transfer and a built-in hex editor. This fills that gap.\n\n## Architecture\n```\nsrc/                       Svelte frontend (TUI look, GUI behaviour)\n  components/              ConnectionBar, FileTree, Terminal, HexView, ConnectDialog, …\n  lib/api.ts              typed wrappers over the Tauri command layer\n  styles/theme.css        the TUI palette\nsrc-tauri/src/\n  transport/mod.rs        `Transport` trait shared by both backends\n  transport/adb.rs        ADB backend (delegates to the system `adb` binary)\n  transport/ssh.rs        SSH/SFTP backend (russh + russh-sftp, pure Rust)\n  session.rs              live session + shell registry (Tauri managed state)\n  commands.rs             #[tauri::command] bridge\n```\n\nThe `Transport` trait (`list_dir`, `read_chunk`, `download`, `upload`, `exec`,\n`open_shell`) is the seam that lets one UI drive both protocols.\n\n## Prerequisites\n- Rust (stable), MSVC build tools, WebView2 (bundled on Windows 11)\n- Node 18+\n- `adb` on PATH (only for ADB sessions). SSH needs no external binary.\n\n## Run\n```bash\nnpm install\nnpm run tauri dev      # dev with HMR\nnpm run tauri build    # production bundle\n```\n\n## Status (MVP skeleton)\nImplemented \u0026 compiling; the app launches. End-to-end verification against a real\ndevice/host is still pending for some paths.\n\n| Area | State |\n|------|-------|\n| TUI layout, panels, splitters | implemented |\n| ADB: device list, file tree, hex, terminal, pull/push | implemented |\n| SSH: connect (password/key), file tree, hex, terminal, scp | implemented |\n| Drag-out to desktop (stage → native drag) | implemented, needs gesture/icon polish |\n| Hex view | read-only, paged (virtualisation TODO) |\n\n### Known TODO\n- Drag-out: the remote file is staged to a temp dir then handed to the OS drag;\n  the gesture timing and drag icon need refinement on real hardware.\n- Hex: large-file virtual scrolling; editing/writing.\n- SSH host-key verification is currently trust-on-first-use (accepts any key).\n- Transfer progress UI, host bookmarks, ADB `run-as`/`su` elevation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparktest0325%2Fim-not-finder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fparktest0325%2Fim-not-finder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparktest0325%2Fim-not-finder/lists"}