Metadata-Version: 2.3
Name: pyrems
Version: 0.1.0
Summary: Add your description here
Requires-Dist: click>=8.3.0
Requires-Dist: rich>=13.0.0
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# pyrems

A simple Python CLI tool for remembering and managing your most important bash commands.

## What it does

`pyrems` (Python Remember Shell) helps you save, organize, and quickly access important commands you don't want to lose. Instead of digging through your bash history or losing commands when switching computers, `pyrems` stores your commands with optional notes and tracks how often you use them.

## Key Features

- **Save commands** with notes for future reference
- **Smart storage** - automatically increments hit counter for repeated commands
- **Interactive search** - browse and fuzzy-search your saved commands
- **Persistent across machines** - sync your commands via dotfiles
- **Usage tracking** - see which commands you use most often

## Quick Start

```bash
# Install pyrems
pip install pyrems

# Initialize the tool
pyrems install

# Save a command (add to your .bashrc)
tar -xzvf archive.tar.gz
rem "Extract gzipped tar archive"

# Browse and search saved commands
pyrems

# List all saved commands
pyrems list
```

## Commands

- `pyrems` - Interactive command browser with fuzzy search
- `pyrems store` - Store a command (usually called by the `rem` bash function)
- `pyrems list` - Display all saved commands in a table
- `pyrems install` - Set up configuration and files

---

Never forget that useful command again! 🧠

