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.
npx skills add anantjain-xyz/symphony-rust --skill landgit 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/land)<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.
<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>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 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.
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.
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.
- 10d 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. It is 100% identical to symphony-land, differing in 0 lines, and is treated as a copy.
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.
gh-auth-isolation
Safely manage multiple GitHub identities (EMU + personal) in agent workflows.
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.
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.
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…
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.