@zixt/host 0.0.1

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 +42 -0
  2. package/dist/index.js +30377 -0
  3. package/package.json +53 -0
package/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # Zixt Host
2
+
3
+ The Zixt Host runs your AI teammates' Tasks on your own computer. Your coding
4
+ agents, credentials, and repositories stay on your machine; the Zixt cloud only
5
+ coordinates the work.
6
+
7
+ ## Run it
8
+
9
+ Pair a Machine in Zixt (Machines → Pair a machine) to get a one-time pairing
10
+ code, then start the Host with it:
11
+
12
+ ```bash
13
+ ZIXT_HOST_TOKEN='zxh_...' npx @zixt/host@latest
14
+ ```
15
+
16
+ `npx @zixt/host@latest` always runs the newest release. To install it as a
17
+ command instead:
18
+
19
+ ```bash
20
+ npm install -g @zixt/host
21
+ ZIXT_HOST_TOKEN='zxh_...' zixt-host
22
+ ```
23
+
24
+ Keep it running on an always-on machine: Tasks cannot start while the Host is
25
+ asleep, signed out, or offline.
26
+
27
+ ## Options
28
+
29
+ | Environment variable | Meaning |
30
+ | -------------------- | ----------------------------------------------------------- |
31
+ | `ZIXT_HOST_TOKEN` | The one-time pairing code from the Machines page. Required. |
32
+ | `ZIXT_CLOUD_URL` | The Zixt gateway to connect to. Defaults to the cloud. |
33
+
34
+ Run `zixt-host --help` for logging flags.
35
+
36
+ ## Teammate browsing
37
+
38
+ If your teammates use the live browser, install the pinned Chromium once:
39
+
40
+ ```bash
41
+ npx playwright-core install chromium
42
+ ```