vibelet 0.1.13 → 0.1.14

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.
Files changed (3) hide show
  1. package/README.md +31 -9
  2. package/dist/index.cjs +25 -25
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # Vibelet
2
2
 
3
- `@vibelet/cli` is a macOS CLI that installs and manages the Vibelet daemon for remote coding sessions. The same package is also published as `vibelet`.
3
+ `@vibelet/cli` is a cross-platform CLI that installs and manages the Vibelet daemon for remote coding sessions. The same package is also published as `vibelet`.
4
4
 
5
5
  ## Requirements
6
6
 
7
- - macOS
7
+ - macOS / Linux / Windows
8
8
  - Node.js 18 or newer
9
9
 
10
10
  ## Install
@@ -25,12 +25,24 @@ vibelet
25
25
  ## Commands
26
26
 
27
27
  ```bash
28
- vibelet
29
- vibelet status
30
- vibelet logs
31
- vibelet reset
32
- vibelet --help
33
- vibelet --version
28
+ vibelet # Install/start daemon and print pairing QR code
29
+ vibelet start # Same as above
30
+ vibelet stop # Stop the daemon
31
+ vibelet restart # Restart the daemon
32
+ vibelet status # Show service and daemon status
33
+ vibelet logs # Print recent daemon logs
34
+ vibelet reset # Reset pairings and print a fresh QR code
35
+ vibelet --help # Show help
36
+ vibelet --version # Show CLI version
37
+ ```
38
+
39
+ ## Options
40
+
41
+ ```bash
42
+ vibelet --relay <url> # Use a tunnel URL for remote access
43
+ vibelet --relay "" # Clear saved relay URL
44
+ vibelet --host <ip> # Set primary host/IP advertised for connections
45
+ vibelet --fallback-hosts <ip1>,<ip2> # Comma-separated fallback IPs
34
46
  ```
35
47
 
36
48
  ## Release
@@ -47,4 +59,14 @@ The dual publish script builds once, then publishes the same CLI bundle to both
47
59
  - The npm package publishes the CLI plus a minified daemon runtime bundle.
48
60
  - The package is intended for end users of the macOS host daemon, not for importing as a library.
49
61
  - The daemon keeps `~/.vibelet/data/audit.jsonl` and `~/.vibelet/logs/daemon.*.log` size-bounded by trimming the oldest content in place.
50
- - Optional env vars: `VIBE_AUDIT_MAX_BYTES`, `VIBE_DAEMON_LOG_MAX_BYTES`, `VIBE_STORAGE_HOUSEKEEPING_INTERVAL_MS`.
62
+ - Environment variables:
63
+ | Variable | Default | Description |
64
+ |----------|---------|-------------|
65
+ | `VIBE_PORT` | `9876` | Daemon listen port |
66
+ | `VIBE_IDLE_TIMEOUT_MS` | `1800000` (30 min) | Idle timeout before a driver is released (0 = disabled) |
67
+ | `VIBE_TURN_STALL_TIMEOUT_MS` | `300000` (5 min) | Max inactivity for an in-flight turn (0 = disabled) |
68
+ | `VIBE_AUDIT_MAX_BYTES` | `8388608` (8 MB) | Max audit.jsonl size before trimming |
69
+ | `VIBE_DAEMON_LOG_MAX_BYTES` | `16777216` (16 MB) | Max daemon log file size before trimming |
70
+ | `VIBE_STORAGE_HOUSEKEEPING_INTERVAL_MS` | `300000` (5 min) | Log trimming check interval |
71
+ | `CLAUDE_PATH` | auto-detect | Path to Claude binary |
72
+ | `CODEX_PATH` | auto-detect | Path to Codex binary |