tools-github-integration
Installation
SKILL.md
Integration Orchestration
Overview
This skill provides a robust, high-frequency workflow for merging multiple active development streams (from Git worktrees or feature branches) into a disposable integration-preview branch. It is designed for fast-paced agentic environments where integration checks should happen continuously or on-demand, rather than just daily.
When to Use
- Condition: The project MUST be a Git repository.
- Trigger: Frequent intervals (e.g., hourly, on-demand, or after any significant agent task completion).
- Goal: Rapidly verify that fast-moving parallel workstreams are compatible before they hit the main branch.
The Orchestration Workflow
1. Discovery
- List Worktrees: Identify all active worktrees and their current HEAD branches.
git worktree list - Filter: Exclude
main,master, or maintenance branches. Focus on feature/fix branches.