Metadata-Version: 2.4
Name: remind-cli
Version: 1.0.8
Summary: A cross-platform CLI reminder and notification engine with AI-powered suggestions and smart nudges
Project-URL: Homepage, https://github.com/hamzaplojovic/remind
Project-URL: Repository, https://github.com/hamzaplojovic/remind.git
Project-URL: Documentation, https://github.com/hamzaplojovic/remind/blob/main/README.md
Project-URL: Bug Tracker, https://github.com/hamzaplojovic/remind/issues
Author: Remind Contributors
License: MIT
Keywords: ai,cli,notifications,reminders,scheduler
Requires-Python: >=3.12
Requires-Dist: dateparser
Requires-Dist: httpx
Requires-Dist: notify-py
Requires-Dist: pydantic
Requires-Dist: pydantic-settings
Requires-Dist: remind-database>=1.0.0
Requires-Dist: remind-shared>=1.0.1
Requires-Dist: sqlalchemy
Requires-Dist: tabulate
Requires-Dist: typer[all]
Provides-Extra: build
Requires-Dist: pyinstaller>=6.0.0; extra == 'build'
Provides-Extra: dev
Requires-Dist: mypy>=1.5.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.1.0; extra == 'dev'
Requires-Dist: pytest-mock>=3.11.0; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff>=0.1.0; extra == 'dev'
Provides-Extra: linux
Requires-Dist: dbus-python; extra == 'linux'
Provides-Extra: macos
Description-Content-Type: text/markdown

# Remind CLI

AI-powered command-line reminder and notification engine.

## Quick Start

```bash
remind add "Buy groceries" --due "tomorrow 5pm"
remind list
remind done 1
```

## Features

- AI-powered reminder suggestions
- Smart scheduling and notifications
- Full-text search
- Cross-platform support (macOS, Linux, Windows)
- License-based plan tiers (Free, Pro, Enterprise)

## Installation

```bash
pip install remind-cli
```

Or build from source:

```bash
uv sync
uv run remind --help
```

## Commands

- `add` - Create a new reminder
- `list` - List all reminders
- `done` - Mark reminder as complete
- `search` - Search reminders by text
- `login` - Authenticate with license token
- `settings` - Manage configuration
- `report` - View usage statistics
- `scheduler` - Manage background scheduler
- `doctor` - Diagnose issues
- `upgrade` - View pricing plans
- `uninstall` - Remove Remind

## Documentation

See [../../REFACTORING_COMPLETE.md](../../REFACTORING_COMPLETE.md) for architecture and implementation details.
