jerob 1.0.0 → 1.1.0
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 +19 -7
- package/bin/jerob.js +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,25 +31,37 @@ Define recurring tasks in plain English. Jerob's AI breaks them into steps (web
|
|
|
31
31
|
|
|
32
32
|
---
|
|
33
33
|
|
|
34
|
-
##
|
|
34
|
+
## Installation
|
|
35
|
+
|
|
36
|
+
**Via npm (recommended):**
|
|
35
37
|
|
|
36
38
|
```bash
|
|
37
|
-
# 1. Install Bun
|
|
39
|
+
# 1. Install Bun first (required runtime)
|
|
38
40
|
# Windows:
|
|
39
41
|
powershell -c "irm bun.sh/install.ps1 | iex"
|
|
40
42
|
# macOS/Linux:
|
|
41
43
|
curl -fsSL https://bun.sh/install | bash
|
|
42
44
|
|
|
43
|
-
# 2.
|
|
44
|
-
|
|
45
|
-
|
|
45
|
+
# 2. Install jerob globally
|
|
46
|
+
npm install -g jerob
|
|
47
|
+
|
|
48
|
+
# 3. Launch — setup wizard runs on first use
|
|
49
|
+
jerob jet
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
**Via Git (for contributors / latest source):**
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
git clone https://github.com/ABHI-Theq/Jerob-Personal_AI_Operator
|
|
56
|
+
cd Jerob-Personal_AI_Operator
|
|
46
57
|
bun install
|
|
47
58
|
bun link
|
|
48
|
-
|
|
49
|
-
# 3. Launch — setup wizard runs automatically on first use
|
|
50
59
|
jerob jet
|
|
51
60
|
```
|
|
52
61
|
|
|
62
|
+
No `.env` file needed — the setup wizard encrypts your keys and creates it automatically.
|
|
63
|
+
```
|
|
64
|
+
|
|
53
65
|
No `.env` needed. The setup wizard encrypts your keys and creates it automatically.
|
|
54
66
|
|
|
55
67
|
---
|
package/bin/jerob.js
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { execFileSync } from "node:child_process";
|
|
4
|
+
import path from "node:path";
|
|
5
|
+
|
|
2
6
|
/**
|
|
3
7
|
* npm entry point for jerob.
|
|
4
8
|
* Requires Bun to be installed: https://bun.sh
|
|
5
9
|
* Shells out to Bun so the TypeScript source runs natively.
|
|
6
10
|
*/
|
|
7
|
-
const { execFileSync } = require("node:child_process");
|
|
8
|
-
const path = require("node:path");
|
|
9
11
|
|
|
10
12
|
// Check Bun is available
|
|
11
13
|
try {
|