youmna-git-glance 1.1.3 → 1.1.5
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 +18 -8
- package/package.json +12 -3
- package/.env +0 -2
package/README.md
CHANGED
|
@@ -25,6 +25,7 @@ Install the tool globally using npm:
|
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
27
|
npm install -g youmna-git
|
|
28
|
+
```
|
|
28
29
|
----------
|
|
29
30
|
# 🦋 youmna-git (ygit)
|
|
30
31
|
|
|
@@ -51,24 +52,33 @@ To use the AI features (Commit, Review, Chat), you need to get a free API Key fr
|
|
|
51
52
|
---
|
|
52
53
|
|
|
53
54
|
## 🚀 Usage
|
|
54
|
-
Simply type ygit to launch the main dashboard, or use specific subcommands:
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
Simply type `ygit` to launch the main dashboard, or use these commands:
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
⭐ **Launch the interactive dashboard**
|
|
59
|
+
```bash
|
|
59
60
|
ygit
|
|
61
|
+
```
|
|
60
62
|
|
|
61
|
-
|
|
63
|
+
⭐ **Generate an AI commit message for staged changes**
|
|
64
|
+
```bash
|
|
62
65
|
ygit commit
|
|
66
|
+
```
|
|
63
67
|
|
|
64
|
-
|
|
68
|
+
⭐ **Analyze current code diff for bugs**
|
|
69
|
+
```bash
|
|
65
70
|
ygit review
|
|
71
|
+
```
|
|
66
72
|
|
|
67
|
-
|
|
73
|
+
⭐ **Ask a question about your history**
|
|
74
|
+
```bash
|
|
68
75
|
ygit chat "What features did I add yesterday?"
|
|
76
|
+
```
|
|
69
77
|
|
|
70
|
-
|
|
78
|
+
⭐ **Get help resolving active merge conflicts**
|
|
79
|
+
```bash
|
|
71
80
|
ygit merge-help
|
|
81
|
+
```
|
|
72
82
|
|
|
73
83
|
|
|
74
84
|
🤝 Contributing
|
|
@@ -83,4 +93,4 @@ Contributions are welcome! Please feel free to submit a Pull Request.
|
|
|
83
93
|
|
|
84
94
|
4- Push to the Branch (git push origin feature/AmazingFeature)
|
|
85
95
|
|
|
86
|
-
5- Open a Pull Request
|
|
96
|
+
5- Open a Pull Request
|
package/package.json
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
|
|
3
|
+
"name": "youmna-git-glance",
|
|
4
|
+
"version": "1.1.5",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/YoumnaSalloum/youmna-git-glance.git"
|
|
8
|
+
},
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
,"description": "AI-powered Git assistant using Google Gemini with advanced features 🦋",
|
|
5
14
|
"type": "module",
|
|
6
15
|
"bin": {
|
|
7
16
|
"ygit": "./index.js"
|
package/.env
DELETED