Metadata-Version: 2.4
Name: revspec
Version: 0.1.0
Summary: Terminal-based spec review tool with real-time AI conversation
Project-URL: Homepage, https://github.com/icyrainz/revspec-py
Project-URL: Repository, https://github.com/icyrainz/revspec-py
Author: icyrainz
License-Expression: MIT
Keywords: ai,claude,review,spec,terminal,tui,vim
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Text Processing :: Markup :: Markdown
Requires-Python: >=3.11
Requires-Dist: textual>=1.0.0
Description-Content-Type: text/markdown

# revspec (Python)

A terminal-based spec review tool with real-time AI conversation. Python implementation of [revspec](https://github.com/icyrainz/revspec).

This is a pure-Python alternative for environments where the original Bun-based executable is unavailable. Both versions share the same JSONL protocol and are fully interchangeable.

## Install

```bash
pipx install revspec
```

Or with pip:

```bash
pip install revspec
```

Requires Python 3.11+.

## Usage

```bash
# Interactive review
revspec spec.md

# AI integration (used by the /revspec Claude Code skill)
revspec watch spec.md
revspec reply spec.md <threadId> "<text>"
```

## Claude Code integration

See the [original revspec repo](https://github.com/icyrainz/revspec) for the `/revspec` skill and Claude Code setup instructions. The skill works with either the Bun or Python version — whichever `revspec` is on your PATH.
