Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计提醒

rebaserebase 搜索

Agent Skill

rebase 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

665

周安装

28

GitHub Stars

9

下载量

233
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rebase(rebase 搜索)
来源仓库:https://github.com/equinor/fusion-framework
仓库路径:skills/rebase
安装命令:
npx skills add https://github.com/equinor/fusion-framework --skill rebase
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/equinor/fusion-framework --skill rebase

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息匹配与过滤。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • rebase 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Rebase Skill (Fusion Framework)

This skill helps you rebase feature branches onto the latest main branch, handling common conflicts in a pnpm monorepo.

Overview

When rebasing a feature branch, you'll often encounter conflicts in pnpm-lock.yaml due to parallel dependency changes. The correct approach is to regenerate the lockfile rather than manually resolving conflicts.

Standard Rebase Workflow

1. Prepare for rebase

# Navigate to your worktree or branch
cd /path/to/worktree

# Ensure you're on the correct branch
git branch

# Fetch latest changes from origin (including main)
git fetch origin
git fetch origin main:refs/remotes/origin/main

2. Start the rebase

# Rebase your branch onto the latest main
git rebase origin/main

3. Handle pnpm-lock.yaml conflicts

CRITICAL: When pnpm-lock.yaml has conflicts during rebase:

# Regenerate it from package.json files
pnpm install

# Stage the regenerated lockfile
git add pnpm-lock.yaml

# Continue the rebase
git rebase --continue

4. Handle "Version Packages" commit conflicts

When you encounter a "Version Packages (next)" commit with conflicts:

This happens when your feature branch has pre-release versions (e.g., 2.0.0-next.0) but main has been updated with newer regular versions.

Resolution strategy:

  • package.json: Use --ours (HEAD version from main)
  • CHANGELOG.md: Use --ours (HEAD changelog from main)
# For all package.json conflicts, keep HEAD version
git checkout --ours "packages/*/package.json"
git add "packages/*/package.json"

# For all CHANGELOG.md conflicts, keep HEAD changelog
git checkout --ours "packages/*/CHANGELOG.md"
git add "packages/*/CHANGELOG.md"

# Also check other affected files
git checkout --ours "vue-press/package.json" 2>/dev/null || true
git add "vue-press/package.json" 2>/dev/null || true

# Continue the rebase
git rebase --continue

Why? The main branch has the authoritative versions and changelogs. Your feature branch's pre-release versions will be regenerated when you create a new changeset after rebasing.

5. Handle other conflicts

For conflicts in source files (.ts, .tsx, etc.):

# Manually resolve conflicts in the files
# Then stage the resolved files
git add path/to/resolved-file.ts

# Continue the rebase
git rebase --continue

6. Complete the rebase

After all commits are rebased successfully:

# Verify the branch is clean
git status

# Force push to update the remote branch
git push --force-with-lease origin YOUR_BRANCH_NAME

7. Align pre.json initial versions (if in pre mode)

If .changeset/pre.json exists (pre-release mode), align initialVersions to current package versions for packages changed by the rebase:

# From repo root
node .github/skills/rebase/scripts/align-pre-initial-versions.cjs

What it does:

  • Reads .changeset/pre.json to get the tag (e.g., next)
  • Updates initialVersions when the current package version does NOT end with -TAG.NUMBER (e.g., 2.0.0 or 2.1.0)
  • Skips entries where the current version ends with -TAG.NUMBER (e.g., 2.0.0-next.0), preserving ongoing pre state

8. Sanity check vs remote

Before pushing, verify local rebase result against the remote branch.

# Ensure you have latest remote
git fetch origin

# Set a helper var for current branch
BRANCH=$(git rev-parse --abbrev-ref HEAD)

# Quick overview of what will change on the remote
git diff --stat origin/$BRANCH...HEAD

# See the file list (useful to spot unintended changes)
git diff --name-only origin/$BRANCH...HEAD | sort

# Review commit differences (left/right) without merges
git log --oneline --left-right --cherry --no-merges origin/$BRANCH...HEAD

# Optional: preview the push without sending any data
git push --force-with-lease --dry-run origin $BRANCH

Proceed to push only if the changes match expectations.

9. Generate raw data report

Run the data extraction script:

# From repo root
node .github/skills/rebase/scripts/generate-rebase-report.cjs --no-fetch

This generates .tmp/skills/rebase/<timestamp>-rebase-report.md with raw data:

  • Ahead/behind counts and diff summary
  • Highlights & Anomalies: largest diffs, config changes, dependency summary
  • Full commit list (all 57+ commits with hashes and messages)
  • Changed packages and top-level folders
  • pre.json initialVersions changes (version baseline updates)
  • pnpm-lock.yaml churn
  • Detailed Dependency Changes - Complete breakdown per package:

