eazy-git 0.3.0 → 0.3.2

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 CHANGED
@@ -52,23 +52,23 @@ This opens an interactive menu with the following options:
52
52
 
53
53
  ## 🧰 Available Commands
54
54
 
55
- | Command | Description |
56
- | ----------------- | -------------------------------------------------------------------------------------- |
57
- | `eazy-git`, `eg` | Launch the interactive CLI to create and manage Git branches |
58
- | `pull` | Pull latest changes from remote repository (`git pull origin HEAD`) |
59
- | `push` | Push local changes to remote repository (`git push origin HEAD`) |
60
- | `removelast` | Undo last commit while preserving changes in working directory (shows commit details) |
61
- | `mergewith` | Merge current branch with another remote branch (defaults to `origin/develop`) |
62
- | `commit` | Stage and commit: interactive flow (no args) or quick commit with a message |
63
- | `back` | Switch back to the previously checked out branch |
64
- | `checkout` | Switch to a specified branch or return to the previous branch |
65
- | `log` | Display formatted commit history with details |
66
- | `run` | Start development server (`npm run dev`) |
67
- | `runrun` | Clean development server restart (removes `.next` folder and runs `npm run dev`) |
68
- | `i` | Install project dependencies using configured auth token |
69
- | `eg config` | Open configuration menu (language, default branch, AI provider) |
70
- | `eg upgrade` | Upgrade eazy-git to the latest version from npm |
71
- | `-v`, `--version` | Display installed package version |
55
+ | Command | Description |
56
+ | ----------------- | ------------------------------------------------------------------------------------- |
57
+ | `eazy-git`, `eg` | Launch the interactive CLI to create and manage Git branches |
58
+ | `pull` | Pull latest changes from remote repository (`git pull origin HEAD`) |
59
+ | `push` | Push local changes to remote repository (`git push origin HEAD`) |
60
+ | `removelast` | Undo last commit while preserving changes in working directory (shows commit details) |
61
+ | `mergewith` | Merge current branch with another remote branch (defaults to `origin/develop`) |
62
+ | `commit` | Stage and commit: interactive flow (no args) or quick commit with a message |
63
+ | `back` | Switch back to the previously checked out branch |
64
+ | `checkout` | Switch to a specified branch or return to the previous branch |
65
+ | `log` | Display formatted commit history with details |
66
+ | `run` | Start development server (`npm run dev`) |
67
+ | `runrun` | Clean development server restart (removes `.next` folder and runs `npm run dev`) |
68
+ | `i` | Install project dependencies using configured auth token |
69
+ | `eg config` | Open configuration menu (language, default branch, AI provider) |
70
+ | `eg upgrade` | Upgrade eazy-git to the latest version from npm |
71
+ | `-v`, `--version` | Display installed package version |
72
72
 
73
73
  ---
74
74
 
@@ -89,7 +89,7 @@ eg config
89
89
 
90
90
  ## 🤖 AI Commit Suggestions
91
91
 
92
- When using the "Add Changes to Branch" flow, eazy-git can generate commit message suggestions using AI. Supported providers:
92
+ When using the "Add Changes to Branch" flow or running `commit` without arguments, eazy-git can generate commit message suggestions using AI. Supported providers:
93
93
 
94
94
  - **Claude**
95
95
  - **Opencode**
@@ -152,9 +152,13 @@ eazy-git/
152
152
  │ ├── ui/
153
153
  │ │ └── theme.js
154
154
  │ └── utils/
155
+ │ ├── aiCommitSuggestion.js
156
+ │ ├── commitWithHooks.js
157
+ │ ├── gitFiles.js
155
158
  │ ├── handleUserCancellation.js
156
159
  │ ├── hasGitInstalled.js
157
160
  │ ├── isEmpty.js
161
+ │ ├── selectFiles.js
158
162
  │ └── validateTicketOfJIRA.js
159
163
 
160
164
  ├── build.js
@@ -193,8 +197,8 @@ Distributed under the MIT [License](LICENSE).
193
197
 
194
198
  ## 📬 Contact
195
199
 
196
- - 🌐 **Portfolio**: [Visit my website](https://jaime00portfolio.netlify.app/)
197
- - 💼 **LinkedIn**: [linkedin.com/in/jaime00](https://www.linkedin.com/in/jaime00)
200
+ - 🌐 **Portfolio**: [Visit my website](https://jaimetorresv.com)
201
+ - 💼 **LinkedIn**: [linkedin.com/in/jaimetorresv](https://www.linkedin.com/in/jaimetorresv/)
198
202
  - 📧 **Email**: [imjaimetorresv@gmail.com](mailto:imjaimetorresv@gmail.com)
199
203
  - 🐙 **GitHub**: [github.com/jaime00](https://github.com/jaime00)
200
204