@benzsiangco/jarvis 1.0.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 ADDED
@@ -0,0 +1,60 @@
1
+ # Jarvis AI CLI
2
+
3
+ An AI coding agent with TUI, Web, and Desktop support.
4
+
5
+ ## Installation
6
+
7
+ ### From npm (Stable)
8
+
9
+ ```bash
10
+ npm install -g @benzsiangco/jarvis
11
+ ```
12
+
13
+ ### From GitHub (Latest)
14
+
15
+ ```bash
16
+ npm install -g git+https://github.com/benzsiangco/jarvis.git
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ Simply run:
22
+
23
+ ```bash
24
+ jarvis
25
+ ```
26
+
27
+ This will launch the Terminal User Interface (TUI) where you can:
28
+ - Chat with AI models (Claude, GPT-4, Gemini, etc.)
29
+ - Use slash commands (Type `/` to see options)
30
+ - Manage skills (`/skills`)
31
+ - Connect accounts (`/auth` or via menu)
32
+
33
+ ## Key Bindings
34
+
35
+ - **Ctrl+P**: Open Commands Menu
36
+ - **Ctrl+T**: Switch Model Variants (if available)
37
+ - **Ctrl+L**: Clear Chat
38
+ - **Ctrl+N**: New Session
39
+ - **Ctrl+C**: Exit (with summary)
40
+ - **Up/Down**: Cycle Prompt History
41
+
42
+ ## Development
43
+
44
+ To install dependencies:
45
+
46
+ ```bash
47
+ bun install
48
+ ```
49
+
50
+ To run in development:
51
+
52
+ ```bash
53
+ bun run dev
54
+ ```
55
+
56
+ To build:
57
+
58
+ ```bash
59
+ bun run build
60
+ ```
package/bin/jarvis.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import "../dist/cli.js";
package/bin/jarvis.ts ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env bun
2
+ import "../src/cli.ts";