Metadata-Version: 2.4
Name: cz-lazycommit
Version: 1.3.2
Summary: A Commitizen plugin that integrates with lazycommit CLI tool to generate AI-powered commit messages
License: MIT License
        
        Copyright (c) 2024 cz-lazycommit
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Project-URL: Homepage, https://github.com/lazycommit/cz-lazycommit
Project-URL: Source, https://github.com/lazycommit/cz-lazycommit
Project-URL: Issue Tracker, https://github.com/lazycommit/cz-lazycommit/issues
Project-URL: Repository, https://github.com/lazycommit/cz-lazycommit
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: commitizen
Requires-Dist: prompt-toolkit

# cz-lazycommit

A Commitizen plugin that integrates with lazycommit CLI tool to generate AI-powered commit messages.

## What it does

1. Stages your git changes
2. Calls lazycommit to generate AI-powered commit message suggestions
3. Shows you the generated commit messages
4. Allows you to confirm or edit the message
5. Creates the commit with the final message

## Installation

Install the plugin:
```bash
pip install cz-lazycommit
```

Install lazycommit:
```bash
go install github.com/m7medvision/lazycommit@latest
lazycommit config set  # Interactive setup
```

## Usage

Stage your changes and commit:
```bash
git add <files>
cz --name cz_lazycommit commit
```

The plugin will:
- Generate AI-powered commit suggestions using lazycommit
- Let you select and edit messages
- Handle conventional commit format automatically
- Support version bump detection (major/minor/patch)
