con un clic
merge-main
Merge main into current branch, helping with conflicts if needed
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Merge main into current branch, helping with conflicts if needed
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
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