sextant-cli 0.0.1-rc39 → 0.0.1-rc41
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.
package/README.md
CHANGED
|
@@ -10,14 +10,19 @@ anywhere — the work still happens on your own machine, with your own accounts.
|
|
|
10
10
|
|
|
11
11
|
```sh
|
|
12
12
|
npm i -g sextant-cli
|
|
13
|
-
sxt up
|
|
13
|
+
sxt up # headless Linux server: sudo sxt up
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
`sxt up` installs it as a background service (starts on boot) and prints a
|
|
17
17
|
pairing QR code plus an 8-digit pairing code.
|
|
18
18
|
|
|
19
|
-
>
|
|
20
|
-
>
|
|
19
|
+
> - If npm's global dir needs root, prefix the install with `sudo`.
|
|
20
|
+
> - **Linux servers (ssh / no desktop):** use `sudo sxt up` — it installs a
|
|
21
|
+
> system-level service (still running as your login user). Plain `sxt up`
|
|
22
|
+
> registers a systemd *user* service, which needs a login session and fails
|
|
23
|
+
> with `Failed to connect to bus` in session-less shells. On macOS, don't
|
|
24
|
+
> `sudo sxt up`.
|
|
25
|
+
> - A Node-free installer is also available: `curl -fsSL relay.sextant.top/install | sudo sh`
|
|
21
26
|
|
|
22
27
|
## Pair your phone
|
|
23
28
|
|
|
@@ -54,12 +59,15 @@ sxt uninstall uninstall
|
|
|
54
59
|
-addr 0.0.0.0:7280 listen address and port (change the port here)
|
|
55
60
|
-instance <name> run several daemons, each with its own state dir
|
|
56
61
|
-mode direct|relay|both direct / relay / both (default: both)
|
|
57
|
-
-relay-url <url>
|
|
62
|
+
-relay-url <url> relay: the official one by default; put your own here,
|
|
63
|
+
or "off" for LAN-only
|
|
58
64
|
-apns-key <path> APNs auth key (.p8), required for phone push
|
|
59
65
|
```
|
|
60
66
|
|
|
61
67
|
Options are only needed when starting; later commands (`status`, `stop`,
|
|
62
|
-
`restart`, `qr`) reuse them automatically.
|
|
68
|
+
`restart`, `qr`) reuse them automatically. If you change `-relay-url` later,
|
|
69
|
+
re-pair the phone (`sxt qr` / `sxt code`) — the existing pairing still points
|
|
70
|
+
at the old relay.
|
|
63
71
|
|
|
64
72
|
```sh
|
|
65
73
|
sxt up -addr 0.0.0.0:9000 # start on a different port
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sextant-cli",
|
|
3
|
-
"version": "0.0.1-
|
|
3
|
+
"version": "0.0.1-rc41",
|
|
4
4
|
"description": "Sextant (sxt) — drive Claude Code on your computer from your phone. After install run: sxt up",
|
|
5
5
|
"bin": { "sxt": "bin/sxt.js" },
|
|
6
6
|
"engines": { "node": ">=16" },
|
|
7
7
|
"keywords": ["claude", "claude-code", "remote", "mobile", "ai"],
|
|
8
8
|
"optionalDependencies": {
|
|
9
|
-
"sextant-cli-darwin-amd64": "0.0.1-
|
|
10
|
-
"sextant-cli-darwin-arm64": "0.0.1-
|
|
11
|
-
"sextant-cli-linux-amd64": "0.0.1-
|
|
12
|
-
"sextant-cli-linux-arm64": "0.0.1-
|
|
9
|
+
"sextant-cli-darwin-amd64": "0.0.1-rc41",
|
|
10
|
+
"sextant-cli-darwin-arm64": "0.0.1-rc41",
|
|
11
|
+
"sextant-cli-linux-amd64": "0.0.1-rc41",
|
|
12
|
+
"sextant-cli-linux-arm64": "0.0.1-rc41"
|
|
13
13
|
},
|
|
14
14
|
"license": "SEE LICENSE IN https://github.com/ddos798/claude_control"
|
|
15
15
|
}
|