4runr-os 1.0.3 → 1.0.5
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/dist/index.js +13 -13
- 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/dist/index.js
CHANGED
|
@@ -39,19 +39,19 @@ const aiConfig = {
|
|
|
39
39
|
async function bootSequence() {
|
|
40
40
|
console.clear();
|
|
41
41
|
console.log(`${cyan}${bright}
|
|
42
|
-
|
|
43
|
-
║
|
|
44
|
-
║
|
|
45
|
-
║
|
|
46
|
-
║
|
|
47
|
-
║
|
|
48
|
-
║
|
|
49
|
-
║
|
|
50
|
-
║
|
|
51
|
-
║
|
|
52
|
-
║
|
|
53
|
-
║
|
|
54
|
-
|
|
42
|
+
╔═══════════════════════════════════════════════════════════╗
|
|
43
|
+
║ ║
|
|
44
|
+
║ ██╗ ██╗██████╗ ██╗ ██╗███╗ ██╗██████╗ ║
|
|
45
|
+
║ ██║ ██║██╔══██╗██║ ██║████╗ ██║██╔══██╗ ║
|
|
46
|
+
║ ███████║██████╔╝██║ ██║██╔██╗ ██║██████╔╝ ║
|
|
47
|
+
║ ╚════██║██╔══██╗██║ ██║██║╚██╗██║██╔══██╗ ║
|
|
48
|
+
║ ██║██║ ██║╚██████╔╝██║ ╚████║██║ ██║ ║
|
|
49
|
+
║ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚═╝ ╚═╝ ║
|
|
50
|
+
║ ║
|
|
51
|
+
║ AI AGENT OPERATING SYSTEM ║
|
|
52
|
+
║ Version 2.0.0 ║
|
|
53
|
+
║ Enhanced with AI Configuration ║
|
|
54
|
+
╚═══════════════════════════════════════════════════════════╝
|
|
55
55
|
${reset}`);
|
|
56
56
|
await sleep(500);
|
|
57
57
|
console.log(`\n${gray}[BOOT] Initializing 4Runr AI Agent OS...${reset}`);
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "4runr-os",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
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",
|