- ⚠️ Major version bumps (e.g., zod: ^3.23.8 → ^4.3.5) - ➕ Added dependencies (e.g., @azure/search-documents: ^12.2.0) - ➖ Removed dependencies - Minor/patch version changes - Organized by section: dependencies, devDependencies, peerDependencies

10. Generate human-readable summary (automatic)

After the raw report is generated, the AI agent will automatically:

  1. Read the latest report from .tmp/skills/rebase/<timestamp>-rebase-report.md
  2. Analyze the "Detailed Dependency Changes" section
  3. Create a human-readable summary with:

- Breaking dependency changes - Each major bump explained (what package, what changed, why it matters, what to test) - New dependencies added - What was added and its purpose - Version baselines updated - Which packages bumped and what that means - Risk assessment - Overall risk level (🟢 LOW, 🟡 MEDIUM, 🔴 HIGH) with reasoning - Pre-push checklist - Specific tests to run based on detected changes

The summary will be displayed in the chat for review before you push.

  • Next steps: sanity checks and push confirmation

Open the SUMMARY.md file in your editor to review before pushing.

Common Scenarios

Reset local branch to match remote

If your local branch has diverged incorrectly:

# Fetch latest
git fetch origin

# Hard reset to remote branch
git reset --hard origin/YOUR_BRANCH_NAME

Abort a rebase in progress

If you need to start over:

git rebase --abort

Continue after fixing conflicts

# After resolving conflicts and staging changes
git rebase --continue

Skip a commit during rebase

Only if the commit is no longer needed:

git rebase --skip

Rebase Checklist

  • Fetch latest changes from origin
  • Start rebase onto origin/main
  • For pnpm-lock.yaml conflicts:

- Remove the file with git rm pnpm-lock.yaml - Run pnpm install to regenerate - Stage with git add pnpm-lock.yaml

  • For source file conflicts:

- Manually resolve conflicts - Stage resolved files

  • Continue rebase with git rebase --continue
  • Repeat until all commits are applied
  • Force push with --force-with-lease

Why Regenerate pnpm-lock.yaml?

The lockfile contains exact dependency resolutions for the entire monorepo. During a rebase:

  1. Base branch (main) has new/updated dependencies
  2. Your branch has different/updated dependencies
  3. Git cannot merge these semantically - it only sees text conflicts

By regenerating with pnpm install:

  • pnpm reads all current package.json files (including your changes)
  • Resolves dependencies against the latest registry state
  • Creates a consistent lockfile that works with both sets of changes
  • Respects workspace protocols and catalog references

Troubleshooting

"diverged and have X and Y different commits"

Your local branch has commits that aren't on remote. Common causes:

  • Previous force push to a different commit
  • Local branch accidentally pointing to wrong commit

Fix: Reset to remote and rebase:

git fetch origin
git fetch origin main:refs/remotes/origin/main
git reset --hard origin/YOUR_BRANCH_NAME
git rebase origin/main

Rebase conflicts on every commit

You may be rebasing in the wrong direction. Ensure:

  • You're ON your feature branch
  • You're rebasing ONTO main: git rebase origin/main

pnpm install fails during rebase

Check:

  • All package.json changes are staged/committed
  • No syntax errors in modified package.json files
  • You're running from the repository root

Example: Complete rebase flow

# 1. Navigate and prepare
cd /Users/odin.rochmann/dev/GitHub/fusion-framework.worktree/react-19
git fetch origin
git fetch origin main:refs/remotes/origin/main

# 2. Ensure clean state
git status  # Should show "nothing to commit, working tree clean"

# 3. Start rebase
git rebase origin/main

# 4. If pnpm-lock.yaml conflict appears:
git rm pnpm-lock.yaml
pnpm install
git add pnpm-lock.yaml
git rebase --continue

# 5. Repeat step 4 for each commit with lockfile conflicts

# 6. When rebase completes:
git push --force-with-lease origin react-19

Related Skills

  • pnpm-dependency-analysis - Analyze dependencies before/after rebase
  • dependabot-pr-handler - Handle automated dependency updates that may conflict during rebase

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

28.43%
按下载量换算66

Antigravity

23.82%
按下载量换算56

Claude Code

20.13%
按下载量换算47

Codex

12.72%
按下载量换算30

Gemini CLI

8.17%
按下载量换算19

windsurf

3.71%
按下载量换算9

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills