# Maintainers This document covers maintainer-only workflow notes that do not belong in the public project README. ## Release updates GitHub Releases are the main user-facing update channel for OpenSEO. - Ask interested users to watch the repo and enable release notifications. - Do not treat stars as a contact list; GitHub does not expose a way to message stargazers directly. ## Release notes workflow Generate notes from commits since the latest semver tag: ```sh pnpm release:notes ``` Useful variants: ```sh pnpm release:notes -- --from v0.0.1 --to HEAD pnpm release:notes -- --draft v0.0.2 ``` Supported inputs: - `--from `: start changelog generation from a specific tag - `--to `: end at a specific ref, default is `HEAD` - `--draft `: create a GitHub draft release for that tag using the generated notes - `--repo `: override the GitHub repo - `--help`: show help The generator: - uses commits since the latest semver tag by default - filters out maintenance-only commits like `chore:`, `ci:`, `test:`, `build:`, and `release:` - groups the remaining changes into short user-facing sections - can create a draft GitHub release when `--draft` is provided ## OpenCode slash command For convenience inside OpenCode, use: ```text /release-notes ``` The command definition lives at `.opencode/command/release-notes.md` and forwards any extra arguments to the same generator script.