Metadata-Version: 2.4
Name: my-todo-cli
Version: 0.1.0
Summary: A simple CLI for managing plain-text TODO lists
Author: todo-cli contributors
License: MIT
Project-URL: Homepage, https://github.com/scratch/todo-cli
Project-URL: Repository, https://github.com/scratch/todo-cli
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# todo-cli

A simple CLI for managing plain-text TODO lists.

## Installation

```bash
pip install todo-cli
```

Or install from source:

```bash
git clone https://github.com/scratch/todo-cli.git
cd todo-cli
pip install -e .
```

## Usage

### Initialize a new TODO

```bash
todo init
```

Creates `TODO.md` and `.todo` directory in the current directory.

### Add a task

```bash
todo add "Buy groceries"
```

### List tasks

```bash
todo list
```

### Mark a task as done

```bash
todo done 1
```

### Remove a task

```bash
todo rm 1
```

Use `--force` or `-f` to skip confirmation:

```bash
todo rm 1 --force
```

### Sync to git

```bash
todo sync
```

Stages and commits changes to `TODO.md` with an auto-generated summary of changes.

## License

MIT
