4runr-os 1.0.3 → 1.0.4
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.
- package/README.md +11 -10
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -10,23 +10,24 @@ Install globally from npm:
|
|
|
10
10
|
npm install -g 4runr-os
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
## Quick Start
|
|
14
|
+
|
|
15
|
+
After installation, simply run:
|
|
14
16
|
|
|
15
17
|
```bash
|
|
16
|
-
|
|
18
|
+
4r
|
|
17
19
|
```
|
|
18
20
|
|
|
19
|
-
|
|
21
|
+
That's it! The OS connects to the official 4Runr server automatically.
|
|
20
22
|
|
|
21
|
-
|
|
23
|
+
## Available Commands
|
|
22
24
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
4runr-os
|
|
27
|
-
```
|
|
25
|
+
You can use any of these commands:
|
|
26
|
+
- `4r` - Short and simple (recommended)
|
|
27
|
+
- `4runr` - Full command
|
|
28
|
+
- `4runr-os` - Full package name
|
|
28
29
|
|
|
29
|
-
|
|
30
|
+
All commands do the same thing - launch the 4Runr OS terminal.
|
|
30
31
|
|
|
31
32
|
### Connect to Local Server (Development)
|
|
32
33
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "4runr-os",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "4Runr AI Agent OS - Interactive terminal for managing AI agents",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"4runr": "dist/index.js",
|
|
9
|
-
"4runr-os": "dist/index.js"
|
|
9
|
+
"4runr-os": "dist/index.js",
|
|
10
|
+
"4r": "dist/index.js"
|
|
10
11
|
},
|
|
11
12
|
"scripts": {
|
|
12
13
|
"build": "tsc",
|