gims 0.5.3 → 0.5.4
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 +23 -0
- package/package.json +3 -3
- package/version-0.1.2.tgz +0 -0
package/README.md
CHANGED
|
@@ -60,12 +60,35 @@ g o # AI analyzes changes, commits with perfect message, and pushes!
|
|
|
60
60
|
|
|
61
61
|
## 🚀 Quick Start
|
|
62
62
|
|
|
63
|
+
### Prerequisites
|
|
64
|
+
|
|
65
|
+
- Node.js >= 18.18.0 (Node 20+ recommended)
|
|
66
|
+
- npm >= 9
|
|
67
|
+
|
|
68
|
+
Tip: Use nvm to manage Node versions per-user without sudo:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
curl -fsSL https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
|
|
72
|
+
export NVM_DIR="$HOME/.nvm" && . "$NVM_DIR/nvm.sh"
|
|
73
|
+
nvm install 20 && nvm alias default 20
|
|
74
|
+
```
|
|
75
|
+
|
|
63
76
|
### Installation
|
|
64
77
|
|
|
65
78
|
```bash
|
|
66
79
|
npm install -g gims
|
|
67
80
|
```
|
|
68
81
|
|
|
82
|
+
If you get EACCES permission errors on Linux when installing globally, set a user prefix:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
mkdir -p ~/.npm-global
|
|
86
|
+
npm config set prefix '~/.npm-global'
|
|
87
|
+
echo 'export PATH="$HOME/.npm-global/bin:$PATH"' >> ~/.bashrc
|
|
88
|
+
source ~/.bashrc
|
|
89
|
+
npm install -g gims
|
|
90
|
+
```
|
|
91
|
+
|
|
69
92
|
### Setup AI (Choose One)
|
|
70
93
|
|
|
71
94
|
**Option 1: OpenAI**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gims",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "Git Made Simple – AI‑powered git helper using Gemini / OpenAI",
|
|
5
5
|
"author": "S41R4J",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"homepage": "https://github.com/s41r4j/gims#readme",
|
|
30
30
|
"main": "bin/gims.js",
|
|
31
31
|
"engines": {
|
|
32
|
-
"node": ">=
|
|
32
|
+
"node": ">=18.18.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@google/genai": "
|
|
35
|
+
"@google/genai": "1.5.1",
|
|
36
36
|
"clipboardy": "^3.0.0",
|
|
37
37
|
"commander": "^11.1.0",
|
|
38
38
|
"openai": "^4.0.0",
|
package/version-0.1.2.tgz
DELETED
|
Binary file
|