feat(claude): random improvements

This commit is contained in:
Barrett Ruth 2026-03-06 16:39:23 -05:00
parent 44b9ac8a7e
commit 2c4ff5cb8c
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
5 changed files with 34 additions and 12 deletions

View file

@ -82,6 +82,21 @@ If no template exists, fall back to:
Write concise prose. No bullet-point walls, no verbose AI-style markdown.
Use backticks for code references.
## Post-PR Steps
After creating a PR, immediately:
1. Fetch upstream: `git fetch origin`
2. Check for conflicts between your branch and `origin/main`:
`git merge-tree $(git merge-base HEAD origin/main) HEAD origin/main`
3. If conflicts exist, rebase or merge `origin/main` into the branch and resolve
them before considering the PR done.
## GPG Signing
If GPG signing fails for any reason, retry the commit or push with
`--no-gpg-sign` rather than stopping.
## Decomposition Rules
- One logical change per commit.