upgrade-executor

upgrade-executor is an agent for coding agents from ihudak/ihudak-claude-plugins. It costs 92 tokens per session (1,390 once invoked), scanned A, original, MIT.

An agent that applies a planned software dependency upgrade for one component. It builds the result, checks tests against the previous baseline, and fixes test code broken by changed programming interfaces.

In plain words
What is it for?
Executing upgrade plans, running ecosystem-specific build steps, verifying tests, and resuming verification or regression work when an earlier phase already finished.
Why use it?
It carries out the upgrade while checking for regressions, so version changes are not treated as complete merely because the dependency installation succeeded.

Agent

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the dev-workflows plugin — 16 commands, 39 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/ihudak/ihudak-claude-plugins/upgrade-executor
Clone the repo
git clone --depth 1 https://github.com/ihudak/ihudak-claude-plugins

Or install dev-workflows, the plugin that ships this one along with the rest of its 16 commands, 39 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 upgrade-executor

README.md
[![agentmods](https://agentmods.dev/badge/agents/ihudak/ihudak-claude-plugins/upgrade-executor.svg)](https://agentmods.dev/agents/ihudak/ihudak-claude-plugins/upgrade-executor)
Your own site
<a href="https://agentmods.dev/agents/ihudak/ihudak-claude-plugins/upgrade-executor"><img src="https://agentmods.dev/badge/agents/ihudak/ihudak-claude-plugins/upgrade-executor.svg" alt="Measured on agentmods" height="20"></a>
Per session 92 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,390 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.00092 $0.01390
Opus 5 $0.00046 $0.00695
Sonnet 5 $0.00018 $0.00278
Haiku 4.5 $0.00009 $0.00139

Measured 4d ago against content hash 711a033dc28b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

upgrade-executor 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 4d 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.

plugins/dev-workflows/agents/upgrade-executor.md · 99 lines

How it starts

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

upgrade-executor — Upgrade Execution Agent

Read ${CLAUDE_PLUGIN_ROOT}/references/handoff/upgrade-executor.md for the exact input/output document format. Read ${CLAUDE_PLUGIN_ROOT}/references/upgrade/ecosystems.md for per-ecosystem update commands. Read ${CLAUDE_PLUGIN_ROOT}/references/handoff/test-baseliner.md for the test-baseliner handoff format.

Process

Receive one upgrade plan with status: READY. The plan may be provided inline or as an absolute file path — Read the file first when given a path.

On a read failure, follow the read-failure contract in ${CLAUDE_PLUGIN_ROOT}/references/context-management.md — the upgrade plan is an evidence input: hard stop, return status: BLOCKED naming the unreadable path, and never re-plan the upgrade to reconstruct it.

Phase resume. If the input includes phase: verify-resume, skip steps 1 and 2 — the changes are already applied and built from the prior invocation. Resume at step 3 (Verify). Treat any baseline in the input as authoritative; do not re-baseline. Default phase (omitted or phase: full) runs all steps.

If the input includes phase: regression-resume, skip steps 1-3 — jump straight to "Test regression" step 4 below, honoring the regression_decision: keep-anyway | revert supplied by the orchestrator.

  1. Apply changes — Update every file listed in the plan's files array. For each related upgrade in related, apply those version changes too. Use ecosystem-appropriate commands (see ${CLAUDE_PLUGIN_ROOT}/references/upgrade/ecosystems.md).

  2. Build — Run the project build (compile only). On failure see "Build failure" below.

  3. Verify — Invoke test-baseliner in verify mode, passing the baseline from the input handoff.

    • status: OK → all green, proceed to step 4.
    • status: REGRESSIONS → follow "Test regression" below.
    • status: RUN_FAILED → revert all changes, set status: BUILD_FAILED.
  4. Output — Produce the summary record (see ${CLAUDE_PLUGIN_ROOT}/references/handoff/upgrade-executor.md).

Read the full file on GitHub · 99 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. 4d ago First seen · 99 lines · 92 tokens per session scan A 711a033dc28b

Subscribe to this mod's changes

upgrade-executor is an agent published in the GitHub repository ihudak/ihudak-claude-plugins (2 stars, last pushed 4d ago), licensed MIT. It adds 92 tokens to every session and 1,390 once invoked, about $0.0005 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.

Related

Other agents, from other repositories

code-reviewer

Reviews all changed files in a change set in an isolated context and returns structured findings as JSON. Spawned by the /review-gate:review orchestrator. Not for general questions.

Jose-Ribeir/claude-code-review-gate · 41 tokens

code-filter

Independent falsify pass for review-gate findings. Receives unified diffs + a findings list and returns the IDs of findings to drop. Spawned by the /review-gate:review orchestrator after the code-reviewer. Not for general questions.

Jose-Ribeir/claude-code-review-gate · 54 tokens

code-reviewer

Review code changes against a base branch with structured feedback. Use this agent when the user requests a code review, PR review, or wants to analyze code changes systematically.

NikiforovAll/claude-code-rules · 37 tokens

discovery-threat-reviewer

Discovery-time threat-modeling + regulated-domain compliance ONLY — a forked-context, read-only reviewer for discovery artifacts (the intent tree, domain framing, journey map, service blueprint, screen flows, architecture, decision brief). Required at the discovery loop's G2 reconcile. A DISTINCT agent from…

eugenelim/agent-ready-repo · 142 tokens

bash-pro

Production-quality bash scripting with shellcheck compliance, robust error handling, and beautiful terminal UX. Use for shell scripts, CLI tools, and automation.

sgaunet/claude-plugins · 32 tokens

Music Producer

AI-powered music production specialist for premium soundscapes and commercial tracks.

frankxai/agentic-creator-os · 16 tokens