Best for
- Use when the user wants to rebase on main, update their branch with latest main, or sync with upstream.
dyoshikawa/rulesync/.rulesync/skills/rebase-latest-main/SKILL.md
Fetch latest origin/main and rebase it onto the current branch, resolving conflicts if necessary. Use when the user wants to rebase on main, update their branch with latest main, or sync with upstream.
Decision brief
Fetch the latest origin/main and rebase it onto the current working branch.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/dyoshikawa/rulesync --skill ".rulesync/skills/rebase-latest-main"Inspect the Agent Skill "rebase-latest-main" from https://github.com/dyoshikawa/rulesync/blob/310b711fbe8cffc14debb276ade8a384c2b89083/.rulesync/skills/rebase-latest-main/SKILL.md at commit 310b711fbe8cffc14debb276ade8a384c2b89083. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
1. Check the current branch:
Fetch the latest changes from the remote:
1. Identify conflicting files:
If unable to resolve conflicts automatically:
Permission review
The documentation asks the agent to run terminal commands or scripts.
git branch --show-currentThe documentation asks the agent to run terminal commands or scripts.
git status --porcelainThe documentation includes network, browsing, or remote request actions.
Fetch the latest changes from the remote:The documentation asks the agent to read local files, directories, or repositories.
Read the file content to understand the conflictEvidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 71/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 1,263 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Fetch the latest origin/main and rebase it onto the current working branch.
Check the current branch:
git branch --show-current
Ensure there are no uncommitted changes:
git status --porcelain
If there are uncommitted changes, either:
Fetch the latest changes from the remote:
git fetch origin main
Start the rebase:
git rebase origin/main
Proceed to Step 5.
Identify conflicting files:
git diff --name-only --diff-filter=U
For each conflicting file:
git add <resolved-file>
Continue the rebase:
git rebase --continue
Repeat until all conflicts are resolved and rebase is complete.
If unable to resolve conflicts automatically:
git rebase --abort
After successful rebase, force push to update the remote branch:
git push --force-with-lease
Note: --force-with-lease is safer than --force as it prevents overwriting others' work.
Summarize the operation:
Alternatives
coreyhaines31/marketingskills
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
coreyhaines31/marketingskills
When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o
event4u-app/agent-config
Use when the user says "review the design", "check the UI", or wants a comprehensive UI/UX review. Uses a 7-phase methodology covering interaction, responsiveness, accessibility, and more.
K-Dense-AI/scientific-agent-skills
Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.