@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.
Files changed (3) hide show
  1. package/README.md +8 -8
  2. package/dist/index.js +3951 -2390
  3. package/package.json +2 -3
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @shipers-dev/dayline
2
2
 
3
- CLI daemon (`multi-agent`) that pairs a device with a Multi workspace and runs assigned issues via ACP / acpx adapters.
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
- 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
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 multi-agent setup
29
- MULTI_API=http://localhost:8787 multi-agent start
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.