Skip to content
This repository was archived by the owner on May 3, 2025. It is now read-only.

Commit b462138

Browse files
authored
Merge pull request #13 from IanSkelskey/dev
release: v0.0.1
2 parents 8f9f7ea + 2db32a6 commit b462138

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Commit Generator
1+
# AI Diff Commit
22

3-
![Version](https://img.shields.io/badge/version-v1.0.0-blue)
3+
![Version](https://img.shields.io/badge/version-0.0.1-blue)
44

55
Automates the creation of standardized Git commit messages using [OpenAI's API](https://platform.openai.com/docs/).
66

@@ -33,12 +33,12 @@ Automates the creation of standardized Git commit messages using [OpenAI's API](
3333
Commit Generator can be installed using npm:
3434

3535
```bash
36-
npm install -g commit-generator
36+
npm install -g ai-diff-commit
3737
```
3838

3939
## Usage Instructions
4040

41-
Once you have set up the script using the installation instructions, you can use the `comgen` command to generate commit messages based on the changes in your repository.
41+
Once you have set up the script using the installation instructions, you can use the `ai-diff-commit` command to generate commit messages based on the changes in your repository.
4242

4343
### Flags
4444

@@ -50,7 +50,7 @@ Once you have set up the script using the installation instructions, you can use
5050
For example, to generate a commit message based on all changes in the repository and push the changes to the remote repository, you can use the following command:
5151

5252
```bash
53-
comgen -a -p
53+
ai-diff-commit -a -p
5454
```
5555

5656
## License

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "commit-generator",
3-
"version": "1.0.0",
2+
"name": "ai-diff-commit",
3+
"version": "0.0.1",
44
"description": "A CLI tool to generate commit messages using AI, powered by OpenAI.",
55
"main": "dist/main.js",
66
"bin": {
7-
"comgen": "dist/main.js"
7+
"ai-diff-commit": "dist/main.js"
88
},
99
"scripts": {
1010
"build": "tsc && xcopy src\\rules dist\\rules /E /I",

0 commit comments

Comments
 (0)