Borrowing it
Nothing to install: this file belongs to anantjain-xyz/symphony-rust. 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/anantjain-xyz/symphony-rust/main/.agents/skills/symphony-land/SKILL.mdgit clone --depth 1 https://github.com/anantjain-xyz/symphony-rustWrote 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/anantjain-xyz/symphony-rust/symphony-land)<a href="https://agentmods.dev/skills/anantjain-xyz/symphony-rust/symphony-land"><img src="https://agentmods.dev/badge/skills/anantjain-xyz/symphony-rust/symphony-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.
<a href="https://agentmods.dev/skills/anantjain-xyz/symphony-rust/symphony-land"><img src="https://agentmods.dev/badge/skills/anantjain-xyz/symphony-rust/symphony-land.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.00040 | $0.01132 |
| Opus 5 | $0.00020 | $0.00566 |
| Sonnet 5 | $0.00008 | $0.00226 |
| Haiku 4.5 | $0.00004 | $0.00113 |
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 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- symphony-land — 100% identical, 0 lines differ
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 statussucceeds, and plaingit pushhas credentials for the repo host. If relying on GitHub CLI for HTTPS git credentials, rungh auth setup-gitfirst (gh auth setup-git --hostname <host>for a non-default host).GITHUB_TOKEN/GH_TOKENalone can authenticategh pr ...commands but is not enough for thesymphony-pushstep'sgit push -u origin HEAD.- A PR is attached to the issue and is
OPEN(notCLOSED/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
- Inspect the PR:
Required:gh pr view --json number,state,mergeable,mergeStateStatus,reviewDecision,statusCheckRollupstate=OPEN,reviewDecision=APPROVED(or no required reviewers). - Sync first — run the
symphony-pullskill to mergeorigin/main. Conflicts must be resolved in code; never leave aDIRTY/CONFLICTINGPR. Re-run validation after the merge. - Push the merge result with the
symphony-pushskill. - 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. Pollgh pr checksexplicitly 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 checksexits 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 toRework. - Squash-merge:
gh pr merge --squashgh pr mergereturning 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 beOPENwhile the queue runs. Verify in step 6 before continuing. - Wait for the PR to reach terminal
MERGEDstate — every 15s, up to 30 minutes:
Afor _ 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; }CLOSED(withoutMERGED) state or a timeout falls into the failure-mode handler below. - Capture the merge commit (only after
state=MERGED):gh pr view --json mergeCommit -q .mergeCommit.oid - The remote head branch usually auto-deletes. If not, leave it — don't delete in scripts.
- Record the merge SHA in the workpad's
### Notesand move the issue toDone.
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 · 79 lines · 40 tokens per session scan A 2188805b4fff
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. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
agent-release-swarm
Agent skill for release-swarm - invoke with $agent-release-swarm.
release-announcement
Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.
multi-agent-release-manager
Cleans up the workspace, formats code, runs presubmit checks, and uploads CLs to Gerrit.
release-notes
Generate user-facing release notes from tickets, PRDs, or changelogs. Creates clear, engaging summaries organized by category (new features, improvements, fixes). Use when writing release notes, creating changelogs, announcing product updates, or summarizing what shipped.
pack-submit
Package one of this agent's own skills as a standalone community pack and submit it to the aeon registry as a PR.
updater_guide
Guidance for checking for and installing Row-Bot updates.