kylon-cli 0.3.6-next.682 → 0.3.6-next.683
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 +12 -7
- package/dist/kylon-bundle.manifest.json +3 -3
- package/dist/kylon-bundle.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -67,16 +67,20 @@ hosted install script in `~/.kylon/server-url`, then production.
|
|
|
67
67
|
`agent link` authenticates only the link operation with its embedded
|
|
68
68
|
credential; it never creates a human CLI session. Linking mints or reuses an
|
|
69
69
|
installation credential stored locally with mode `0600` and starts the local
|
|
70
|
-
agent runtime. In release builds
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
70
|
+
agent runtime. In release builds a user-level service is installed so the
|
|
71
|
+
daemon survives terminal exit, reboot, and sleep/wake: `launchd` on macOS,
|
|
72
|
+
`systemd --user` on Linux, and on Windows a logon-triggered Scheduled Task
|
|
73
|
+
named `Kylon Gateway` that runs `kylon gateway supervise`, a small loop that
|
|
74
|
+
restarts `gateway run` after a crash and after a drained upgrade. When no
|
|
75
|
+
service can be installed (a source build, or a Windows machine whose policy
|
|
76
|
+
blocks scheduled tasks) the daemon runs in the foreground until `Ctrl+C`, and
|
|
77
|
+
`connect` says so.
|
|
74
78
|
|
|
75
79
|
The dist-tag tracks the environment: production uses `@latest`, dev uses
|
|
76
80
|
`@next` (newest prerelease). To pin a specific build, use `kylon-cli@X.Y.Z`.
|
|
77
81
|
|
|
78
|
-
Requirements: Linux
|
|
79
|
-
|
|
82
|
+
Requirements: macOS, Linux, or Windows. The hosted `install.sh` needs no
|
|
83
|
+
preinstalled Node.js; the Windows `install.ps1` and the `npx` spellings need
|
|
80
84
|
Node.js 22.15.0+ (npm ships with Node).
|
|
81
85
|
|
|
82
86
|
### One managed `kylon` for humans and agents
|
|
@@ -289,7 +293,8 @@ workspace; sign in again to replace one with the per-installation flow.
|
|
|
289
293
|
|
|
290
294
|
`gateway run` starts the local runtime service from this environment's saved
|
|
291
295
|
connection. It is the command the installed `launchd` / `systemd --user`
|
|
292
|
-
service execs
|
|
296
|
+
service execs, and the child the Windows `gateway supervise` loop keeps
|
|
297
|
+
running; run it manually to keep connected agents available in the foreground.
|
|
293
298
|
|
|
294
299
|
```bash
|
|
295
300
|
kylon gateway run
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.3.6-next.
|
|
3
|
-
"fingerprint": "
|
|
4
|
-
"source_commit": "
|
|
2
|
+
"version": "0.3.6-next.683",
|
|
3
|
+
"fingerprint": "7d303221c6100ec8260740fb183a1aae46420919206a586125e3a353da4e8b34",
|
|
4
|
+
"source_commit": "b8d6007922319caba68ea14962f73afbb1b333f0"
|
|
5
5
|
}
|