luv-cli 0.0.15__tar.gz → 0.0.16__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.15
3
+ Version: 0.0.16
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
@@ -95,7 +95,7 @@ All workspaces live under `~/prs/`. The number comes from the repo's GitHub issu
95
95
  | `-n` | Navigate: open a shell instead of Claude |
96
96
  | `-r` | Resume: resume the last Claude session |
97
97
  | `-p` | Launch Claude in plan permission mode (default: `bypassPermissions`) |
98
- | `-nit` | Non-interactive: run `claude -p <prompt>` and exit (no REPL) |
98
+ | `-nit` | Non-interactive: run `claude -p <prompt>` and exit (no REPL); streams `stream-json` events to stdout |
99
99
  | `-e` | Env: pass `LUV_*` environment variables (with prefix stripped) into the session |
100
100
  | `-f`, `--force` | Skip safety checks (with `--clean`) |
101
101
 
@@ -72,7 +72,7 @@ All workspaces live under `~/prs/`. The number comes from the repo's GitHub issu
72
72
  | `-n` | Navigate: open a shell instead of Claude |
73
73
  | `-r` | Resume: resume the last Claude session |
74
74
  | `-p` | Launch Claude in plan permission mode (default: `bypassPermissions`) |
75
- | `-nit` | Non-interactive: run `claude -p <prompt>` and exit (no REPL) |
75
+ | `-nit` | Non-interactive: run `claude -p <prompt>` and exit (no REPL); streams `stream-json` events to stdout |
76
76
  | `-e` | Env: pass `LUV_*` environment variables (with prefix stripped) into the session |
77
77
  | `-f`, `--force` | Skip safety checks (with `--clean`) |
78
78
 
@@ -363,7 +363,8 @@ def launch(clone_dir: Path, prompt: str | None, plan_mode: bool = False,
363
363
  if non_interactive:
364
364
  if not prompt:
365
365
  die("-nit requires a prompt")
366
- mode_flags = []
366
+ mode_flags = ["--output-format", "stream-json",
367
+ "--verbose", "--include-partial-messages"]
367
368
  initial_args = ["-p", prompt]
368
369
  elif plan_mode:
369
370
  mode_flags = ["--permission-mode", "plan"]
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "luv-cli"
7
- version = "0.0.15"
7
+ version = "0.0.16"
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