Check the current author's commits from the last 24 hours and proactively find and fix any bugs they introduced. Use when the user asks for a daily bugfix check, wants to review today's commits for issues, or asks to "check my recent code for bugs." Combines commit review with the recent-code-bugfix workflow.
Proactively review the current author's commits from the last 24 hours, identify any bugs or issues introduced, and fix them. This is a combined workflow that scopes to the last day and applies the recent-code-bugfix pattern.
git config user.name
git log --since="24 hours ago" --author="<author>" --stat --format='%H %s'Collect the list of files touched in the last 24 hours by the current author.
For each changed file:
Categorize found issues:
Only proceed to fix Bugs. Report Warnings for the user's awareness.
For each confirmed bug, apply the recent-code-bugfix workflow:
Summarize findings: