Metadata-Version: 2.4
Name: makima-cli
Version: 0.2.1
Summary: AI coding assistant for your terminal
Author: Kanhaiya
License: MIT License
        
        Copyright (c) 2026 Kanhaiya kumar
        
        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.
        
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: groq
Requires-Dist: python-dotenv
Requires-Dist: gitpython
Requires-Dist: rich
Requires-Dist: pyfiglet
Requires-Dist: questionary
Dynamic: license-file

# Makima CLI 🤖

An AI-powered coding assistant that runs in your terminal. Point it at any codebase and ask questions, make edits, and run commands — all from a clean CLI interface.

## Features

- Understands your entire codebase
- Answers questions about your code
- Edits files with auto git backup before changes
- Creates new files
- Runs terminal commands with confirmation
- Works on any project
- Clean terminal UI with syntax highlighting

## Install

git clone https://github.com/yourusername/makima-cli.git
cd makima-cli
pip install -r requirements.txt

## Setup

Create a .env file in the project root:
GROQ_API_KEY=your_key_here

Get a free API key at https://console.groq.com

## Usage

Point it at any project:
python main.py /path/to/your/project

Or run from inside a project folder:
cd your-project
python /path/to/makima-cli/main.py

## Built With

- Python
- Groq API
- Rich
- GitPython
