OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add october-academy/agent-plugins --skill sync
Quick remote sync shortcut. Use when user says "/sync", "동기화", "pull", "git pull", or wants to pull latest changes from remote. Defaults to pulling from origin main.
npx skills add october-academy/agent-plugins --skill sync
Quick git synchronization with remote repository.
If working directory has uncommitted changes:
Options:
git stash → sync → git stash pop/cpgit checkout .Default (origin main):
With rebase (cleaner history):
After successful sync:
If merge conflicts occur:
git add <files> → git commitIf local and remote have diverged:
| Error | Solution |
|---|---|
| "Uncommitted changes" | Stash or commit first |
| "Merge conflict" | Help resolve conflicts |
| "Remote not found" | Check git remote -v |
Synced with origin/main
- 3 commits pulled
- Files changed: 5
- No conflicts# Add upstream if not exists
git remote add upstream <original-repo-url>
# Sync with upstream
git fetch upstream
git merge upstream/main# Option 1: Merge (default)
git pull origin main
# Option 2: Rebase (cleaner)
git pull --rebase origin main
# Option 3: Reset (destructive, ask user)
git fetch origin
git reset --hard origin/main