loops / directory
LOOP WORKBENCH▌
Autonomous agent loops — repeatable, goal-driven workflows that run until the exit condition is met. 7 loops indexed.
Conventional Commit Enforcer
Git
This loop ensures all Git commits follow the Conventional Commits specification by using commitlint to validate commit messages. It automatically detects non-compliant commits, suggests fixes, and guides the user through correcting them until all commits pass validation.
Large Commit Splitter
Git
Automatically splits large, monolithic Git commits into smaller, more reviewable units while preserving logical code boundaries and maintaining clean history.
Git Hygiene Loop
Git
This loop helps maintain a clean Git repository by identifying and removing stale or outdated branches that are no longer needed. It ensures your branch list remains manageable and reduces clutter in collaborative environments.
Merge Conflict Resolver
Git
Automate the resolution of Git merge conflicts by iteratively detecting conflicts, resolving them, and retrying the merge until successful.
Commit History Cleanup
Git
Refactor and clean up commit history to improve code documentation, readability, and maintainability. This loop focuses on squashing redundant commits, rewriting unclear messages, and ensuring a logical progression of changes.
Rebase Until Clean
Git
Automates the process of resolving merge conflicts during a Git rebase operation. This loop continuously attempts to rebase your current branch onto its upstream target, detects and resolves conflicts as they arise, and only exits once the rebase completes successfully without any remaining conflicts.
Branch Sync Loop
Git
Automatically keeps your current Git branch synchronized with its upstream counterpart by detecting divergence, fetching updates, and resolving merge conflicts interactively. This loop ensures your local branch remains current with remote changes while maintaining code integrity.