ecosystem-specialist

ecosystem-specialist is an agent for coding agents from melodic-software/claude-code-plugins. It costs 56 tokens per session (1,456 once invoked), scanned A, original, MIT.

A build, test, and lint assistant that detects which programming ecosystems a change affects and selects the relevant checks.

In plain words
What is it for?
Use it after edits, or when you need to build, test, lint, or check changes across multiple programming languages and platforms.
Why use it?
It avoids running unrelated commands and reduces the chance of missing a required verification step after code changes.

Agent

Part of the review plugin — 3 skills, 6 agents shipped together

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.

agentmods
npx agentmods add agents/melodic-software/claude-code-plugins/ecosystem-specialist
Clone the repo
git clone --depth 1 https://github.com/melodic-software/claude-code-plugins

Or install review, the plugin that ships this one along with the rest of its 3 skills, 6 agents.

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 ecosystem-specialist

README.md
[![agentmods](https://agentmods.dev/badge/agents/melodic-software/claude-code-plugins/ecosystem-specialist.svg)](https://agentmods.dev/agents/melodic-software/claude-code-plugins/ecosystem-specialist)
Your own site
<a href="https://agentmods.dev/agents/melodic-software/claude-code-plugins/ecosystem-specialist"><img src="https://agentmods.dev/badge/agents/melodic-software/claude-code-plugins/ecosystem-specialist.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,456 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00056 $0.01456
Opus 5 $0.00028 $0.00728
Sonnet 5 $0.00011 $0.00291
Haiku 4.5 $0.00006 $0.00146

Measured yesterday against content hash 6166467c1a82, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ecosystem-specialist 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 yesterday.

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.

plugins/review/agents/ecosystem-specialist.md · 57 lines

How it starts

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

You are an ecosystem-aware build/test/lint specialist. Your job is to detect which ecosystems are affected by file changes and run the correct verification commands for each.

Before running

  1. Identify the change setgit status --porcelain plus PR_BASE="$(gh pr list --head "$(git branch --show-current)" --json baseRefName -q '.[0].baseRefName' 2>/dev/null)"; BASE=""; [ -n "$PR_BASE" ] && git fetch origin "$PR_BASE" 2>/dev/null && BASE="$(git rev-parse FETCH_HEAD 2>/dev/null)"; git diff --stat "$(git merge-base "${BASE:-origin/${PR_BASE:-HEAD}}" HEAD 2>/dev/null || { D="$(git ls-remote --symref --end-of-options origin HEAD 2>/dev/null | awk '/^ref:/{sub(/refs\/heads\//,"",$2); print $2; exit}')"; [ -n "$D" ] && git fetch origin "$D" 2>/dev/null && git merge-base FETCH_HEAD HEAD 2>/dev/null; } || git merge-base origin/main HEAD 2>/dev/null || echo HEAD)" — the PR's real base wins when one exists (fetched first; shallow clones may lack it).
  2. Detect affected ecosystems from changed file paths (e.g. .cs/.csproj → .NET, .py/pyproject.toml → Python, .ts/.js/package.json → JS/TS, .sh → shell, .ps1 → PowerShell, .go → Go, .rs → Rust). Then, for each ecosystem that has a consumer .claude/ecosystems/<ecosystem>.yaml, resolve its globs and enabled through the overlay chain (user-global → team → .local., key-by-key) and use the resolved globs to re-classify the changed files — authoritative over these built-in heuristics — dropping any ecosystem whose resolved enabled is false (a deliberately disabled toolchain), even when its globs match.
  3. Resolve each detected ecosystem's command truth — build/test/check commands come from the first source that exists, per "Command-truth resolution" below. Never fall through to the generic defaults when the repo declares its own.

Command-truth resolution

Resolve each ecosystem's build / test / check command from the first source that exists, in order:

  1. .claude/ecosystems/<ecosystem>.yaml in the consumer repo, when present — authoritative. One file per ecosystem (filename stem = ecosystem identifier) declares that repo's canonical build-cmd / test-cmd / check-cmd, the classifying globs, and the install-hint. Resolution is per command key: a present non-null command is authoritative — use it verbatim, first binding the contract placeholders (<files>, <solution-or-project-file>, <project-dir>, $REPO_ROOT) to this run's values (a command like shellcheck -x <files> must have <files> expanded, never handed to the shell literally). A key set to null means that phase does not apply — skip it, no fall-through. An omitted key is simply undeclared here — fall through to rung 2, then rung 3, for that one command. Layer a ~/.claude/ecosystems/<ecosystem>.yaml user-global base and a .local. overlay key-by-key when they exist. Governing contract and schema: docs/conventions/ecosystem-commands/README.md.
  2. Otherwise, the consuming project's documented conventions. Read CLAUDE.md, project rules, contributing docs, package.json scripts, Makefile/justfile targets, and CI workflow files — projects often encode their canonical build/test/lint commands, with flags and gotchas. Use those verbatim.
  3. When neither exists, the generic ecosystem defaults in "Verification workflow" below — a last-resort fallback, never a peer source of truth.

Read the full file on GitHub · 57 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. yesterday First seen · 57 lines · 56 tokens per session scan A 6166467c1a82

Subscribe to this mod's changes

ecosystem-specialist is an agent published in the GitHub repository melodic-software/claude-code-plugins (14 stars, last pushed yesterday), licensed MIT. It adds 56 tokens to every session and 1,456 once invoked, about $0.0003 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-09-03.

Related

Other agents, from other repositories

parallel-integrate

Integrate parallel workflow branches. Use after all workers complete to merge branches, resolve conflicts, finalize integration. Triggers: integrate, merge workers, combine branches, finish parallel.

jimmc414/claude-code-plugin-marketplace · 39 tokens

code-reviewer

Use this agent to review changed files for bugs, security issues, performance problems, and code quality. Use when reviewing PRs, checking code before committing, or auditing code quality. Examples: User: "Review the changes I made" Assistant: "I'll launch the code-reviewer agent to analyze your changes." User: "Is…

Sagargupta16/claude-skills · 96 tokens

context-advisor

Use this agent to assess context window health and recommend compaction or session management strategies. Examples: User: "My session feels slow and repetitive" Assistant: "I'll use the context-advisor agent to assess context health." User: "Should I compact or start fresh?" Assistant: "Let me launch the…

Sagargupta16/claude-skills · 76 tokens

repo-auditor

Use this agent to audit a repository for hygiene issues -- missing README, LICENSE, .gitignore, .env.example, stale branches, and configuration problems. Examples: User: "Audit this repo for issues" Assistant: "I'll launch the repo-auditor agent to check repository health." User: "Is this repo properly set up?"…

Sagargupta16/claude-skills · 94 tokens

dockerfile-optimizer

Use this agent to analyze and optimize Dockerfiles for smaller images, faster builds, and better security. Checks layer caching, multi-stage builds, and security hardening. Examples: User: "Optimize my Docker image, it's 2GB" Assistant: "I'll launch the dockerfile-optimizer agent to analyze and slim down the image."…

Sagargupta16/claude-skills · 103 tokens

rust-coding-author

Author or refactor Rust functions in the agentenv-core / agentenv-cli crates with TDD, idiomatic error handling, and the project's source-driven pipeline conventions. Use when the user asks to add, rewrite, or extend a function in crates/agentenv-core/ or crates/agentenv-cli/ — especially new readers, writers…

eduardoarantes/agentenv · 87 tokens