jerob 1.0.0 → 1.1.1

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Abhishek Sharma
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
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
- ## Quick Start
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. Clone and install
44
- git clone https://github.com/your-username/jerob
45
- cd jerob
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,9 @@
1
1
  #!/usr/bin/env node
2
- /**
3
- * npm entry point for jerob.
4
- * Requires Bun to be installed: https://bun.sh
5
- * Shells out to Bun so the TypeScript source runs natively.
6
- */
7
- const { execFileSync } = require("node:child_process");
8
- const path = require("node:path");
2
+ import { execFileSync } from "node:child_process";
3
+ import { fileURLToPath } from "node:url";
4
+ import { dirname, join } from "node:path";
5
+
6
+ const __dirname = dirname(fileURLToPath(import.meta.url));
9
7
 
10
8
  // Check Bun is available
11
9
  try {
@@ -20,7 +18,7 @@ try {
20
18
  process.exit(1);
21
19
  }
22
20
 
23
- const entry = path.join(__dirname, "..", "index.ts");
21
+ const entry = join(__dirname, "..", "index.ts");
24
22
 
25
23
  execFileSync("bun", [entry, ...process.argv.slice(2)], {
26
24
  stdio: "inherit",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jerob",
3
- "version": "1.0.0",
3
+ "version": "1.1.1",
4
4
  "description": "Personal AI agent CLI — autonomous code agent, planner, browser automation, Q&A, and serverless scheduler",
5
5
  "module": "index.ts",
6
6
  "private": false,