@openrig/cli 0.3.3-rc.0 → 0.3.3
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.
|
@@ -434,17 +434,18 @@ rig send <session> "message"
|
|
|
434
434
|
rig send <session> "message" --verify
|
|
435
435
|
rig send <session> "message" --force
|
|
436
436
|
rig send <session> "message" --json
|
|
437
|
-
rig send <session> --body-file <path> [--verify]
|
|
438
|
-
rig send <session> --body-file - [--verify]
|
|
439
437
|
```
|
|
440
438
|
|
|
441
439
|
Use `--verify` when you want delivery evidence. Use `--force` only when you intentionally want to bypass activity-risk checks.
|
|
442
440
|
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
441
|
+
As of v0.3.3 (slice 17), content beginning with `--` or `-` is safe:
|
|
442
|
+
`rig send <session> "content starting with -- or - is now safe"` delivers
|
|
443
|
+
literally. The daemon's `send_text` path carries an explicit `--`
|
|
444
|
+
end-of-options sentinel so tmux no longer parses dash-prefixed content
|
|
445
|
+
as its own flags. The CLI surface itself is unchanged. For multi-line
|
|
446
|
+
or large bodies handed off as durable work, use
|
|
447
|
+
`rig queue create --body-file <path>` (`-` for stdin) — that's the
|
|
448
|
+
queue-side surface, not `rig send`.
|
|
448
449
|
|
|
449
450
|
`--verify` delivery outcomes (v0.3.3+):
|
|
450
451
|
- `delivered` — text + Enter both succeeded and capture re-confirmed the body landed.
|