@rivocode-cli/cli 3.0.5 โ†’ 3.0.6

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 +23 -67
  2. package/package.json +7 -6
package/README.md CHANGED
@@ -22,6 +22,19 @@ RivoCode is an autonomous AI coding assistant that operates directly within your
22
22
 
23
23
  ---
24
24
 
25
+ ## What's New in v3.0.6
26
+
27
+ - ๐Ÿš€ **End-to-End Autonomous Execution**: Resolved premature exit and stalling issues โ€” RivoCode autonomously completes multi-file tasks, executes tests, and verifies results end-to-end.
28
+ - โšก **Live Real-Time Activity Status**: Dynamic status bar indicators (`โšก Running: ...`, `โœŽ Editing ...`, `โ—Ž Reading ...`, `โŒ• Listing ...`, `โ—ˆ Fetching ...`) display real-time tool actions.
29
+ - ๐Ÿง  **Curated Free Frontier Models**: Streamlined model picker featuring top free 1M-context models:
30
+ - **`nvidia-nemotron-3-ultra`** (550B MoE model ยท 1M context ยท OpenRouter Free Tier)
31
+ - **`gemini-3.6-flash`** (Google Gemini ยท 1M context ยท Google AI Studio Free Tier)
32
+ - ๐ŸŽฏ **Clean Model Switcher**: Minimalist, distraction-free model picker displaying only essential, actionable details.
33
+ - ๐ŸŽจ **Enhanced Auto-Accept Mode**: Clean pink accenting for auto-accept edits without redundant badges.
34
+ - ๐Ÿ›ก๏ธ **Intelligent Rate-Limit Diagnostics**: Provider-aware error reporting and automatic rate-limit recovery.
35
+
36
+ ---
37
+
25
38
  ## Quick Start
26
39
 
27
40
  Run RivoCode instantly without manual binary downloads:
@@ -40,76 +53,27 @@ npx @rivocode-cli/cli "Refactor authentication middleware to use JWT"
40
53
 
41
54
  ## Installation
42
55
 
43
- Install RivoCode globally across your operating system for access via the `rivo` command.
44
-
45
- ### macOS Installation
56
+ Install RivoCode globally with a single universal command on **macOS**, **Windows**, or **Linux**:
46
57
 
47
- #### Using npm:
48
58
  ```bash
49
59
  npm install -g @rivocode-cli/cli
50
60
  ```
51
61
 
52
- #### Using Homebrew / Bun:
53
- ```bash
54
- bun add -g @rivocode-cli/cli
55
- ```
56
-
57
- #### Using pnpm:
58
- ```bash
59
- pnpm add -g @rivocode-cli/cli
60
- ```
61
-
62
- #### Using yarn:
63
- ```bash
64
- yarn global add @rivocode-cli/cli
65
- ```
66
-
67
- ---
68
-
69
- ### Windows Installation
70
-
71
- Open **PowerShell** or **Command Prompt** (Run as Administrator if necessary):
72
-
73
- #### Using npm:
74
- ```powershell
75
- npm install -g @rivocode-cli/cli
76
- ```
77
-
78
- #### Using pnpm:
79
- ```powershell
80
- pnpm add -g @rivocode-cli/cli
81
- ```
82
-
83
- #### Using yarn:
84
- ```powershell
85
- yarn global add @rivocode-cli/cli
86
- ```
87
-
88
- ---
89
-
90
- ### Linux Installation
91
-
92
- #### Using npm:
93
- ```bash
94
- sudo npm install -g @rivocode-cli/cli
95
- ```
96
-
97
- #### Using bun:
98
- ```bash
99
- bun add -g @rivocode-cli/cli
100
- ```
62
+ *(You can also use `bun add -g @rivocode-cli/cli`, `pnpm add -g @rivocode-cli/cli`, or `yarn global add @rivocode-cli/cli`)*
101
63
 
102
64
  ---
103
65
 
104
66
  ### Verify Installation
105
67
 
106
- After global installation, launch the CLI from any directory:
68
+ Once installed, launch RivoCode from any directory:
107
69
 
108
70
  ```bash
109
71
  rivo
110
72
  ```
111
73
 
112
- Check the installed version:
74
+ *(or use the alias `rivocode`)*
75
+
76
+ Check your installed version:
113
77
 
114
78
  ```bash
115
79
  rivo --version
@@ -225,23 +189,15 @@ rivocode/
225
189
 
226
190
  ## Uninstallation
227
191
 
228
- ### Remove Global Package
192
+ To uninstall RivoCode from **macOS**, **Windows**, or **Linux**:
229
193
 
230
194
  ```bash
231
- # npm
232
195
  npm uninstall -g @rivocode-cli/cli
233
-
234
- # bun
235
- bun remove -g @rivocode-cli/cli
236
-
237
- # pnpm
238
- pnpm remove -g @rivocode-cli/cli
239
-
240
- # yarn
241
- yarn global remove @rivocode-cli/cli
242
196
  ```
243
197
 
244
- ### Clean Binary Cache & Configuration
198
+ *(Or `bun remove -g @rivocode-cli/cli`, `pnpm remove -g @rivocode-cli/cli`)*
199
+
200
+ ### Clean Configuration & Cache (Optional)
245
201
 
246
202
  #### macOS & Linux:
247
203
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivocode-cli/cli",
3
- "version": "3.0.5",
3
+ "version": "3.0.6",
4
4
  "description": "RivoCode โ€” AI-powered terminal coding assistant",
5
5
  "author": "Sanket Padhyal <mrsanketpadhyal@gmail.com>",
6
6
  "license": "MIT",
@@ -15,11 +15,11 @@
15
15
  "LICENSE"
16
16
  ],
17
17
  "optionalDependencies": {
18
- "@rivocode-cli/cli-linux-x64": "3.0.5",
19
- "@rivocode-cli/cli-linux-arm64": "3.0.5",
20
- "@rivocode-cli/cli-darwin-x64": "3.0.5",
21
- "@rivocode-cli/cli-darwin-arm64": "3.0.5",
22
- "@rivocode-cli/cli-win32-x64": "3.0.5"
18
+ "@rivocode-cli/cli-linux-x64": "3.0.6",
19
+ "@rivocode-cli/cli-linux-arm64": "3.0.6",
20
+ "@rivocode-cli/cli-darwin-x64": "3.0.6",
21
+ "@rivocode-cli/cli-darwin-arm64": "3.0.6",
22
+ "@rivocode-cli/cli-win32-x64": "3.0.6"
23
23
  },
24
24
  "repository": {
25
25
  "type": "git",
@@ -47,6 +47,7 @@
47
47
  "start-cli": "bun run rivo",
48
48
  "dev": "bun run rivo",
49
49
  "build:binary": "bun run --cwd=cli build:binary",
50
+ "install:local": "bun run build:binary && cp cli/bin/rivo ~/.bun/bin/rivo && cp cli/bin/rivo ~/.bun/bin/rivocode && cp cli/bin/tree-sitter.wasm ~/.bun/bin/tree-sitter.wasm && codesign -s - --force ~/.bun/bin/rivo ~/.bun/bin/rivocode",
50
51
  "release:cli": "bun run --cwd=cli release",
51
52
  "release:sdk": "bun run --cwd=sdk release",
52
53
  "build:sdk": "cd sdk && bun run build",