with one click
merge-main
Merge main into current branch, helping with conflicts if needed
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Merge main into current branch, helping with conflicts if needed
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Generate a new React component with Mantine styling
Update documentation after implementing features or making changes
Run a quick architecture review via architect-reviewer agent
Generate mobile-specific React components with platform detection and safe areas
Run a quick security audit on recent changes or specific files
Generate a test file for a component, hook, or utility
| name | merge-main |
| description | Merge main into current branch, helping with conflicts if needed |
Fetches and merges origin/main into the current feature branch.
git branch --show-current
git fetch origin main
git merge origin/main
If merge succeeds with no conflicts, inform user.
If there are merge conflicts:
git diff --name-only --diff-filter=U
git add -A
git commit -m "chore: merge main into <branch-name>"
✓ Fetched origin/main
✓ Merged main into feature/add-filters
Branch is now up-to-date with main.
⚠️ Merge conflicts detected in:
- src/components/TaskList.tsx
- src/hooks/useFilters.ts
Let me help resolve these...
[Shows conflict resolution assistance]
✓ Conflicts resolved
✓ Merge committed