Skip to content

dsh-plugin-mobile-link

Verified

dsh-plugin-mobile-link Β· v0.2.0 Β· MIT

Put your PC's DeepSeek Harness in your pocket: dials a relay over WSS so the native iOS client reaches this machine even without a public IP.

Install

dsh plugin add dsh-plugin-mobile-link

Confirm the layer applied with dsh --profile default --dump-config β€” see the install guide.

Source

Published to npm without a public repository. Inspect the package contents before installing.

Tags

Readme

dsh-plugin-mobile-link

The computer half of DSH Mobile: it dials a relay over WSS, so the native iOS client reaches this DSH instance even though the computer has no public IP.

iPhone App ──WSS──▢ RelayοΌˆε…¬η½‘οΌŒεͺι‰΄ζƒδΈŽθ½¬ε‘οΌ‰β”€β”€WSS──▢ this plugin ──HTTP+WS──▢ 127.0.0.1:<port>

The connector always talks to the local DSH as 127.0.0.1:<port>, so the host's authority and its trust fence are unaffected: no --trusted-host, no rewritten Host, no new listening port on this machine.

plugins/mobile-link/
β”œβ”€β”€ package.json          # type: module, dsh.bundle.patch, bin: dsh-mobile-link
β”œβ”€β”€ cordis.patch.yml      # bundle patch: the loader row + config reference
β”œβ”€β”€ lib/
β”‚   β”œβ”€β”€ index.js          # cordis plugin: starts the agent, registers 3 routes
β”‚   β”œβ”€β”€ link.js           # the DLP agent transport: identity, socket, heartbeat, reconnect
β”‚   β”œβ”€β”€ router.js         # frames ⇄ local DSH mux streams, per-device `$events`
β”‚   β”œβ”€β”€ dlp.js            # DLP v1 frame codec (shared with the relay)
β”‚   β”œβ”€β”€ files.js          # phone β†’ computer file transfers (`_link/file*` methods)
β”‚   β”œβ”€β”€ enroll.js         # invite-code redemption, writes ~/.dsh/mobile-link/agent.json
β”‚   β”œβ”€β”€ routes.js         # GET /mobile-link/status, POST /pair-code, GET /qr
β”‚   β”œβ”€β”€ qr.js             # dependency-free QR SVG
β”‚   └── cli.js            # dsh-mobile-link: enroll / mint-pair-code
└── test/                 # node --test, 100+ tests (no DSH, no network)

Install

dsh plugin --profile web add dsh-plugin-mobile-link

Then restart DSH (or reload the profile). From a checkout the same command takes a path β€” the leading ./ matters, because DSH anchors a relative spec against your current directory instead of resolving it inside the profile:

dsh plugin --profile web add ./plugins/mobile-link

Use

  1. Register this computer with a relay (once). Either redeem an invite code:

    dsh-mobile-link enroll --invite <邀请码> --relay wss://<δ½ ηš„η«™η‚Ή>/dsh-link
    

    …or register it on the relay host with relay/admin.py agent-register --write-config ~/.dsh/mobile-link/agent.json.

  2. Mint a pairing code, and show it as a QR the phone camera can read:

    dsh-mobile-link --mint-pair-code        # prints JSON: code + relay + agentId
    

    Or open /mobile-link/qr on the local DSH (behind DSH's own authentication).

  3. Scan it in the iOS app. After that the phone reconnects on its own β€” nothing else has to be run by hand.

GET /mobile-link/status reports whether the link is up, which devices are attached, and whether this computer is registered yet.

Configuration

All optional; the defaults are what a stock deployment needs. Set them in the plugin's config block (cordis.patch.yml), not by editing this file.

Key Default Meaning
enabled true false stops the outbound link without uninstalling
relayUrl from agent.json Relay base URL; a bare deployment dials <relay>/link/agent
agentId / agentSecret from agent.json Override the enrolled identity
stateFile ~/.dsh/mobile-link/agent.json Where the identity lives
dshUrl discovery Explicit local DSH base URL
endpointFile $DSH_HOME/desktop-shell/endpoint.json DSH endpoint handoff file
heartbeatMs 20000 DLP ping interval

Address resolution order: this config block, then DSH_RELAY_URL (or DSH_MOBILE_LINK_RELAY), then the enrolled identity file, then the repository placeholder wss://relay.example.com/dsh-link β€” the placeholder being the "nothing configured yet" sentinel rather than a real address.

Design notes

  • No required services. inject is empty and the routes are attached through ctx.inject([...]), so a future DSH that renames or drops webServer / connection cannot make the tunnel fatal on boot.
  • Protocol-transparent. Nothing outside lib/ is imported and no DSH business API is touched: the connector forwards frames, it does not interpret sessions. The relay has the same property.
  • Disable by removing the row from the profile's cordis.patch.yml, or by setting enabled: false.

Test

cd plugins/mobile-link && npm test    # zero dependencies

The wire protocol is specified in docs/RELAY-PROTOCOL.md.

MIT.