Skip to content

Commit b4fd7fa

Browse files
10x-Anitclaude
andcommitted
fix: Use public repo (OpenAnalystInc/cli) for install URLs
Private repo (openanalyst-cli) returns 404 for raw content. Install scripts and docs now point to the public repo. npm install remains the primary method. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 03ac4a5 commit b4fd7fa

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ Connect to any major LLM provider through a single, unified terminal interface.
66

77
## Install
88

9+
**npm (all platforms):**
10+
```bash
11+
npm install -g @openanalystinc/openanalyst-cli
12+
```
13+
914
**Windows (PowerShell):**
1015
```powershell
11-
irm https://raw.githubusercontent.com/OpenAnalystInc/openanalyst-cli/master/install.ps1 | iex
16+
irm https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.ps1 | iex
1217
```
1318

1419
**macOS / Linux:**
1520
```bash
16-
curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/openanalyst-cli/master/install.sh | bash
17-
```
18-
19-
**npm:**
20-
```bash
21-
npm install -g @openanalystinc/openanalyst-cli
21+
curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.sh | bash
2222
```
2323

2424
## Quick Start

docs/Documentation/installation.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ <h2 id="install">Install</h2>
7171

7272
<div id="tab-mac" class="tab-content active">
7373
<p>Run the install script:</p>
74-
<pre><code>curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/openanalyst-cli/main/install.sh | bash</code></pre>
74+
<pre><code>curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.sh | bash</code></pre>
7575
<p>This downloads the latest release binary and places it in <code>/usr/local/bin/openanalyst</code>.</p>
7676

7777
<div class="callout callout-tip">
@@ -82,7 +82,7 @@ <h2 id="install">Install</h2>
8282

8383
<div id="tab-win" class="tab-content">
8484
<p>Open PowerShell as Administrator:</p>
85-
<pre><code>irm https://raw.githubusercontent.com/OpenAnalystInc/openanalyst-cli/main/install.ps1 | iex</code></pre>
85+
<pre><code>irm https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.ps1 | iex</code></pre>
8686
<p>The binary is placed in your user PATH automatically.</p>
8787
</div>
8888

@@ -112,10 +112,10 @@ <h2 id="update">Updating</h2>
112112
<p>Re-run the same install script to update to the latest version. Your configuration and sessions are preserved.</p>
113113

114114
<pre><code><span class="token-comment"># macOS / Linux</span>
115-
curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/openanalyst-cli/main/install.sh | bash
115+
curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.sh | bash
116116

117117
<span class="token-comment"># Windows</span>
118-
irm https://raw.githubusercontent.com/OpenAnalystInc/openanalyst-cli/main/install.ps1 | iex</code></pre>
118+
irm https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.ps1 | iex</code></pre>
119119

120120
<h2 id="uninstall">Uninstalling</h2>
121121
<p>Remove the binary and optionally clean up config:</p>

docs/Index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,11 @@ <h1>OpenAnalyst CLI</h1>
148148
</div>
149149
<div id="ins-1" class="tc on">
150150
<div class="cb"><div class="cb-header"><div style="display:flex;align-items:center;gap:8px"><div class="cb-dots"><span class="cb-dot d1"></span><span class="cb-dot d2"></span><span class="cb-dot d3"></span></div><span class="cb-label">Terminal</span></div><button class="cb-copy" onclick="cc(this)">Copy</button></div>
151-
<pre class="code"><span class="c-g">curl</span> <span class="c-c">-fsSL</span> https://raw.githubusercontent.com/OpenAnalystInc/openanalyst-cli/main/install.sh | <span class="c-g">bash</span></pre></div>
151+
<pre class="code"><span class="c-g">curl</span> <span class="c-c">-fsSL</span> https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.sh | <span class="c-g">bash</span></pre></div>
152152
</div>
153153
<div id="ins-2" class="tc">
154154
<div class="cb"><div class="cb-header"><div style="display:flex;align-items:center;gap:8px"><div class="cb-dots"><span class="cb-dot d1"></span><span class="cb-dot d2"></span><span class="cb-dot d3"></span></div><span class="cb-label">PowerShell</span></div><button class="cb-copy" onclick="cc(this)">Copy</button></div>
155-
<pre class="code"><span class="c-g">irm</span> https://raw.githubusercontent.com/OpenAnalystInc/openanalyst-cli/main/install.ps1 | <span class="c-g">iex</span></pre></div>
155+
<pre class="code"><span class="c-g">irm</span> https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.ps1 | <span class="c-g">iex</span></pre></div>
156156
</div>
157157
<div style="margin-top:24px">
158158
<div class="cb"><div class="cb-header"><div style="display:flex;align-items:center;gap:8px"><div class="cb-dots"><span class="cb-dot d1"></span><span class="cb-dot d2"></span><span class="cb-dot d3"></span></div><span class="cb-label">Login &mdash; Interactive Provider Picker</span></div></div>

