@@ -4,6 +4,36 @@ This file tracks the evolution of the Git/GitHub workflow automation module.
44
55## November 2025 - The Polish Updates
66
7+ ### v4.1 - Release Monitoring and Iteration Workflow (#46 )
8+
9+ Added three new recipes to improve release management and iterative PR workflows:
10+
11+ - ** ` release_age ` ** - Checks how long ago the last release was published and
12+ provides actionable feedback. Displays the release tag, publication date, age
13+ in days, and commit count since release. Warns (in yellow) if the release is
14+ more than 60 days old, suggesting it might be time for a new release. Works
15+ cross-platform with both GNU date (Linux) and BSD date (macOS). Uses ` gh `
16+ API for robust JSON parsing of release data.
17+
18+ - ** ` claude_review ` ** - Broke out Claude Code review comment display into its
19+ own standalone recipe. Previously only callable via ` pr_checks ` , it can now
20+ be run independently to quickly see Claude's latest PR comment without
21+ re-running all the checks. Still chains automatically from ` pr_checks ` for
22+ the full workflow.
23+
24+ - ** ` again ` ** - Convenience recipe for iterative PR development. Chains
25+ together the common workflow of pushing new commits, updating the PR
26+ description with current commits, and re-watching the PR checks. Saves
27+ typing when you're in the flow of making changes, getting feedback, and
28+ iterating. Includes a 2-second sleep between PR update and check watching
29+ to give GitHub's API time to catch up.
30+
31+ These recipes improve different phases of the development cycle - ` release_age `
32+ for project maintenance awareness, ` claude_review ` for quick feedback access,
33+ and ` again ` for rapid PR iteration.
34+
35+ ** Related PRs:** [ #46 ] ( https://github.com/fini-net/template-repo/pull/46 )
36+
737### v4.0 - PR Description Management (#44 )
838
939Added two new recipes for managing pull request descriptions dynamically:
0 commit comments