@shipers-dev/dayline 0.92.2
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 +39 -0
- package/dist/index.js +47146 -0
- package/package.json +30 -0
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# @shipers-dev/dayline
|
|
2
|
+
|
|
3
|
+
CLI daemon (`multi-agent`) that pairs a device with a Multi workspace and runs assigned issues via ACP / acpx adapters.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
bun add -g @shipers-dev/dayline
|
|
9
|
+
# or
|
|
10
|
+
npm i -g @shipers-dev/dayline
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Quick start
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
multi-agent setup # pair the device against prod
|
|
17
|
+
multi-agent start # foreground daemon
|
|
18
|
+
multi-agent start -d # detached
|
|
19
|
+
multi-agent status
|
|
20
|
+
multi-agent logs
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Pointing at a local API worker
|
|
24
|
+
|
|
25
|
+
For local development against a wrangler-dev API worker, set `MULTI_API` to its base URL:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
MULTI_API=http://localhost:8787 multi-agent setup
|
|
29
|
+
MULTI_API=http://localhost:8787 multi-agent start
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
The resolved API base URL is printed at start. `MULTI_API_URL` is still accepted as a fallback alias. CLI flag `--api <url>` overrides both.
|
|
33
|
+
|
|
34
|
+
## Common env vars
|
|
35
|
+
|
|
36
|
+
| Var | Purpose |
|
|
37
|
+
| --- | --- |
|
|
38
|
+
| `MULTI_API` | API base URL (default `https://multi-api.adnb3r.workers.dev`) |
|
|
39
|
+
| `MULTI_MAX_CONCURRENT` | Max concurrent tasks per device (default 3) |
|