@kinlab/kin 0.5.14 → 0.5.16

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 (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -25,11 +25,11 @@ documented below.
25
25
 
26
26
  `@kinlab/kin` ships two thin launchers, not a JavaScript reimplementation:
27
27
 
28
- - **`kin`** provisions the managed native `kin` + `kin-daemon` release for your
28
+ - **`kin`**: provisions the managed native `kin` + `kin-daemon` release for your
29
29
  platform on first run (downloaded from the matching GitHub release, verified against
30
30
  its published SHA-256), installs it under `~/.kin/bin`, then passes every invocation
31
31
  straight through to the real binary and mirrors its exit.
32
- - **`kin-mcp`** compatibility entrypoint that starts Kin's MCP server
32
+ - **`kin-mcp`**: compatibility entrypoint that starts Kin's MCP server
33
33
  (`kin mcp start`). MCP is one included mode of Kin, not a separate product.
34
34
 
35
35
  The launcher and the shell installer (`scripts/install.sh`) share the same install
@@ -43,15 +43,15 @@ by `kin setup status`, `kin doctor --fix`, and `kin setup uninstall`.
43
43
 
44
44
  ## Version pinning
45
45
 
46
- Every `@kinlab/kin` release pins one managed `kin` release its own package version.
46
+ Every `@kinlab/kin` release pins one managed `kin` release: its own package version.
47
47
  Each run compares that pin against whatever is already installed at `$KIN_HOME`:
48
48
 
49
- - **installed is older than the pin** upgrades it automatically (a one-line notice
49
+ - **installed is older than the pin**: upgrades it automatically (a one-line notice
50
50
  on stderr, no prompt, no opt-in required).
51
- - **installed is newer than the pin** refuses the downgrade and exits with an
51
+ - **installed is newer than the pin**: refuses the downgrade and exits with an
52
52
  actionable error instead of running anything; re-run with `KIN_LAUNCHER_ADOPT=1` to
53
53
  force it on purpose (e.g. deliberately pinning to an older release).
54
- - **installed matches the pin** runs it as-is.
54
+ - **installed matches the pin**: runs it as-is.
55
55
 
56
56
  `KIN_LAUNCHER_ADOPT=1` always forces a fresh provision of the pinned release, even when
57
57
  the installed version already matches.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kinlab/kin",
3
- "version": "0.5.14",
3
+ "version": "0.5.16",
4
4
  "description": "Canonical installer and launcher for Kin, the system of record for AI-written software. Provisions and runs the managed kin + kin-daemon release. MCP is one included mode (kin mcp start).",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",