
Skill
magpie-setup-shared-config-sync
sync shared Claude configuration
Description
Commit + push the user's shared Claude config to the `~/.claude-config` private dotfile-style sync repo. Inspects for uncommitted local edits and unpushed commits, drafts a commit message, and after explicit approval commits and pushes. Runs `git pull --rebase` first if the local checkout is behind, so a push never overwrites concurrent work from another machine. Bootstraps the repo when it is missing: clones the default private remote if it exists, or creates a new private remote + scaffolds the minimal layout if it does not. Never force-pushes; never rewrites already-pushed history; never creates a public remote; never modifies files outside `~/.claude-config/` (except the confirmed fresh-host symlink wiring into `~/.claude/`).
SKILL.md
setup-shared-config-sync
This skill propagates local edits in ~/.claude-config/ to the
sync repo's remote, so other machines can pull them. It is the
counterpart to the periodic git pull --rebase --autostash that
the framework's example sync.sh runs on a timer — that direction
pulls upstream into the local clone; this skill pushes local
modifications upstream.
Adopter overrides
Before running the default behaviour documented
below, this skill consults
.apache-magpie-local/setup-shared-config-sync.md (personal, gitignored) and .apache-magpie-overrides/setup-shared-config-sync.md (committed, project-wide)
in the adopter repo if it exists, and applies any
agent-readable overrides it finds. See
docs/setup/agentic-overrides.md
for the contract — what overrides may contain, hard
rules, the reconciliation flow on framework upgrade,
upstreaming guidance.
Hard rule: agents NEVER modify the snapshot under
<adopter-repo>/.apache-magpie/. Local modifications
go in the override file. Framework changes go via PR
to apache/magpie.
Snapshot drift
Also at the top of every run, this skill compares the
gitignored .apache-magpie.local.lock (per-machine
fetch) against the committed .apache-magpie.lock
(the project pin). On mismatch the skill surfaces the
gap and proposes
/magpie-setup upgrade.
The proposal is non-blocking — the user may defer if
they want to run with the local snapshot for now. See
docs/setup/install-recipes.md § Subsequent runs and drift detection
for the full flow.
Drift severity:
- method or URL differ → ✗ full re-install needed.
- ref differs (project bumped tag, or
git-branchlocal is behind upstream tip) → ⚠ sync needed. svn-zipSHA-512 mismatches the committed anchor → ✗ security-flagged; investigate before upgrading.
Hardcoded path
The sync repo lives at ~/.claude-config/. This is the convention
documented in
docs/setup/secure-agent-setup.md → Syncing user-scope config across machines.
Adopters who maintain a sync repo at a different path will need to
fork this skill — the path is intentionally not parameterised
because the doc specifies one canonical location and forking the
skill is cleaner than per-invocation path-passing.
The default remote
When the skill has to bootstrap a missing ~/.claude-config/
(see Bootstrapping a missing ~/.claude-config/),
it resolves the remote it clones-or-creates in this order:
- An explicit URL the user passed this invocation (e.g.
"bootstrap from
git@gitlab.com:me/claude-config.git") — wins over everything. - The default GitHub convention —
git@github.com:<handle>/claude-config.git, the SSH form the doc's Setting up a fresh host snippet uses.<handle>comes fromgh api user --jq .login(requires an authenticatedgh). The repo name isclaude-config.
If neither resolves — gh is missing or unauthenticated and
the user gave no URL — ask the user for the remote URL rather than
guessing. Any remote the skill creates is private (see the
golden rules); never public.
Golden rules
- Never force-push. No
--force, no--force-with-lease, no--no-verify, no rewriting commits already pushed to the remote. The sync repo is the source of truth between machines; rewriting its history risks losing work made on another machine that has not yet been pulled here. - Never modify a file outside
~/.claude-config/. This skill is scoped strictly to that one directory. If the user's intended change is to a file in~/.claude/directly (not via a symlink into~/.claude-config/), surface that and stop — the user wants a different action, not this skill. The one carved-out exception is the fresh-host symlink wiring during bootstrap (ln -sfn ~/.claude-config/... ~/.claude/...), and only after the user confirms it — see Bootstrapping a missing~/.claude-config/. - Any remote the skill creates is private. When bootstrap has
to create a new remote (
gh repo create), it always passes--private— never public, never--internalwithout the user asking.~/.claude/CLAUDE.mdcarries personal collaboration preferences and the scripts may reference internal paths; a public config repo leaks both. This mirrors the doc's "a private git repository (private, not public …)" rule. - Confirm before creating or pushing to a new remote. Creating
a GitHub repo and pushing the first commit is an outward-facing,
hard-to-reverse action. Bootstrap surfaces the exact plan — repo
name,
--privatevisibility, remote URL, the files it will scaffold — and waits for explicit approval before runninggh repo create/ the initialgit push. Cloning an already-existing remote is lower-risk (a read that writes only into the new~/.claude-config/checkout) and may proceed without a separate confirmation, though the skill still reports what it cloned. - Never clobber a non-repo
~/.claude-config/. If the path exists but is not a git working tree, stop and surface it — do notrmit orgit initover it. Bootstrap only ever creates a~/.claude-config/that was entirely absent. - Pull-with-rebase first. If
git fetchshows the local checkout is behind the remote, rungit pull --rebase --autostashbefore the commit + push. Concurrent work from another machine takes precedence; the local commit lands on top. This matches what the examplesync.shdoes for the periodic pull. - Draft the commit message; never auto-send. For every
uncommitted modification, the skill drafts a one-line commit
subject (plus a 2–4 line body if the change merits it) and
shows it to the user for approval. The user replies with
"go" / "yes" / edits / "split into two commits" etc.
before any
git commitruns. - Use the
Generated-by:trailer per AGENTS.md. Commits authored by an agent on the user's behalf carryGenerated-by: Claude Code (Opus <version>)at the end of the body — neverCo-Authored-By:. See AGENTS.md → Commit and PR conventions for the canonical wording. - Stop on lock conflict. The example
sync.shusesflock --nonblockon~/.claude-config/.sync.lockso two concurrent sync runs do not race. If.sync.lockis held, do not steal the lock — surface the conflict and stop. The other process is likely the user's recurring sync timer.
Bootstrapping a missing ~/.claude-config/
Reached from Walk-through step 1 when the sync
repo is entirely absent. The goal is a working
~/.claude-config/ git checkout wired to a private remote; the
skill gets there by either cloning the default remote (if it
already exists) or creating it (if it does not). It never touches
anything outside the new checkout except the confirmed fresh-host
symlink wiring at the end.
Step B1 — resolve the remote
Resolve the default remote per
The default remote: an explicit URL the
user passed, else git@github.com:<handle>/claude-config.git with
<handle> from gh api user --jq .login. If neither resolves
(gh missing/unauthenticated and no URL given), ask the user
for the remote URL and stop until they provide one — do not guess
a handle.
Step B2 — does the remote exist?
- GitHub default:
gh repo view <handle>/claude-config— exit0⇒ exists, non-zero ⇒ does not exist (or no access; if the error is auth/permission rather than "not found", surface it and stop rather than assuming absence). - Explicit non-GitHub URL:
git ls-remote <url>— exit0⇒ exists, non-zero ⇒ does not exist / unreachable.
Step B3a — remote exists → clone
git clone <url> ~/.claude-config. This is the low-risk path
(a read that only writes the new checkout), so it may proceed
without a separate create-confirmation — report the clone result.
Then continue to Step B4 — fresh-host symlink wiring
and resume the sync walk-through from step 2 (typically
"in sync, nothing to do").
Step B3b — remote does not exist → create + scaffold + push
Creating an outward-facing remote is confirm-first (golden rule).
Surface the full plan and wait for explicit approval — the
repo name, --private visibility, the remote URL, and the files
to be scaffolded. On approval:
- Create the private remote.
- GitHub:
gh repo create <handle>/claude-config --private --description "Personal Claude Code shared config (synced across machines)"(no--clone, no auto-init — the local scaffold below becomes the first commit). - Non-GitHub explicit URL: the skill cannot create the remote; tell the user to create an empty private repo at that URL and re-invoke.
- GitHub:
- Init + scaffold the minimal layout under
~/.claude-config/, matching the doc's Layout and A minimalsync.sh:git init -b main ~/.claude-config ~/.claude-config/ ├── README.md # what's in the repo + per-machine install steps ├── sync.sh # the pull/commit/push helper (chmod +x) ├── scripts/ # (empty; hooks land here as the user adopts them) └── .gitignore # excludes .sync.lock and any *.credentials* / secretssync.shis the verbatim script from the doc's A minimalsync.shsection..gitignoremust at minimum carry.sync.lock(theflockfile) so the lock never gets committed. - Initial commit + push.
git addthe scaffolded files individually (nevergit add -A— golden rule), commit with theGenerated-by:trailer,git remote add origin <url>, thengit push -u origin main.
Step B4 — fresh-host symlink wiring
The new (or freshly cloned) checkout only protects this host once
its tracked artifacts are symlinked into ~/.claude/. This is the
one write outside ~/.claude-config/ the skill performs, and
only after the user confirms. Offer to run the
Setting up a fresh host
wiring (the ln -sfn ~/.claude-config/… ~/.claude/… block, which
mvs any pre-existing real file to .bak before symlinking). If
the user declines, point them at that doc section to do it
themselves. Only wire the artifacts the checkout actually
contains — on a brand-new scaffold there may be nothing under
scripts/ yet, so this step is often a no-op beyond CLAUDE.md.
Walk-through
cd ~/.claude-configand verify it is a git working tree pointing at a private remote.- If the directory does not exist at all, do not stop —
bootstrap it: jump to
Bootstrapping a missing
~/.claude-config/, then resume the sync walk-through from step 2. - If the directory exists but is not a git repo, surface
that and stop (per the golden rule — never clobber a non-repo
path). The user has a stray
~/.claude-config/; they resolve it, then re-invoke. - If it is a git repo, continue to step 2.
- If the directory does not exist at all, do not stop —
bootstrap it: jump to
Bootstrapping a missing
git fetch originto learn the remote's current state. Report:- commits behind upstream (will be pulled in step 4),
- commits ahead of upstream (already-committed local work that has not yet been pushed),
- uncommitted working-tree modifications (
git status --short), - untracked files the user may want to either add or
.gitignore.
- Decide the action. The four reachable states:
- In sync, nothing to do. No uncommitted changes, no unpushed commits, not behind. Report and stop.
- Push-only. Already-committed local work needs to land on the remote, but no behind / no uncommitted edits. Pull-with-rebase is unnecessary; go straight to push.
- Commit-then-push. Uncommitted edits exist. Walk each
modified file with the user (diff + draft commit message
- approval), commit each batch the user accepts, then push.
- Pull-then-commit-then-push. Uncommitted edits and
behind upstream. Run
git pull --rebase --autostashfirst; if rebase succeeds cleanly, proceed to the commit-then-push flow. If rebase conflicts, stop and surface — conflicts in~/.claude-config/are the user's to resolve, not the skill's.
- Pull-with-rebase (when applicable). Run
git pull --rebase --autostash. Report what changed (commits pulled, files touched). - Stage + commit (when applicable). For each modification
the user approves:
git add <file>for the specific file (nevergit add -Aorgit add .— the sync repo is the user's most personal directory andgit add -Arisks staging an editor swap file or a.DS_Storeyou forgot to gitignore),git commit -m '<subject>' -m '<body>'with the approved message. Always include theGenerated-by: Claude Code (Opus <version>)trailer in the body per AGENTS.md.
- Push.
git pushto the upstream branch. No--force. If push is rejected (non-fast-forward) it means another machine pushed concurrently after ourgit fetchin step 2; stop, surface, and recommend re-invoking the skill (which will repeat the fetch + pull-with-rebase). Do not retry in-flight.
After the push lands
Report:
- which commit SHA is now on the remote,
- a one-line summary of what was pushed (so the user can confirm in their terminal scrollback),
- whether other-machine pulls are needed (the timer-driven
sync.shon the user's other hosts will pick the change up on its own next run; the skill does not need to nag about this).
If the modifications touched a file under
~/.claude-config/scripts/ that is symlinked from
~/.claude/scripts/, also note that the change is immediately
live on this host — the symlink resolves to the just-modified
file. No re-cp needed.
More skills from the magpie repository
View all 71 skillsgenerate-cve-json
generate CVE JSON documents
Jul 12ComplianceSecurityTechnical Writingmagpie-audit-finding-fix
fix findings from code audit tools
Jul 12AuditCode AnalysisDebuggingmagpie-ci-runner-audit
audit GitHub Actions workflow runner compatibility
Jul 12AuditCI/CDGitHub Actionsmagpie-committer-onboarding
onboard Apache project committers
Jul 12ManagementOperationsProcess Documentationmagpie-contributor-activity-sweep
generate contributor activity reports
Jul 12AnalyticsGitHubReportingmagpie-contributor-nomination
generate contributor nomination briefs
Jul 12EngineeringGitHubReporting
More from Apache Software Foundation
View publisherdatafusion-python
write Apache DataFusion Python code
datafusion-python
Jul 12Data AnalysisPythonSQLpixiu-filter-author
create custom filters for Dubbo gateway
dubbo-go-pixiu
Jul 12API DevelopmentEngineeringGopixiu-http-to-dubbo
map REST endpoints to Dubbo services
dubbo-go-pixiu
Jul 12API DevelopmentGoREST APIpixiu-llm-gateway
configure Apache dubbo-go-pixiu as AI gateway
dubbo-go-pixiu
Jul 12API DevelopmentClaude APIGeminiLLM +1pixiu-mcp-integration
configure dubbo-go-pixiu as MCP gateway
dubbo-go-pixiu
Jul 12API DevelopmentAuthGoMCPbydbql
generate and execute BanyanDB BydbQL queries
skywalking-banyandb
Jul 12AnalyticsDatabaseSQL