fix-plan

fix-plan is a skill for Claude Code from DevInder1/supply-chain-scanner-public. It costs 85 tokens per session (602 once invoked), scanned A, original, MIT.

A workflow for turning scan results into a prioritised package-upgrade plan.

In plain words
What is it for?
It creates upgrade commands for npm, Python, and Homebrew packages, labels patch, minor, and major changes, and records CVE and exploit-status details.
Why use it?
It shows which vulnerable components to fix first and describes the version-change risk of each upgrade.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the tridentchain-security plugin — 7 skills shipped together

Good fit It creates upgrade commands for npm, Python, and Homebrew packages, labels patch…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/devinder1/supply-chain-scanner-public/fix-plan
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 DevInder1/supply-chain-scanner-public --skill fix-plan
Clone the repo
git clone --depth 1 https://github.com/DevInder1/supply-chain-scanner-public

Made for: Claude Code.

Or install tridentchain-security, the plugin that ships this one along with the rest of its 7 skills.

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 fix-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/devinder1/supply-chain-scanner-public/fix-plan.svg)](https://agentmods.dev/skills/devinder1/supply-chain-scanner-public/fix-plan)
Your own site
<a href="https://agentmods.dev/skills/devinder1/supply-chain-scanner-public/fix-plan"><img src="https://agentmods.dev/badge/skills/devinder1/supply-chain-scanner-public/fix-plan.svg" alt="Measured on agentmods" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 602 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 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.1 $0.00085 $0.00602
Opus 5 $0.00043 $0.00301
Sonnet 5 $0.00017 $0.00120
Haiku 4.5 $0.00009 $0.00060

Measured 6d ago against content hash 13eff7c222a8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

fix-plan 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 6d 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/tridentchain-security/skills/fix-plan/SKILL.md · 37 lines

What it actually says

Fix plan

When the user asks for a remediation plan, fix recipe, or "what should I patch first":

  1. Run a scan first (use scan or scan-full per scope). If a recent .tridentchain-out/scan-report.json exists, you may reuse it.
  2. From raw_summary.affected_components, build a prioritised plan:
    • Sort by EPSS score descending — the user wants the actively-exploited ones first.
    • For each finding, capture: package name, current version, fix version, ecosystem, CVE IDs, EPSS score, KEV status.
  3. Present the plan as a table or numbered list. For each line include:
    • Risk badge: URGENT if KEV-listed OR EPSS > 0.5; HIGH if EPSS > 0.1; INFO otherwise.
    • Semver jump: PATCH (e.g., 5.0.5 → 5.0.6), MINOR (5.0.5 → 5.1.0), or MAJOR (5.x → 6.x). MAJOR bumps need user review.
    • Exact command the user can copy-paste:
      • npm: cd <manifest_dir> && npm install <pkg>@<fix_version>
      • pip: pip install --upgrade '<pkg>>=<fix_version>'
      • Homebrew (system): brew upgrade <pkg>
  4. After the plan, suggest the user re-run validate-fixes once the patches are applied — this closes the loop and verifies the CVEs are actually resolved.

Important constraints

  • Never apply the commands yourself. Present the plan; let the user run it. Auto-applying dependency upgrades is the user's decision.
  • Flag MAJOR semver bumps explicitly. They often introduce breaking changes; do not group them with PATCH bumps.
  • Group by manifest. If there are multiple package.json files or multiple requirements.txt in the project, separate the commands per directory.

CLI fallback (no MCP)

tridentchain-security --scan project --project-path . --output-dir .tridentchain-out
# Open the EPSS-prioritised remediation report:
open .tridentchain-out/scan-remediation-epss.html

The HTML report already shows the EPSS-ranked remediation queue with per-package fix commands.

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. 6d ago First seen · 37 lines · 85 tokens per session scan A 13eff7c222a8

Subscribe to this mod's changes

fix-plan is a skill published in the GitHub repository DevInder1/supply-chain-scanner-public (0 stars, last pushed 1mo ago), licensed MIT. It adds 85 tokens to every session and 602 once invoked, about $0.0004 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 skills, from other repositories