From 7ece0b63d339288ee6e008f0d3a8131828440a09 Mon Sep 17 00:00:00 2001 From: Luca Martial <48870843+luca-martial@users.noreply.github.com> Date: Mon, 8 Jun 2026 17:10:36 -0700 Subject: [PATCH] docs: document upgrading to the latest ktx version (#273) * docs: document upgrading to the latest ktx version Install instructions existed but nothing told users how to upgrade an existing install. Add a minimal upgrade note to the README and to the quickstart install section showing `npm install -g @kaelio/ktx@latest`. Co-Authored-By: Claude Opus 4.8 * nitpick --------- Co-authored-by: Claude Opus 4.8 --- README.md | 8 ++++++++ docs-site/content/docs/getting-started/quickstart.mdx | 6 ++++++ 2 files changed, 14 insertions(+) diff --git a/README.md b/README.md index d286e3f1..79b92161 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,14 @@ Agent integration ready: yes (codex:project) > If `ktx status` prints `ktx mcp start --project-dir ...`, run it before > opening your agent client. +## Upgrading + +Re-run the global install with the `@latest` tag: + +```bash +npm install -g @kaelio/ktx@latest +``` + ## First commands | Command | Purpose | diff --git a/docs-site/content/docs/getting-started/quickstart.mdx b/docs-site/content/docs/getting-started/quickstart.mdx index abd6044d..5fe69113 100644 --- a/docs-site/content/docs/getting-started/quickstart.mdx +++ b/docs-site/content/docs/getting-started/quickstart.mdx @@ -191,6 +191,12 @@ Install the published package globally: npm install -g @kaelio/ktx ``` +To upgrade an existing install later, re-run with the `@latest` tag: + +```bash +npm install -g @kaelio/ktx@latest +``` + **ktx** is open source. If you'd like to hack on it or run from a local checkout, the source lives at [github.com/kaelio/ktx](https://github.com/kaelio/ktx) - see [Contributing](/docs/community/contributing) to get set up.