1616 < img src ="https://openanalyst.com/images/new-logo.png " alt ="OA " >
1717 < h2 > OpenAnalyst CLI</ h2 >
1818 </ a >
19- < span data-version-prefix ="Documentation v "> Documentation v2.0.3 </ span >
19+ < span data-version-prefix ="Documentation v "> Documentation v2.0.23 </ span >
2020 </ div >
2121 < div class ="sidebar-section ">
2222 < div class ="sidebar-section-title "> Documentation</ div >
@@ -65,30 +65,45 @@ <h2 id="install">Install</h2>
6565
6666 < div class ="tabs ">
6767 < div class ="tab-buttons ">
68- < button class ="tab-btn active " data-tab ="tab-mac "> macOS / Linux</ button >
68+ < button class ="tab-btn active " data-tab ="tab-mac "> macOS</ button >
69+ < button class ="tab-btn " data-tab ="tab-linux "> Linux</ button >
6970 < button class ="tab-btn " data-tab ="tab-win "> Windows</ button >
71+ < button class ="tab-btn " data-tab ="tab-source "> npm / Server</ button >
7072 </ div >
7173
7274 < div id ="tab-mac " class ="tab-content active ">
73- < p > Run the install script:</ p >
74- < pre > < code > curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.sh | bash</ code > </ pre >
75- < p > This downloads the latest release binary and places it in < code > /usr/local/bin/openanalyst</ code > .</ p >
75+ < p > Direct install for Apple Silicon:</ p >
76+ < pre > < code > curl -L https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-aarch64-apple-darwin -o openanalyst
77+ chmod +x openanalyst
78+ sudo mv openanalyst /usr/local/bin/openanalyst</ code > </ pre >
79+ < p > Intel macOS binary: < a href ="https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-x86_64-apple-darwin " target ="_blank " rel ="noreferrer "> openanalyst-x86_64-apple-darwin</ a > </ p >
7680
7781 < div class ="callout callout-tip ">
7882 < div class ="callout-title "> Tip</ div >
79- After installation, run < code > openanalyst --version </ code > to verify .
83+ The < a href =" https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.sh " target =" _blank " rel =" noreferrer " > install.sh </ a > helper downloads the same latest public release binary for your detected macOS architecture .
8084 </ div >
8185 </ div >
8286
87+ < div id ="tab-linux " class ="tab-content ">
88+ < p > Direct install for Linux x86_64:</ p >
89+ < pre > < code > curl -L https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-x86_64-unknown-linux-gnu -o openanalyst
90+ chmod +x openanalyst
91+ sudo mv openanalyst /usr/local/bin/openanalyst</ code > </ pre >
92+ < p > ARM64 Linux binary: < a href ="https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-aarch64-unknown-linux-gnu " target ="_blank " rel ="noreferrer "> openanalyst-aarch64-unknown-linux-gnu</ a > </ p >
93+ </ div >
94+
8395 < div id ="tab-win " class ="tab-content ">
84- < p > Open PowerShell as Administrator:</ p >
85- < pre > < code > irm https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.ps1 | iex</ code > </ pre >
86- < p > The binary is placed in your user PATH automatically.</ p >
96+ < p > Direct install for Windows x86_64:</ p >
97+ < pre > < code > $dest = "$env:USERPROFILE\.openanalyst\bin\openanalyst.exe"
98+ New-Item -ItemType Directory -Force -Path (Split-Path $dest) | Out-Null
99+ Invoke-WebRequest https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-x86_64-pc-windows-msvc.exe -OutFile $dest</ code > </ pre >
100+ < p > The < a href ="https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.ps1 " target ="_blank " rel ="noreferrer "> install.ps1</ a > helper wraps the same public binary flow and updates your PATH automatically.</ p >
87101 </ div >
88102
89103 < div id ="tab-source " class ="tab-content ">
90- < p > Backend -only deployment:</ p >
104+ < p > Install from npm when you want the package-managed CLI or a backend -only deployment:</ p >
91105 < pre > < code > npm install -g @openanalystinc/openanalyst-cli
106+ openanalyst
92107openanalyst --notui
93108openanalyst --serve 8080</ code > </ pre >
94109 < p > Use this when you want the hosted session API on a server without launching the TUI.</ p >
@@ -100,10 +115,22 @@ <h2 id="install">Install</h2>
100115 </ div >
101116 </ div >
102117
118+ < h3 id ="binaries "> Direct Public Release Binaries</ h3 >
119+ < table >
120+ < thead > < tr > < th > Platform</ th > < th > Asset</ th > < th > Download</ th > </ tr > </ thead >
121+ < tbody >
122+ < tr > < td > macOS (Apple Silicon)</ td > < td > < code > openanalyst-aarch64-apple-darwin</ code > </ td > < td > < a href ="https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-aarch64-apple-darwin " target ="_blank " rel ="noreferrer "> Download binary</ a > </ td > </ tr >
123+ < tr > < td > macOS (Intel)</ td > < td > < code > openanalyst-x86_64-apple-darwin</ code > </ td > < td > < a href ="https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-x86_64-apple-darwin " target ="_blank " rel ="noreferrer "> Download binary</ a > </ td > </ tr >
124+ < tr > < td > Linux (x86_64)</ td > < td > < code > openanalyst-x86_64-unknown-linux-gnu</ code > </ td > < td > < a href ="https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-x86_64-unknown-linux-gnu " target ="_blank " rel ="noreferrer "> Download binary</ a > </ td > </ tr >
125+ < tr > < td > Linux (ARM64)</ td > < td > < code > openanalyst-aarch64-unknown-linux-gnu</ code > </ td > < td > < a href ="https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-aarch64-unknown-linux-gnu " target ="_blank " rel ="noreferrer "> Download binary</ a > </ td > </ tr >
126+ < tr > < td > Windows (x86_64)</ td > < td > < code > openanalyst-x86_64-pc-windows-msvc.exe</ code > </ td > < td > < a href ="https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-x86_64-pc-windows-msvc.exe " target ="_blank " rel ="noreferrer "> Download binary</ a > </ td > </ tr >
127+ </ tbody >
128+ </ table >
129+
103130 < h2 id ="verify "> Verify Installation</ h2 >
104131 < pre > < code > < span class ="token-comment "> # Check the version</ span >
105132openanalyst --version
106- < span class ="token-comment "> # Output: OpenAnalyst CLI v< span class ="oa-version "> 2.0.3 </ span > </ span >
133+ < span class ="token-comment "> # Output: OpenAnalyst CLI v< span class ="oa-version "> 2.0.23 </ span > </ span >
107134
108135< span class ="token-comment "> # Check logged-in providers</ span >
109136openanalyst whoami</ code > </ pre >
0 commit comments