Metadata-Version: 2.4
Name: nopush
Version: 0.1.0
Summary: A local-first, AI-powered code review assistant.
Project-URL: Homepage, https://github.com/saransh-kaushik/nopush
Project-URL: Repository, https://github.com/saransh-kaushik/nopush
Project-URL: Issues, https://github.com/saransh-kaushik/nopush/issues
Project-URL: Changelog, https://github.com/saransh-kaushik/nopush/blob/main/CHANGELOG.md
Author: Saransh Kaushik
License: MIT
License-File: LICENSE
Keywords: ai,cli,code-review,developer-tools,git,llm
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: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Version Control :: Git
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: pyyaml>=6.0.0
Requires-Dist: rich>=13.0.0
Requires-Dist: typer>=0.15.0
Provides-Extra: dev
Requires-Dist: mypy>=1.13.0; extra == 'dev'
Requires-Dist: pytest-cov>=5.0.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: ruff>=0.8.0; extra == 'dev'
Requires-Dist: types-pyyaml>=6.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# NoPush

NoPush is a local-first, AI-powered code review assistant and a lightweight alternative to CodeRabbit. It helps developers review staged changes, Git diffs, or pull request updates using their own API keys and preferred LLM provider.

## Why NoPush?

NoPush is designed to make AI code review fast, private, and easy to use from the terminal. Instead of sending your workflow into a hosted platform, NoPush keeps the experience local and developer-friendly while still giving you high-quality review feedback.

## Core Features

- **CLI-first workflow** for fast reviews from the terminal
- **Bring Your Own Key (BYOK)** support for OpenAI, Anthropic, Gemini, and more
- **Git diff parsing** for staged changes, diffs, or specific files
- **Prompt builder** that turns code changes into structured LLM input
- **Provider abstraction layer** for multiple AI models
- **Structured review output** with severity, file, line number, explanation, and suggestion
- **Clean terminal rendering** with readable, colorized feedback
- **Optional GitHub PR comments** for posting review results back to pull requests
- **Project configuration** through `nopush.yaml`
- **Python packaging** for easy installation with `pip`

## Quick Start

```bash
nopush init      # Configure API key and model
nopush review    # Review staged Git changes
```

## Configuration

NoPush uses a local configuration file, `nopush.yaml`, to store project preferences such as:

- Preferred model
- API provider
- Ignored files or directories
- Review depth
- Custom review settings

Example:

```yaml
provider: openai
model: gpt-4.1
review_depth: standard
ignore:
  - node_modules/
  - dist/
  - .git/
```
