From 599632fa40d51fc4f91946549fbd8148a7d57b88 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 May 2026 17:50:41 +0000 Subject: [PATCH 1/2] changeset-release --- .changeset/cool-oranges-cut.md | 5 ----- .changeset/pretty-dodos-occur.md | 5 ----- .changeset/solid-carpets-decide.md | 5 ----- packages/cli/CHANGELOG.md | 11 +++++++++++ packages/cli/package.json | 2 +- 5 files changed, 12 insertions(+), 16 deletions(-) delete mode 100644 .changeset/cool-oranges-cut.md delete mode 100644 .changeset/pretty-dodos-occur.md delete mode 100644 .changeset/solid-carpets-decide.md diff --git a/.changeset/cool-oranges-cut.md b/.changeset/cool-oranges-cut.md deleted file mode 100644 index 1a17cbed..00000000 --- a/.changeset/cool-oranges-cut.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@calycode/cli": minor ---- - -refactor: fixed several inconsistencies with the native host implementation diff --git a/.changeset/pretty-dodos-occur.md b/.changeset/pretty-dodos-occur.md deleted file mode 100644 index 8e6c20ba..00000000 --- a/.changeset/pretty-dodos-occur.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@calycode/cli": patch ---- - -refactor: adjusted extension id discovery diff --git a/.changeset/solid-carpets-decide.md b/.changeset/solid-carpets-decide.md deleted file mode 100644 index b4115c43..00000000 --- a/.changeset/solid-carpets-decide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@calycode/cli": minor ---- - -feat: downloadable bootstrapper for the cli for windows and mac os diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 15cee561..8d1c56cf 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,16 @@ # @calycode/xano-cli +## 0.19.0 + +### Minor Changes + +- c49af1f: refactor: fixed several inconsistencies with the native host implementation +- c49af1f: feat: downloadable bootstrapper for the cli for windows and mac os + +### Patch Changes + +- c49af1f: refactor: adjusted extension id discovery + ## 0.18.5 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 525c4e8c..e55ba3ca 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@calycode/cli", - "version": "0.18.5", + "version": "0.19.0", "description": "Command-line interface for Xano providing terminal access to Xano workflows", "publishConfig": { "tag": "latest", From 560301ef11b963ba4e248af25c1b3ba5998c4e62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mih=C3=A1ly=20T=C3=B3th?= Date: Thu, 21 May 2026 17:51:23 +0000 Subject: [PATCH 2/2] chore: update docs [skip ci] --- docs/extension-installer-flow.md | 90 -------------------------------- docs/xano.md | 2 +- 2 files changed, 1 insertion(+), 91 deletions(-) delete mode 100644 docs/extension-installer-flow.md diff --git a/docs/extension-installer-flow.md b/docs/extension-installer-flow.md deleted file mode 100644 index 1ecfe8dd..00000000 --- a/docs/extension-installer-flow.md +++ /dev/null @@ -1,90 +0,0 @@ -# Extension Installer Flow (Bootstrapper) - -This document explains how the browser extension should guide users through installing the CalyCode CLI using the bootstrapper binaries. - -## Goal - -Provide a **download + run** flow with minimal friction: - -1. Extension detects platform/architecture -2. Extension shows one-click download -3. User runs installer binary -4. Installer performs setup silently in steps -5. Extension verifies CLI/native host connectivity - -## Platform Mapping - -Use these release assets: - -- Windows x64: - - `https://github.com/calycode/xano-tools/releases/latest/download/calycode-installer-windows-x64.exe` -- macOS Intel (x64): - - `https://github.com/calycode/xano-tools/releases/latest/download/calycode-installer-darwin-x64.zip` -- macOS Apple Silicon (arm64): - - `https://github.com/calycode/xano-tools/releases/latest/download/calycode-installer-darwin-arm64.zip` - -Optional checksum: - -- `https://github.com/calycode/xano-tools/releases/latest/download/SHA256SUMS` - -The release assets are also available under the: -- https://links.calycode.com/cli-installer-- - -## Extension Detection Logic - -Recommended selection order: - -1. If platform is Windows: use Windows x64 installer. -2. If platform is macOS: - - if architecture is `arm64`, use macOS arm64 installer - - otherwise use macOS x64 installer -3. Otherwise (Linux/unknown): show shell-script fallback instructions. - -Notes: - -- On macOS in browser contexts where architecture is ambiguous, prefer arm64 only when explicitly detected. -- If architecture cannot be resolved, default to macOS x64 and provide a manual switch. - -## User-Facing Copy (Suggested) - -### Step 1: Download - -"Download the CalyCode installer for your system." - -### Step 2: Run - -"Open the downloaded installer and follow the setup steps." - -### Step 3: Return - -"Come back here after installation. We'll verify the connection." - -macOS note copy: - -"Unzip the download, then if macOS blocks opening the installer, right-click it and choose **Open**." - -## What the Installer Does - -The bootstrapper performs: - -1. Node.js check/install (18+) -2. Global install of `@calycode/cli` -3. `caly-xano opencode init` -4. Final success/failure message - -## Verification in Extension - -After user returns, extension should: - -1. Attempt native host `ping` -2. If `pong` succeeds, proceed -3. If not, show troubleshooting CTA: - - rerun installer - - open terminal and run `caly-xano opencode init` - -## Fallback (No Bootstrapper) - -For unsupported platforms or manual flow: - -- Windows PowerShell: `irm https://links.calycode.com/install-cli-windows-ps1 | iex` -- macOS/Linux Bash: `curl -fsSL https://links.calycode.com/install-cli-unix | bash` diff --git a/docs/xano.md b/docs/xano.md index 6881b944..f4600ae9 100644 --- a/docs/xano.md +++ b/docs/xano.md @@ -1,6 +1,6 @@ # @calycode/cli ```sh -caly-xano-cli v0.18.5 — Automate backups, docs, testing & version control for Xano +caly-xano-cli v0.19.0 — Automate backups, docs, testing & version control for Xano Usage: caly-xano [options]