empower-sync
4
总安装量
1
周安装量
#53134
全站排名
安装命令
npx skills add https://github.com/tmeister/skills --skill empower-sync
Agent 安装分布
amp
1
opencode
1
kimi-cli
1
codex
1
claude-code
1
Skill 文档
Empower Sync
Use this skill to cherry-pick a single commit from the gemini remote into sync-upstream for the empower-site project.
Inputs
- Require a commit SHA. If missing, ask for it.
- Remote is
gemini.
Safety Rules
- Stop if the working tree is dirty.
- Ask before resetting or recreating
sync-upstream. - Do not cherry-pick until the user approves after reviewing the diff.
Workflow
-
Preflight
git status --porcelain- If not clean, stop and ask to commit or stash.
-
Fetch remote
git fetch gemini
-
Prepare sync-upstream
- Confirm before resetting
sync-upstreamto the default branch. git checkout <default-branch>git pull origin <default-branch>git branch -f sync-upstream <default-branch>git checkout sync-upstream
- Confirm before resetting
-
Dry-run review
git show <sha> --statgit show <sha> -p- Summarize files and risks.
- Ask for approval to apply.
-
Apply
git cherry-pick <sha>
-
Conflict handling
- If conflicts, list them and ask how to resolve.
- Use
git cherry-pick --continueafter resolution.
-
Report
- Show recent log and
git status. - Confirm the branch is ready for review/testing.
- Show recent log and