@shipers-dev/dayline 0.92.2 → 0.95.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 +8 -8
- package/dist/index.js +3951 -2390
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @shipers-dev/dayline
|
|
2
2
|
|
|
3
|
-
CLI daemon (`
|
|
3
|
+
CLI daemon (`dayline`) that pairs a device with a Multi workspace and runs assigned issues via ACP / acpx adapters.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -13,11 +13,11 @@ npm i -g @shipers-dev/dayline
|
|
|
13
13
|
## Quick start
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
dayline setup # pair the device against prod
|
|
17
|
+
dayline start # foreground daemon
|
|
18
|
+
dayline start -d # detached
|
|
19
|
+
dayline status
|
|
20
|
+
dayline logs
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
## Pointing at a local API worker
|
|
@@ -25,8 +25,8 @@ multi-agent logs
|
|
|
25
25
|
For local development against a wrangler-dev API worker, set `MULTI_API` to its base URL:
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
MULTI_API=http://localhost:8787
|
|
29
|
-
MULTI_API=http://localhost:8787
|
|
28
|
+
MULTI_API=http://localhost:8787 dayline setup
|
|
29
|
+
MULTI_API=http://localhost:8787 dayline start
|
|
30
30
|
```
|
|
31
31
|
|
|
32
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.
|