@@ -14,20 +14,20 @@ AI-powered git commit message generator that works completely offline. Analyzes
1414## Installation
1515
1616``` bash
17- npm install -g git-smart
17+ npm install -g @neabyte/ git-smart
1818```
1919
2020Or use directly:
2121``` bash
22- npx git-smart
22+ npx @neabyte/ git-smart
2323```
2424
2525## Usage
2626
2727### Basic Usage
2828``` bash
2929git add .
30- git-smart
30+ npx @neabyte/ git-smart
3131```
3232
3333Example output:
@@ -40,7 +40,7 @@ Use this message? (Y/n): y
4040
4141### Interactive Mode
4242``` bash
43- git-smart --interactive
43+ npx @neabyte/ git-smart --interactive
4444```
4545
4646Example output:
@@ -64,7 +64,7 @@ Choose (1-4): 1
6464### Options
6565
6666``` bash
67- git-smart [options]
67+ npx @neabyte/ git-smart [options]
6868
6969Options:
7070 -i, --interactive Interactive mode with multiple suggestions
@@ -73,6 +73,11 @@ Options:
7373 -h, --help Show help message
7474```
7575
76+ Or if installed globally:
77+ ``` bash
78+ git-smart [options]
79+ ```
80+
7681## Commit Format
7782
7883Git-Smart generates commits in the format: ** ` type(action): description ` **
@@ -196,7 +201,7 @@ init(project): setup initial project structure
196201### Adding Authentication
197202``` bash
198203$ git add src/auth.js src/login.js
199- $ git-smart
204+ $ npx @neabyte/ git-smart
200205
201206🔍 Analyzing changes...
202207💡 Suggested commit: " feat(auth): implement user authentication system"
@@ -205,7 +210,7 @@ $ git-smart
205210### Bug Fix
206211``` bash
207212$ git add src/api/users.js
208- $ git-smart
213+ $ npx @neabyte/ git-smart
209214
210215🔍 Analyzing changes...
211216💡 Suggested commit: " fix(api): resolve null response handling"
@@ -214,7 +219,7 @@ $ git-smart
214219### Documentation Update
215220``` bash
216221$ git add README.md docs/
217- $ git-smart
222+ $ npx @neabyte/ git-smart
218223
219224🔍 Analyzing changes...
220225💡 Suggested commit: " docs(readme): update API documentation"
@@ -223,7 +228,7 @@ $ git-smart
223228### Test Addition
224229``` bash
225230$ git add tests/auth.test.js
226- $ git-smart
231+ $ npx @neabyte/ git-smart
227232
228233🔍 Analyzing changes...
229234💡 Suggested commit: " test(auth): add authentication test coverage"
@@ -233,7 +238,7 @@ $ git-smart
233238
2342391 . Fork the repository at [ https://github.com/NeaDigitra/Git-Smart ] ( https://github.com/NeaDigitra/Git-Smart )
2352402 . Create your feature branch: ` git checkout -b feat/new-feature `
236- 3 . Commit your changes: ` git-smart `
241+ 3 . Commit your changes: ` npx @neabyte/ git-smart`
2372424 . Push to the branch: ` git push origin feat/new-feature `
2382435 . Submit a pull request
239244
0 commit comments