con un clic
sync
Sync current branch with its remote tracking branch
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ú
Sync current branch with its remote tracking branch
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.
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
Basado en la clasificación ocupacional SOC
| name | sync |
| description | Sync current branch with its remote tracking branch |
Syncs the current branch with its remote, handling different scenarios.
git branch --show-current
git pull origin main
Check if we're ahead, behind, or both:
git status -sb
If behind tracking branch: Pull with rebase
git pull --rebase
If ahead of tracking branch: Push
git push
If diverged: Fetch and rebase
git fetch origin
git rebase origin/<branch-name>
If no tracking branch: Set upstream and push
git push -u origin HEAD
✓ Pulled latest main
Already up-to-date.
✓ Pushed 3 commits to origin/feature/add-filters
✓ Rebased on origin/feature/add-filters
✓ Applied 2 local commits