luv-cli 0.0.6__tar.gz → 0.0.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: luv-cli
3
- Version: 0.0.6
3
+ Version: 0.0.7
4
4
  Summary: Launch Claude Code agents on GitHub repos with isolated workspaces and optional Docker dev environments
5
5
  Project-URL: Homepage, https://github.com/exospherehost/luv
6
6
  Project-URL: Repository, https://github.com/exospherehost/luv
@@ -351,7 +351,9 @@ def launch(clone_dir: Path, prompt: str | None, extra_env: dict[str, str] = {})
351
351
  compose_file = (settings or {}).get("compose_file")
352
352
 
353
353
  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
355
357
 
356
358
  if compose_file:
357
359
  project = docker_project_name(clone_dir)
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "luv-cli"
7
- version = "0.0.6"
7
+ version = "0.0.7"
8
8
  description = "Launch Claude Code agents on GitHub repos with isolated workspaces and optional Docker dev environments"
9
9
  requires-python = ">=3.10"
10
10
  license = "MIT"
File without changes
File without changes
File without changes
File without changes