| name | yeet-release |
| description | Use when preparing, validating, tagging, or pushing a yeet patch release. |
Yeet Release
Use this skill for release work. Follow root AGENTS.md exactly.
Patch Release Flow
- Find the latest
vX.Y.Z tag and choose the next patch version.
- Update
website/docs/changelog.mdx with a date section, version heading, and
1-3 user-facing bullets. Follow .codex/skills/yeet-docs/SKILL.md for
changelog wording: the latest version must stand alone for users, and
corrective release plumbing must not be the release note.
- Commit and push the website changes inside
website/.
- Commit the updated
website submodule pointer in the root repo.
- Create an annotated tag with message equal to the version:
git tag -a vX.Y.Z -m "vX.Y.Z"
- Land the release commit on
origin/main through the root AGENTS.md
finish-to-main flow, then push the tag.
Verification
git status --short --branch
git -C website status --short --branch
git rev-parse HEAD:website
git -C website rev-parse HEAD
git tag --list 'v*' --sort=-version:refname | sed -n '1,5p'
git ls-remote --tags origin vX.Y.Z
Do not commit, tag, or push without explicit user authorization.