symphony-trello: Skill for Codex

.codex/skills/repo-sync/SKILL.md

repo-sync is a skill for Codex from martin-francois/symphony-trello. It costs 41 tokens per session (514 once invoked), scanned A, original, Apache-2.0.

Instructions for updating a feature branch with the latest default branch and resolving conflicts. A feature branch is a separate line of code changes; conflicts happen when both branches changed the same code.

In plain words
What is it for?
Use them when a branch is stale, a push is rejected, CI needs newer main-branch changes, or a rebase produces conflicts.
Why use it?
They help keep a branch current, preserve its intended changes, and avoid accidental merge commits while resolving conflicts.

Skill for Codex

Written for Codex: installed under .codex/. Also seen: mentions AGENTS.md.

This is martin-francois/symphony-trello's own configuration. It tells Codex how to work on symphony-trello itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything symphony-trello configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/martin-francois/symphony-trello/main/.codex/skills/repo-sync/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/martin-francois/symphony-trello

Made for: Codex.

Wrote 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.

agentmods badge for repo-sync

README.md
[![agentmods](https://agentmods.dev/badge/skills/martin-francois/symphony-trello/repo-sync/github.svg)](https://agentmods.dev/skills/martin-francois/symphony-trello/repo-sync)
Your own site
<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.

agentmods 80×15 button for repo-sync

Your own site · 80×15
<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>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 514 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 11d ago against content hash c8f3c94de45a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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.

.codex/skills/repo-sync/SKILL.md · 66 lines

What it actually says

Repo Sync

Goals

  • Keep the feature branch current with origin/main through 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

  1. Confirm the current branch and working tree with git status --short --branch.

  2. If there are uncommitted changes, commit them with the commit skill or stop and ask how to handle them.

  3. Enable recorded conflict reuse locally:

    git config rerere.enabled true
    git config rerere.autoupdate true
    
  4. 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"
    
  5. Rebase onto latest main with conflict context:

    git -c merge.conflictstyle=zdiff3 rebase origin/main
    
  6. 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 ours or theirs for a whole file unless that is clearly correct.
    • Stage each resolution and continue with GIT_EDITOR=true git rebase --continue.
    • Run git diff --check after the rebase completes.
  7. Run the relevant checks from AGENTS.md.

  8. Verify git rev-list --merges origin/main..HEAD is empty.

  9. Push the rewritten branch with git push --force-with-lease, using the previously fetched remote branch as the lease protection.

  10. 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.
Changes

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.

  1. 11d ago First seen · 66 lines · 41 tokens per session scan A c8f3c94de45a

Subscribe to this mod's changes

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.