Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

fix-sync修复同步

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

47,117

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/clickhouse/clickhouse --skill fix-sync

简介

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

  • 适用于需要根据关键词或任务场景从来源线索中获取信息的场景。
  • 通过 npx skills add 命令安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • fix-sync 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Fix CH Inc Sync Skill

Fix the "CH Inc sync" CI job for a ClickHouse pull request by resolving merge conflicts in the corresponding clickhouse-private sync PR.

Arguments

  • $0 (required): PR number or full GitHub URL of the public ClickHouse PR (e.g., 96005 or https://github.com/ClickHouse/ClickHouse/pull/96005)

Overview

When a PR is opened in ClickHouse/ClickHouse, a sync PR is automatically created in ClickHouse/clickhouse-private on a branch named sync-upstream/pr/<PR_NUMBER>. If this sync PR has merge conflicts, the "CH Inc sync" check stays pending. This skill resolves those conflicts.

Process

1. Parse the PR number

  • Extract the PR number from $ARGUMENTS
  • If a full URL is provided (e.g., https://github.com/ClickHouse/ClickHouse/pull/96005), extract the number from the URL
  • If no argument is provided, use AskUserQuestion to ask for the PR number

2. Find the sync PR

  • Search for the corresponding sync PR in the private repository: gh pr list --repo ClickHouse/clickhouse-private --head sync-upstream/pr/<PR_NUMBER> --json number,url,state,mergeable,mergeStateStatus,headRefName
  • If no sync PR is found, report this to the user and stop
  • If the sync PR is not conflicting (mergeable is not CONFLICTING), report that no action is needed and stop
  • Report the sync PR number and URL to the user

3. Locate the private repository

  • Look for the clickhouse-private repository in common locations relative to the current working directory:

- ../ClickHouse_private - ../clickhouse-private - Check if the directory exists and contains a git repository with ClickHouse/clickhouse-private as a remote

  • If not found, use AskUserQuestion to ask the user for the path
  • Store the path for use in subsequent steps

4. Fetch and switch to the sync branch

In the private repository directory:

cd <private_repo_path> && git fetch origin && git fetch origin sync-upstream/pr/<PR_NUMBER>

Then check out the sync branch:

cd <private_repo_path> && git checkout sync-upstream/pr/<PR_NUMBER>

If the branch has local changes, ask the user before proceeding.

5. Merge master and resolve conflicts

cd <private_repo_path> && git merge origin/master

This will likely produce conflicts. Handle them:

  1. List conflicted files: cd <private_repo_path> && git diff --name-only --diff-filter=U
  2. For each conflicted file, use a Task agent with subagent_type=general-purpose to resolve: IMPORTANT: If conflicts are complex or ambiguous, show the conflicts to the user and ask how to resolve them using AskUserQuestion.

- Read the conflicted file content - Analyze the conflict markers (<<<<<<<, =======, >>>>>>>) - Determine the correct resolution: - For most sync conflicts, the upstream (public repo) changes should take precedence - For files that exist only in the private repo, preserve them - For CI/workflow files, be careful to preserve private-repo-specific configurations - Apply the resolution using Edit tool - Stage the resolved file: git add <file>

  1. After resolving all conflicts, complete the merge: cd <private_repo_path> && git commit --no-edit

6. Update submodules (if needed)

cd <private_repo_path> && git submodule update --init --recursive

If submodule update fails, report the error but continue.

7. Build verification (optional)

Use AskUserQuestion to ask the user:

  • "Do you want to build ClickHouse in the private repository to verify the merge?"

- Option 1: "Yes, build" - Run ninja in the private repo build directory - Option 2: "No, skip build" - Skip building and proceed to push

If the user chooses to build, use the build skill or run ninja directly.

8. Push the resolved branch

cd <private_repo_path> && git push origin sync-upstream/pr/<PR_NUMBER>

9. Verify the sync PR

After pushing:

gh pr view <SYNC_PR_NUMBER> --repo ClickHouse/clickhouse-private --json mergeable,mergeStateStatus

Report the result:

  • If mergeable is MERGEABLE: "Sync PR is now mergeable. The CH Inc sync check should pass shortly."
  • If still conflicting: "Sync PR still has conflicts. Additional investigation may be needed."

Provide the sync PR URL for the user to check.

Examples

  • /fix-sync 96005 - Fix sync for PR #96005
  • /fix-sync https://github.com/ClickHouse/ClickHouse/pull/96005 - Fix sync using full URL

Notes

  • The sync branch name follows the pattern: sync-upstream/pr/<PR_NUMBER>
  • The private repository is typically located one directory level up from the public repository
  • Most conflicts are straightforward and involve the upstream changes taking precedence
  • Always fetch before switching branches to ensure you have the latest state
  • Do not use rebase or amend - add new commits instead (per project conventions)
  • After pushing, it may take a few minutes for the GitHub check to update

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.7%
按下载量换算24

Claude

29.05%
按下载量换算19

Cursor

20.69%
按下载量换算14

Gemini CLI

9.33%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills