What problem does it solve?
This Skill automates the final steps of a development workflow by merging a completed feature branch into the main branch, synchronizing the remote repository, and cleaning up all associated branches and temporary files.
Core Features & Use Cases
- Automated Merging: Merges the current feature branch into
main using a non-fast-forward strategy to preserve history.
- Remote Synchronization: Pushes the merged
main branch to the remote repository.
- Branch Cleanup: Deletes both the remote and local feature branches after a successful merge.
- Worktree Removal: Removes the associated local worktree directory.
- Temporary File Cleanup: Deletes task-specific temporary files.
- Use Case: After completing all development tasks and passing tests for a new feature, this Skill automatically handles the Git operations to integrate the feature into the main codebase and clean up the development environment.
Quick Start
Execute the auto-merge-and-cleanup skill to finalize the development branch.