DSH Tether
Use the DeepSeek Harness on your dev machine, from your phone.
Across networks, peer to peer, through no server at all.
No relay to configure, no shared Wi-Fi, no Linux on your phone.
An independent community project. Not affiliated with, partnered with, authorised by, or endorsed by DeepSeek.
No DeepSeek employee or upstream DeepSeek Harness team member is involved in this repository.
中文 · English
DSH Tether carries the DeepSeek Harness web interface to your phone over a direct peer-to-peer connection. The agent keeps running on the machine your code lives on, and the phone gets DSH's own full interface — conversations, tool calls, approvals and settings, not a reimplementation of them. Pair once with a 6-digit code; after that the two ends find each other whatever network they are on.
The case it solves
You are not on your machine's network, and you do not want a server in the middle.
Reaching your own dev machine from a phone usually asks for one of two things: both ends on the same LAN, or a relay you deploy, configure and trust. This asks for neither. The two ends hole-punch to each other through iroh, and once they do, nothing passes through a third party; the fallback relay only ever carries ciphertext it cannot read.
If you only use your phone on the same Wi-Fi as your machine, you don't need any of this — a LAN setup is simpler.
Download and install
| Where | Download | How |
|---|---|---|
| Machine | — | dsh plugin --profile web add dsh-plugin-tether |
| Phone | dsh-tether-<version>-arm64.apk from the Release |
Signed — install it directly |
The plugin carries a small Rust sidecar that owns the iroh connection, shipped as one package per platform; installing pulls only the one matching your system, with nothing to choose.
The phone build is split by CPU architecture. Any Android phone from the last decade takes arm64; arm is for 32-bit legacy devices, and x86 / x86_64 are for emulators and ChromeOS. Picking the wrong one simply gets refused at install time.
You can also build the sidecar from source (needs Rust):
git clone https://github.com/zexadev/dsh-tether && cd dsh-tether
cargo build --release -p tether-host
dsh plugin --profile web add .
Pair
Start dsh web as you normally would, then click Connect phone at the bottom of the sidebar. You get one line to copy:

On the phone, open DSH Tether → Add computer → paste that whole line → name the computer → connect.
From then on the app connects by itself when you open it.
Features
Direct across networksThe two ends hole-punch to each other through iroh, and once connected nothing passes through a third party. Phone on 4G/5G and machine on home broadband works — no public IP, no tunnel service, no relay of your own. Only a failed hole-punch falls back to a relay, which carries ciphertext it cannot read. |
DSH's own interfaceWhat runs on your phone is DSH's own web interface, not a reimplementation: conversations, tool calls, approvals and settings are all there. Narrow screens get adjustments — the sidebar becomes an overlay drawer, the settings dialog puts its navigation on top, and content takes the full width. |
Several machinesMy computers, at the bottom of the phone's sidebar, keeps every machine you have paired: switch, rename, remove, or add another. Changing machines never means re-entering credentials, and Connect phone on the computer mints a fresh code any time. |
Approval notificationsWhen the agent is waiting on your approval, the phone raises a system notification. You approve inside DSH's own interface — this plugin deliberately does not answer approvals for you; it only carries "it's waiting for you" to your lock screen. |
Security
- Pairing is a 6-digit CSPRNG code, valid 10 minutes, 3 attempts per window. After pairing, access is granted by the phone's iroh public key, which iroh's TLS verifies and nobody can forge.
- An unpaired peer cannot reach your interface: proxy streams are only served on a connection that already completed the control-stream handshake, and an unpaired connection may send at most 512 bytes before being rejected.
- Traffic is end-to-end encrypted by iroh (QUIC/TLS). When hole-punching succeeds it touches no third party; when it falls back, the relay only carries ciphertext it cannot read.
- The plugin's own two HTTP routes apply the same browser-trust rules dsh applies to
/api: theHostmust be a loopback authority, an explicit cross-site marker is refused, and an attachedOriginmust match the Host. Cross-site requests from a malicious page and DNS-rebinding attempts both get a 403. - Known limit: those rules stop a browser from being used as a confused deputy; they do not stop a local process. A local process presents a loopback
Host, so it can mint a pairing code and pair itself as a "phone" — meaning an attacker who can already run code on your dev machine can turn that into long-term access. Don't run this plugin on a machine where you run untrusted code.
Known limitations
- Android only. iOS is not planned for now.
- The app connects when you open it and holds no background connection — Android's doze would not let it anyway.
- The interface on the phone is DSH's own; the narrow-screen fit comes from minimal injected styles, so a dsh layout change may need a follow-up here.
- Verified against dsh
0.1.0-rc.7. dsh is in developer preview — check this line before assuming a newer dsh works.
What has been verified
Direct cross-network connection is the whole point of the project, so here is the evidence rather than the claim. With the phone's Wi-Fi off and only 5G, and the machine on home broadband, the plugin reported a public address on the selected path — meaning the two ends punched through to each other and the relay was never used. The first screenshot above is the phone rendering DSH over that path; note the absent Wi-Fi icon in its status bar.
Pairing (including a wrong code being refused), approval delivery, and switching between saved machines were all verified on a real device. The relay fallback has not yet been triggered on a real network.
Relationship to DeepSeek Harness
DSH Tether is an independent community project built on DeepSeek Harness and its Cordis plugin mechanism. It does not modify upstream source: a pinned dsh runs unmodified, and this project joins it as an ordinary DSH plugin using only officially published extension points.
This repository is maintained independently by the community. It is not affiliated with, partnered with, authorised by, or endorsed by DeepSeek, and no DeepSeek employee or upstream team member is involved in its development, maintenance or governance. The DeepSeek Harness mark used in this README identifies the upstream this project serves; it does not imply any authorisation or endorsement. The phone app icon derives from that same upstream mark.
Upstream provides the agent capabilities, the plugin system and the web interface. This project provides:
- the peer-to-peer connection and pairing between machine and phone
- carrying that web interface to the phone, with a narrow-screen fit
- multi-machine management and system notifications on the phone
Building from source
Needs Node ^22.19 || >=24 and Rust; building the APK also needs JDK 21 and the Android SDK/NDK (scripts/setup-android-env.ps1 sets that up on Windows).
cargo build --release -p tether-host # the machine-side sidecar
cd app && pnpm install
pnpm exec tauri android build --apk --target aarch64
License
MIT
No comments yet. Be the first to write one.