role-convo
Install the conversation role on a session. Makes it the spoken layer of remote-workstreams — every reply is piped to text-to-speech and read aloud verbatim.…
Deploy remote-workstreams on this Mac — tmux + Tailscale checks, engine wiring (Claude Code / Codex), Deepgram/Cartesia keys into the macOS Keychain, pairing PIN, launchd install, tailscale serve, pairing QR, round-trip test. Use when the user wants to install, deploy, or repair
$ npx -y skills add ryan-scheinberg/remote-workstreams --skill deploy-rw --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/deploy-rwContext preview
The summary Claude sees to decide when to auto-load this skill.
Deploy remote-workstreams on this Mac — tmux + Tailscale checks, engine wiring (Claude Code / Codex), Deepgram/Cartesia keys into the macOS Keychain, pairing PIN, launchd install, tailscale serve, pairing QR, round-trip test. Use when the user wants to install, deploy, or repair
name: deploy-rw description: Deploy remote-workstreams on this Mac — tmux + Tailscale checks, engine wiring (Claude Code / Codex), Deepgram/Cartesia keys into the macOS Keychain, pairing PIN, launchd install, tailscale serve, pairing QR, round-trip test. Use when the user wants to install, deploy, or repair a remote-workstreams service.
You are deploying remote-workstreams: a persistent launchd service on this Mac, reached from the user's iPhone over their tailnet. The end state is a running service, secrets in the Keychain, HTTPS on the Mac's MagicDNS name, and a phone paired via QR code. This skill runs the same from Claude Code or Codex — one deploy serves both engines.
Three helper scripts live in `scripts/` next to this file. They print `key=value` lines and are all idempotent — re-running any of them is safe.
— `git clone`, Keychain writes, `launchctl`, `tailscale serve`, installing Tailscale — tell the user exactly what you will run and why, and get a yes. Read-only commands (`check.sh`, `tailscale status`, `--help`, `curl` of healthz) need no confirmation.
done; skip completed steps unless the user wants to redo one (e.g. rotate a key).
Run `scripts/check.sh [REPO_DIR]` (default checks `~/remote-workstreams`). Read the output and tell the user what is already in place and which steps remain. On a healthy install (everything `ok`/`present`/`configured`), say so and ask what they want to change.
drives lives in the `voice` tmux session. With the user's OK run `brew install tmux` (no Homebrew → https://brew.sh first), then re-run `check.sh` and confirm `tmux=`/`tmux_version=` report a binary.
they already have one (re-run `check.sh THEIR_PATH` to verify); otherwise, with their OK, clone the canonical remote to `~/remote-workstreams`:
git clone https://github.com/ryan-scheinberg/remote-workstreams ~/remote-workstreams
Never run the service from the plugin's own marketplace clone — the host CLI replaces that directory on plugin updates.
Everywhere below, `$REPO` is the resolved repo path and `$TS` is the tailscale binary path printed by `check.sh`.
`check.sh` reports which agent CLIs exist (`claude=` / `codex=`) and whether Codex's role-skill symlinks are in place (`codex_role_skills=`). The service launches `codex` from launchd's Homebrew-aware PATH, so it follows the maintained CLI install without depending on the ChatGPT app bundle. At least one CLI must be installed and logged in. At runtime the model name carries the engine; three store settings shape what this box offers:
The phone's PLANS menu row sets both from one pick and offers exactly `opus` (thinks at high) or `gpt-5.6-luna` (xhigh); seed one of those two so the row shows the selection (default `opus`; `gpt-5.6-luna` is the Codex equivalent)
Claude Code needs no wiring beyond login — the service hands its sessions the plugin directory at spawn. Wiring Codex is three symlinks (it discovers skills globally):
mkdir -p ~/.codex/skills for s in role-convo role-stint-plan role-inject; do ln -sfn "$REPO/skills/$s" ~/.codex/skills/$s; done
Settings are written with this one-liner shape (add `set_setting` lines as needed; current model names live in `remote_workstreams/engines.py`):
(cd "$REPO" && uv run python -c "
from remote_workstreams.config import Config
from remote_workstreams.server.store import Store
store = Store(Config.load().db_path)
store.set_setting('engines', 'claude codex')")Apply by what's installed:
pickable from the phone. Yes → the symlinks above and `engines` = `claude codex`; no → `engines` = the CLI you are running in. If you are running inside Codex, also set `planner_model` and `injector_model` to `gpt-5.6-luna` — the engine that installs drives the planning; the other stays pickable for conversation and workstreams.
`injector_model` = `gpt-5.6-luna`, `convo_model` and `workstream_model` = `gpt-5.6-terra` so the first boot doesn't try to spawn a missing `claude` binary.
`role_root=missing` in check.sh → no role skill exists to launch workstreams with (see README); set `store.set_setting('role_skill', '')` so workstreams boot plain instead of typing a dead command.
All of it is an easy flip later — re-run this step after installing the other CLI.
https://tailscale.com/download (or the Mac App Store), open it, and log in to their tailnet. Wait for the user to say it's done, then re-run `check.sh`. The app's CLI lives at `/Applications/Tailscale.app/Contents/MacOS/Tailscale`; `check.sh` finds it.
Hold a natural spoken conversation with a coding agent — Claude Code or OpenAI's Codex — while it does real agentic work. Your Mac runs everything — the audio pipeline, the sessions, the state.
Install the conversation role on a session. Makes it the spoken layer of remote-workstreams — every reply is piped to text-to-speech and read aloud verbatim.…
Install the injector role on an ephemeral session. Distills the latest conversation delta into a self-contained directive for a running workstream. Invoked by…
Install the stint-planner role on an ephemeral session. Distills the latest arc of the voice conversation into a stint plan for an execution session. Invoked…