4runr-os 2.1.23 → 2.1.24

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/SETUP.md +9 -24
  2. package/package.json +1 -1
package/SETUP.md CHANGED
@@ -1,32 +1,22 @@
1
1
  # 4Runr OS - Quick Setup Guide
2
2
 
3
- ## One-Time Setup (Choose Your Platform)
3
+ ## One-Time Setup
4
4
 
5
- ### Windows
5
+ **Windows, Linux, or macOS - same command:**
6
6
 
7
- ```powershell
8
- # Install 4runr-os
7
+ ```bash
9
8
  npm install -g 4runr-os
10
-
11
- # Done! Now just use:
12
- 4r
13
9
  ```
14
10
 
15
- **That's it!** The package includes pre-built Windows binaries, so no Rust or build tools needed.
16
-
17
- ---
11
+ **That's it!** No Rust, no build tools, no complexity.
18
12
 
19
- ### Linux / macOS
13
+ ## Daily Use
20
14
 
21
15
  ```bash
22
- # Install 4runr-os
23
- npm install -g 4runr-os
24
-
25
- # Done! Now just use:
26
16
  4r
27
17
  ```
28
18
 
29
- **That's it!** The package includes pre-built binaries for Linux and macOS.
19
+ **Done!** Just `4r` every time you want to use it.
30
20
 
31
21
  ---
32
22
 
@@ -65,15 +55,10 @@ export PATH=$PATH:$(npm config get prefix)/bin
65
55
 
66
56
  ### "mk3-tui binary not found"
67
57
 
68
- If you see this error, the package will automatically try to build from source:
58
+ This shouldn't happen if binaries are included in the package. If you see this:
69
59
 
70
- **Windows:**
71
- - Install Visual Studio Build Tools: https://visualstudio.microsoft.com/downloads/
72
- - Or use GNU toolchain: `rustup toolchain install stable-x86_64-pc-windows-gnu && rustup default stable-x86_64-pc-windows-gnu`
73
-
74
- **Linux/macOS:**
75
- - Install Rust: `curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh`
76
- - Then run `4r` again - it will build automatically
60
+ 1. Make sure you have the latest version: `npm install -g 4runr-os@latest`
61
+ 2. If still happening, the package will try to build from source automatically (requires Rust)
77
62
 
78
63
  ---
79
64
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "4runr-os",
3
- "version": "2.1.23",
3
+ "version": "2.1.24",
4
4
  "type": "module",
5
5
  "description": "4Runr AI Agent OS - Interactive terminal for managing AI agents",
6
6
  "main": "dist/index.js",