symphony-land

symphony-land is a skill for Claude Code, Codex from anantjain-xyz/symphony-rust. It costs 40 tokens per session (1,132 once invoked), scanned A, a copy of symphony-land, MIT.

A pull-request merging procedure for an issue that has approval and passing automated checks. A pull request is a proposed code change, and a squash merge combines its commits into one commit on the main branch.

In plain words
What is it for?
Use it to inspect approval and check status, sync with the main branch, resolve conflicts, push, wait for checks, and squash-merge the pull request.
Why use it?
It ensures the change is reviewed, up to date with the main branch, conflict-free, validated, and ready to land.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to inspect approval and check status, sync with the main branch, resolve conflicts, push, wait for checks, and squash-merge the pull request.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anantjain-xyz/symphony-rust/land
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add anantjain-xyz/symphony-rust --skill land
Clone the repo
git clone --depth 1 https://github.com/anantjain-xyz/symphony-rust

Made for: Claude Code, 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 symphony-land

README.md
[![agentmods](https://agentmods.dev/badge/skills/anantjain-xyz/symphony-rust/land/github.svg)](https://agentmods.dev/skills/anantjain-xyz/symphony-rust/land)
Your own site
<a href="https://agentmods.dev/skills/anantjain-xyz/symphony-rust/land"><img src="https://agentmods.dev/badge/skills/anantjain-xyz/symphony-rust/land/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 symphony-land

Your own site · 80×15
<a href="https://agentmods.dev/skills/anantjain-xyz/symphony-rust/land"><img src="https://agentmods.dev/badge/skills/anantjain-xyz/symphony-rust/land.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,132 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 100% copy Near-identical to another mod 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.00040 $0.01132
Opus 5 $0.00020 $0.00566
Sonnet 5 $0.00008 $0.00226
Haiku 4.5 $0.00004 $0.00113

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

Security

Grade A, and why

symphony-land 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 10d 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.

Origin

This is a copy

100% identical to symphony-land — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

src-tauri/assets/skills/land/SKILL.md · 79 lines

How it starts

The opening of the file, as written. The whole thing — 79 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Land

Preconditions

  • Issue state is Merging.
  • gh auth status succeeds, and plain git push has credentials for the repo host. If relying on GitHub CLI for HTTPS git credentials, run gh auth setup-git first (gh auth setup-git --hostname <host> for a non-default host). GITHUB_TOKEN/GH_TOKEN alone can authenticate gh pr ... commands but is not enough for the symphony-push step's git push -u origin HEAD.
  • A PR is attached to the issue and is OPEN (not CLOSED/MERGED).

If the PR is already MERGED when entering this skill, skip the merge: record the merge SHA in the workpad and move the issue to Done.

Steps

  1. Inspect the PR:
    gh pr view --json number,state,mergeable,mergeStateStatus,reviewDecision,statusCheckRollup
    
    Required: state=OPEN, reviewDecision=APPROVED (or no required reviewers).
  2. Sync first — run the symphony-pull skill to merge origin/main. Conflicts must be resolved in code; never leave a DIRTY/CONFLICTING PR. Re-run validation after the merge.
  3. Push the merge result with the symphony-push skill.
  4. Wait for CI to be green. Don't rely on gh pr merge --auto — it only blocks on checks that branch protection marks as required, and many repos either configure no required checks or only a subset. Poll gh pr checks explicitly so the gate works the same whether the repo enforces checks at the GitHub level or not — every 30s, up to 30 minutes, before merging:
    for _ in $(seq 1 60); do
      gh pr checks
      rc=$?
      case "$rc" in
        0) break ;;       # all checks passed
        8) sleep 30 ;;    # checks still pending — keep waiting
        *) echo "PR checks failed (exit $rc)" >&2; exit 1 ;;
      esac
    done
    [ "$rc" -eq 0 ] || { echo "Timed out waiting for checks" >&2; exit 1; }
    
    gh pr checks exits 0 only when every check passed; 8 while any are pending; non-zero/non-8 if any failed. A failure or timeout falls into the failure-mode handler below: record the cause and move the issue to Rework.
  5. Squash-merge:
    gh pr merge --squash
    
    gh pr merge returning success does not guarantee the PR is merged — if the repo has a merge queue (or any auto-merge path kicks in), the command can return after enqueueing and the PR will still be OPEN while the queue runs. Verify in step 6 before continuing.
  6. Wait for the PR to reach terminal MERGED state — every 15s, up to 30 minutes:
    for _ in $(seq 1 120); do
      state=$(gh pr view --json state -q .state)
      case "$state" in
        MERGED) break ;;
        OPEN)   sleep 15 ;;
        *)      echo "PR ended in unexpected state: $state" >&2; exit 1 ;;
      esac
    done
    [ "$state" = "MERGED" ] || { echo "Timed out waiting for MERGED" >&2; exit 1; }
    
    A CLOSED (without MERGED) state or a timeout falls into the failure-mode handler below.
  7. Capture the merge commit (only after state=MERGED):
    gh pr view --json mergeCommit -q .mergeCommit.oid
    
  8. The remote head branch usually auto-deletes. If not, leave it — don't delete in scripts.
  9. Record the merge SHA in the workpad's ### Notes and move the issue to Done.

Read the full file on GitHub · 79 lines

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. 10d ago First seen · 79 lines · 40 tokens per session scan A 2188805b4fff

Subscribe to this mod's changes

symphony-land is a skill published in the GitHub repository anantjain-xyz/symphony-rust (11 stars, last pushed 28d ago), licensed MIT. It adds 40 tokens to every session and 1,132 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to symphony-land, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

prowler-commit

Creates professional git commits following conventional-commits format. Trigger: When creating commits, after completing code changes, when user asks to commit.

prowler-cloud/prowler · 33 tokens

gh-auth-isolation

Safely manage multiple GitHub identities (EMU + personal) in agent workflows.

github/gh-aw · 20 tokens

comet-github

A routing guide for Comet-related GitHub work. It directs requests about pull requests, issues, CI failures, ideas, and fixes to the appropriate review or implementation process.

rpamis/comet · 72 tokens

github-skill

Work with GitHub via the gh CLI — clone repositories, create/list/merge pull requests, create/list issues, and run any other gh command (API calls, workflow runs, releases, repo administration). List operations return parsed JSON.

zeenie-ai/OpenCompany · 51 tokens

re0-merge

Review and land an external contribution the way this suite does: gate it against the thesis, land it with the author's credit intact, complete a new skill rather than merging it raw, then approve, credit, and explain before closing. Use when reviewing a pull request, as any collaborator or maintainer, not only the…

LilMGenius/paperthin · 70 tokens

nvca-chart-release

Release NVCA Operator chart changes from the native monorepo source to the vendored Helm chart. Use when updating the vendored NVCA Operator chart, changing NVCA image refs, publishing helm-nvca-operator, or validating the chart against a self-managed control plane.

NVIDIA/nvcf · 61 tokens