Metadata-Version: 2.4
Name: vital-cli
Version: 0.1.0
Summary: AI-powered terminal coding assistant — build, debug, refactor and ship code faster
Author-email: Jithendra <jithendragudidha@gmail.com>
Project-URL: Homepage, https://github.com/jithendra-10/Vital-CLI
Project-URL: Repository, https://github.com/jithendra-10/Vital-CLI
Project-URL: Bug Tracker, https://github.com/jithendra-10/Vital-CLI/issues
Keywords: ai,cli,coding,assistant,terminal,groq,openai,claude,gemini,llm,developer-tools,code-generation,agent
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer>=0.9.0
Requires-Dist: rich>=13.0.0
Requires-Dist: groq>=0.9.0
Requires-Dist: prompt-toolkit>=3.0.0
Requires-Dist: python-dotenv>=1.0.0
Provides-Extra: openai
Requires-Dist: openai>=1.0.0; extra == "openai"
Provides-Extra: anthropic
Requires-Dist: anthropic>=0.25.0; extra == "anthropic"
Provides-Extra: gemini
Requires-Dist: google-generativeai>=0.5.0; extra == "gemini"
Provides-Extra: all
Requires-Dist: openai>=1.0.0; extra == "all"
Requires-Dist: anthropic>=0.25.0; extra == "all"
Requires-Dist: google-generativeai>=0.5.0; extra == "all"
Dynamic: license-file

# 🧠 Vital

> AI-powered coding assistant for your terminal — powered by Groq

## Installation

```bash
pip install vital
vital setup   # enter your Groq API key once
```

## Commands

| Command | What it does |
|---------|-------------|
| `vital chat <message>` | Chat with AI directly |
| `vital debug` | Debug errors with AI help |
| `vital explain <path>` | Explain code in plain English |
| `vital fix <file>` | Fix issues in a file |
| `vital doc <path>` | Generate documentation |
| `vital commit` | Auto-generate git commit messages |
| `vital refactor <file>` | Improve code quality |
| `vital test <file>` | Generate unit tests |
| `vital init <project>` | Create project boilerplate |

## Examples

```bash
# Debug an error
vital debug --run "python app.py"

# Explain your project
vital explain src/

# Fix a specific file
vital fix auth.py --issue "login fails for special characters"

# Generate docs
vital doc . --output README.md

# Smart commit
vital commit --push

# Generate tests
vital test main.py

# Start a new project
vital init flask-api --name my-project
```

## Requirements

- Python 3.10+
- Free [Groq API key](https://console.groq.com)

## License

MIT
