komodo-cli 0.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 +59 -0
- package/dist/index.js +43106 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# Komodo CLI
|
|
2
|
+
|
|
3
|
+
**The simple way to set up your project.** Just say what you want to build.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g komodo-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Just say what you want
|
|
15
|
+
komodo "build a website"
|
|
16
|
+
komodo "train an AI model"
|
|
17
|
+
komodo "analyze some data"
|
|
18
|
+
|
|
19
|
+
# Preview without installing
|
|
20
|
+
komodo "build a chatbot" --preview
|
|
21
|
+
|
|
22
|
+
# See what's installed
|
|
23
|
+
komodo list
|
|
24
|
+
|
|
25
|
+
# Check for problems
|
|
26
|
+
komodo check
|
|
27
|
+
|
|
28
|
+
# Undo last change
|
|
29
|
+
komodo undo
|
|
30
|
+
|
|
31
|
+
# Open visual dashboard
|
|
32
|
+
komodo ui
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Examples
|
|
36
|
+
|
|
37
|
+
| You say | Komodo sets up |
|
|
38
|
+
|---------|----------------|
|
|
39
|
+
| "build a website" | Next.js, React, TypeScript |
|
|
40
|
+
| "train a vision model" | PyTorch, torchvision, Pillow |
|
|
41
|
+
| "analyze data" | Pandas, NumPy, Matplotlib |
|
|
42
|
+
| "create a chatbot" | Llama (local AI) |
|
|
43
|
+
| "build an API" | Express, TypeScript |
|
|
44
|
+
|
|
45
|
+
## Features
|
|
46
|
+
|
|
47
|
+
- **Intent-based**: No need to know package names
|
|
48
|
+
- **Hardware-aware**: Detects GPU, OS, and installs the right versions
|
|
49
|
+
- **Rollback**: Undo any change instantly
|
|
50
|
+
- **Visual**: Dashboard to see everything at a glance
|
|
51
|
+
|
|
52
|
+
## Requirements
|
|
53
|
+
|
|
54
|
+
- Node.js 18+
|
|
55
|
+
- Python 3.8+ (for Python projects)
|
|
56
|
+
|
|
57
|
+
## License
|
|
58
|
+
|
|
59
|
+
MIT
|