grubble 5.7.0

Automatic semantic versioning based on conventional commits, optimized for AI-generated commit messages
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Agent instructions

## Before starting work

Create branches from latest remote main to avoid stale-local-main issues:
- `git fetch origin`
- `git checkout -b <branch-name> origin/main`

## After completing a PR

1. Move back to main: `git checkout main`
2. Reset to origin/main (local main is often stale): `git reset --hard origin/main`
3. Delete the local branch (use `-D` for squash-merged branches): `git branch -d <branch-name>`
4. Prune stale remote tracking refs: `git fetch origin --prune`