Metadata-Version: 2.4
Name: plain.upgrade
Version: 0.3.3
Summary: Upgrade Plain packages using AI agents.
Requires-Python: >=3.11
Requires-Dist: ast-grep-cli>=0.38.5
Requires-Dist: click>=8.0.0
Description-Content-Type: text/markdown

# plain.upgrade

**Upgrade Plain packages using AI agents.**

The `plain-upgrade` command can be run using `uvx` (part of the `uv` package manager) and will update the Plain packages in your project, then prompt an AI agent to run any additional upgrade steps for each package.

The recommended way to use it is to define your preferred LLM/AI agent command either in your personal shell configuration (ex. `.zshrc` or `.bashrc`) or in your project (ex. `.env`).

```bash
export PLAIN_UPGRADE_AGENT_COMMAND="claude --permission-mode acceptEdits"
```

Updating Plain is then as simple as running:

```bash
uvx plain-upgrade
```

Note that this command only supports `uv` currently. Run `uvx plain-upgrade --help` for more options.