install.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# OpenAnalyst CLI Installer — Windows PowerShell
2-
# Usage: irm https://raw.githubusercontent.com/OpenAnalystInc/openanalyst-cli/main/install.ps1 | iex
2+
# Usage: irm https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.ps1 | iex
33

44
$ErrorActionPreference = "Continue"
55
$ProgressPreference = "SilentlyContinue"
66
try { [Console]::OutputEncoding = [System.Text.Encoding]::UTF8 } catch {}
77

8-
$Repo = "OpenAnalystInc/openanalyst-cli"
8+
$Repo = "OpenAnalystInc/cli"
99
$BinaryName = "openanalyst.exe"
1010
$InstallDir = "$env:USERPROFILE\.openanalyst\bin"
1111
$ConfigDir = "$env:USERPROFILE\.openanalyst"
@@ -201,7 +201,7 @@ Dim " $BL$(Repeat $H $BoxW)$BR"; Nl
201201
Nl
202202

203203
Dim " Documentation: "
204-
Acc "github.com/OpenAnalystInc/openanalyst-cli"
204+
Acc "github.com/OpenAnalystInc/cli"
205205
Nl
206206
Dim " Support: "
207207
Acc "support@openanalyst.com"

install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ set -e
55
# OpenAnalyst CLI Installer — macOS / Linux
66
#
77
# Usage:
8-
# curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/openanalyst-cli/main/install.sh | bash
8+
# curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.sh | bash
99
#
1010
# Or with a specific version:
1111
# curl -fsSL ... | bash -s -- --version 1.0.89
1212
# ─────────────────────────────────────────────────
1313

14-
REPO="OpenAnalystInc/openanalyst-cli"
14+
REPO="OpenAnalystInc/cli"
1515
BINARY_NAME="openanalyst"
1616
INSTALL_DIR="${OPENANALYST_INSTALL_DIR:-$HOME/.local/bin}"
1717
CONFIG_DIR="$HOME/.openanalyst"
@@ -175,7 +175,7 @@ if [ ! -f "$CONFIG_DIR/.env" ]; then
175175
# Uncomment and fill in the providers you want to use.
176176
# Or run `openanalyst login` for interactive browser-based setup.
177177
#
178-
# Docs: https://github.com/OpenAnalystInc/openanalyst-cli
178+
# Docs: https://github.com/OpenAnalystInc/cli
179179
# ═══════════════════════════════════════════════════════════════════
180180
181181
# ── Provider API Keys ─────────────────────────────────────────────
@@ -276,7 +276,7 @@ echo ""
276276
if [ -n "$SHELL_RC" ]; then
277277
echo -e " ${DIM}Reload your shell: source ${SHELL_RC}${R}"
278278
fi
279-
echo -e " ${DIM}Documentation: github.com/OpenAnalystInc/openanalyst-cli${R}"
279+
echo -e " ${DIM}Documentation: github.com/OpenAnalystInc/cli${R}"
280280
echo -e " ${DIM}Support: anit@openanalyst.com${R}"
281281
echo ""
282282
echo ""

0 commit comments

Comments
 (0)