Metadata-Version: 2.4
Name: diffchecker-skill
Version: 0.1.0
Summary: Create shareable Diffchecker URLs from the command line
Project-URL: Homepage, https://github.com/wise-toddler/diffchecker-skill
Project-URL: Repository, https://github.com/wise-toddler/diffchecker-skill
Author-email: Shivansh Singh <wiseeldrich2004@gmail.com>
License-Expression: MIT
Keywords: cli,diff,diffchecker,share,skills
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# diffchecker-skill

Create shareable [Diffchecker](https://www.diffchecker.com) URLs from the command line.

## Install

```bash
uv tool install diffchecker-skill
# or
pip install diffchecker-skill
```

## Usage

```bash
# Optional: login to link diffs to your account
diffcheck login '<diffsession_cookie_value>'
diffcheck whoami

# Compare two files
diffcheck diff file1.txt file2.txt

# With title and expiry
diffcheck diff old.py new.py --title "refactor" --expiry 1_week

# Pipe from stdin
cat old.py | diffcheck diff - new.py

# Shorthand (no subcommand)
diffcheck file1.txt file2.txt
```

## Expiry Options

`1_hour`, `1_day` (default), `1_week`, `1_month`, `forever`
