CLI/TUI for drafting, repeating, and publishing daily standup updates as GitHub issues
github go cli golang management project tui daily
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs(readme): add installation and upgrade documentation

+35 -3
+35 -3
README.md
··· 15 15 - preview the rendered GitHub issue body with `pad show` or `pad create --dry-run` 16 16 - create the GitHub issue in your configured repository with `pad create` 17 17 18 - ## Setup 18 + ## Installation 19 + 20 + ### Quick Install (Recommended) 21 + 22 + ```bash 23 + curl -fsSL https://raw.githubusercontent.com/prefapp/pad/main/scripts/install.sh | sh 24 + ``` 25 + 26 + Install to a custom directory: 27 + 28 + ```bash 29 + curl -fsSL https://raw.githubusercontent.com/prefapp/pad/main/scripts/install.sh | INSTALL_DIR=/usr/local/bin sh 30 + ``` 31 + 32 + ### Build from Source 19 33 20 34 Requirements: 21 35 22 36 - Go 1.25+ 23 37 - `gh` installed and authenticated with `gh auth login` 24 - 25 - Build from source: 26 38 27 39 ```bash 28 40 go build -o pad . 29 41 ``` 42 + 43 + ## Setup 30 44 31 45 Create the default config: 32 46 ··· 229 243 ```bash 230 244 ./pad report --list 231 245 ``` 246 + 247 + ## Auto-Update Check 248 + 249 + `pad` automatically checks for new releases once per day. When an update is available, you'll see a notice after any command: 250 + 251 + ``` 252 + → v0.2.0 is available. Run pad upgrade to update. 253 + ``` 254 + 255 + ## Upgrade 256 + 257 + Update to the latest release: 258 + 259 + ```bash 260 + pad upgrade 261 + ``` 262 + 263 + This downloads the latest release from GitHub and replaces the current binary.