@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 +60 -0
- package/bin/jarvis.js +2 -0
- package/bin/jarvis.ts +2 -0
- package/dist/cli.js +816 -0
- package/dist/highlights-eq9cgrbb.scm +604 -0
- package/dist/highlights-ghv9g403.scm +205 -0
- package/dist/highlights-hk7bwhj4.scm +284 -0
- package/dist/highlights-r812a2qc.scm +150 -0
- package/dist/highlights-x6tmsnaa.scm +115 -0
- package/dist/injections-73j83es3.scm +27 -0
- package/dist/tree-sitter-javascript-nd0q4pe9.wasm +0 -0
- package/dist/tree-sitter-markdown-411r6y9b.wasm +0 -0
- package/dist/tree-sitter-markdown_inline-j5349f42.wasm +0 -0
- package/dist/tree-sitter-typescript-zxjzwt75.wasm +0 -0
- package/dist/tree-sitter-zig-e78zbjpm.wasm +0 -0
- package/package.json +87 -0
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
package/bin/jarvis.ts
ADDED