Borrowing it
Nothing to install: this file belongs to martin-francois/symphony-trello. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/martin-francois/symphony-trello/main/.codex/skills/repo-sync/SKILL.mdgit clone --depth 1 https://github.com/martin-francois/symphony-trelloWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/martin-francois/symphony-trello/repo-sync)<a href="https://agentmods.dev/skills/martin-francois/symphony-trello/repo-sync"><img src="https://agentmods.dev/badge/skills/martin-francois/symphony-trello/repo-sync/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/martin-francois/symphony-trello/repo-sync"><img src="https://agentmods.dev/badge/skills/martin-francois/symphony-trello/repo-sync.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00041 | $0.00514 |
| Opus 5 | $0.00020 | $0.00257 |
| Sonnet 5 | $0.00008 | $0.00103 |
| Haiku 4.5 | $0.00004 | $0.00051 |
Grade A, and why
repo-sync scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Repo Sync
Goals
- Keep the feature branch current with
origin/mainthrough rebasing. - Preserve the branch's intent and the user's changes.
- Resolve conflicts by understanding both sides before editing.
- Rerun the relevant checks after conflict resolution.
- Never introduce a merge commit when synchronizing a feature branch.
Steps
-
Confirm the current branch and working tree with
git status --short --branch. -
If there are uncommitted changes, commit them with the
commitskill or stop and ask how to handle them. -
Enable recorded conflict reuse locally:
git config rerere.enabled true git config rerere.autoupdate true -
Fetch and fast-forward the current branch if the remote branch advanced:
branch="$(git branch --show-current)" git fetch origin git pull --ff-only origin "$branch" -
Rebase onto latest main with conflict context:
git -c merge.conflictstyle=zdiff3 rebase origin/main -
If conflicts occur:
- Use
git status,git diff --merge, and nearby code/tests/docs to understand both sides. - Resolve the intended behavior first, then edit.
- Do not choose
oursortheirsfor a whole file unless that is clearly correct. - Stage each resolution and continue with
GIT_EDITOR=true git rebase --continue. - Run
git diff --checkafter the rebase completes.
- Use
-
Run the relevant checks from
AGENTS.md. -
Verify
git rev-list --merges origin/main..HEADis empty. -
Push the rewritten branch with
git push --force-with-lease, using the previously fetched remote branch as the lease protection. -
Summarize conflict files, decisions, and validation in the branch notes or handoff comment.
Stop Conditions
- The conflict depends on product intent that is not inferable from the repo, issue, or current user instructions.
- The rebase would drop user changes or alter an external contract without clear confirmation.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 66 lines · 41 tokens per session scan A c8f3c94de45a
repo-sync is a skill published in the GitHub repository martin-francois/symphony-trello (2 stars, last pushed yesterday), licensed Apache-2.0. It adds 41 tokens to every session and 514 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
git-integration
Git commit patterns, formats, and conventions for GSD methodology. Provides atomic commits per task, structured commit messages, planning file commits, branch management, and milestone tag operations.
audit-trail
Full traceability from PRD to code commit through the CCPM spec-driven pipeline.
strict-tdd
Strict RED->GREEN->REFACTOR test-driven development with enforcement. Never write production code before a failing test. Atomic commits per TDD cycle.
github-sync
Bidirectional synchronization of epics and tasks with GitHub issues, labels, and relationships.
checkpoint-management
Git-backed state management for safe rollback. Create and restore checkpoints with tagged commits and metadata tracking.
issue-tracking
Track beads as git-backed issues with persistent attribution, supporting Gas Town's bead lifecycle and convoy progress monitoring.