···1515- preview the rendered GitHub issue body with `pad show` or `pad create --dry-run`
1616- create the GitHub issue in your configured repository with `pad create`
17171818-## Setup
1818+## Installation
1919+2020+### Quick Install (Recommended)
2121+2222+```bash
2323+curl -fsSL https://raw.githubusercontent.com/prefapp/pad/main/scripts/install.sh | sh
2424+```
2525+2626+Install to a custom directory:
2727+2828+```bash
2929+curl -fsSL https://raw.githubusercontent.com/prefapp/pad/main/scripts/install.sh | INSTALL_DIR=/usr/local/bin sh
3030+```
3131+3232+### Build from Source
19332034Requirements:
21352236- Go 1.25+
2337- `gh` installed and authenticated with `gh auth login`
2424-2525-Build from source:
26382739```bash
2840go build -o pad .
2941```
4242+4343+## Setup
30443145Create the default config:
3246···229243```bash
230244./pad report --list
231245```
246246+247247+## Auto-Update Check
248248+249249+`pad` automatically checks for new releases once per day. When an update is available, you'll see a notice after any command:
250250+251251+```
252252+→ v0.2.0 is available. Run pad upgrade to update.
253253+```
254254+255255+## Upgrade
256256+257257+Update to the latest release:
258258+259259+```bash
260260+pad upgrade
261261+```
262262+263263+This downloads the latest release from GitHub and replaces the current binary.