Skip to content

Commit 71f5581

Browse files
NiveditJainclaude
andauthored
[luv-14] Inject /remote-control on launch and bump to 0.0.7 (#13)
Each luv session now prepends `/remote-control` alongside the random `/color` command in Claude's initial input, whether or not a `/plan` prompt follows — so every new session is wired up for remote control by default. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 5327145 commit 71f5581

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

luv/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,9 @@ def launch(clone_dir: Path, prompt: str | None, extra_env: dict[str, str] = {})
351351
compose_file = (settings or {}).get("compose_file")
352352

353353
color_cmd = f"/color {pick_color()}"
354-
initial = f"{color_cmd}\n/plan {prompt}" if prompt else color_cmd
354+
remote_cmd = "/remote-control"
355+
prefix = f"{color_cmd}\n{remote_cmd}"
356+
initial = f"{prefix}\n/plan {prompt}" if prompt else prefix
355357

356358
if compose_file:
357359
project = docker_project_name(clone_dir)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "luv-cli"
7-
version = "0.0.6"
7+
version = "0.0.7"
88
description = "Launch Claude Code agents on GitHub repos with isolated workspaces and optional Docker dev environments"
99
requires-python = ">=3.10"
1010
license = "MIT"

0 commit comments

Comments
 (0)