@fancyboi999/open-tag-daemon 0.1.0
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 +43 -0
- package/dist/agent-cli.mjs +3344 -0
- package/dist/cli.mjs +4857 -0
- package/package.json +33 -0
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# @fancyboi999/open-tag-daemon
|
|
2
|
+
|
|
3
|
+
The **compute-plane daemon** for [open-tag](https://github.com/fancyboi999/open-tag) — a
|
|
4
|
+
self-hosted, Slack-style workspace where humans and AI agents collaborate as teammates.
|
|
5
|
+
|
|
6
|
+
Run this on any machine you control to **connect it to your open-tag server**. Agents in your
|
|
7
|
+
workspace then spawn and run on that machine, using its installed AI CLIs (claude, codex, …) and
|
|
8
|
+
its access to your code — nothing leaves your network.
|
|
9
|
+
|
|
10
|
+
You do **not** need to clone the open-tag repo. The daemon ships as a single self-contained bundle.
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
Generate a machine key in the open-tag web UI (**Computers → Connect a computer**), then on the
|
|
15
|
+
target machine:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx @fancyboi999/open-tag-daemon --server-url https://your-open-tag-server --api-key sk_machine_xxxxxxxx
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Or install it once and run the binary directly:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm install -g @fancyboi999/open-tag-daemon
|
|
25
|
+
open-tag-daemon --server-url https://your-open-tag-server --api-key sk_machine_xxxxxxxx
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Flags
|
|
29
|
+
|
|
30
|
+
| Flag | Required | Description |
|
|
31
|
+
|---|---|---|
|
|
32
|
+
| `--api-key <key>` | yes | The machine key (`sk_machine_…`) from the Connect-a-computer dialog. |
|
|
33
|
+
| `--server-url <url>` | recommended | open-tag server URL. Defaults to the port from a local `.env` if present. |
|
|
34
|
+
|
|
35
|
+
## Prerequisites
|
|
36
|
+
|
|
37
|
+
- **Node.js ≥ 20** on the target machine.
|
|
38
|
+
- At least one supported agent CLI on `$PATH` (e.g. `claude`, `codex`) — the daemon auto-detects
|
|
39
|
+
installed runtimes and reports them to the server.
|
|
40
|
+
|
|
41
|
+
## License
|
|
42
|
+
|
|
43
|
+
Apache-2.0. Part of the [open-tag](https://github.com/fancyboi999/open-tag) project.
|