solace-broker-mcp: Skill for Claude Code

.claude/skills/refresh-third-party-inventory/SKILL.md

refresh-third-party-inventory is a skill for Claude Code from SolaceProducts/solace-broker-mcp. It costs 100 tokens per session (2,633 once invoked), scanned A, original, Apache-2.0.

A workflow for repairing a Dependabot pull request whose third-party license check is failing. Dependabot is a service that proposes updates to project dependencies and often cannot run the project's follow-up inventory script.

In plain words
What is it for?
Use it when a Dependabot update needs refreshed third-party license and build-test inventory files before the pull request can pass its checks.
Why use it?
It runs the required inventory refresh, shows the changes, and pauses for confirmation before creating a signed commit or pushing it to the pull request branch.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: mentions Claude Code.

This is SolaceProducts/solace-broker-mcp's own configuration. It tells Claude Code how to work on solace-broker-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything solace-broker-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to SolaceProducts/solace-broker-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/SolaceProducts/solace-broker-mcp/main/.claude/skills/refresh-third-party-inventory/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/SolaceProducts/solace-broker-mcp

Made for: Claude Code.

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 refresh-third-party-inventory

README.md
[![agentmods](https://agentmods.dev/badge/skills/solaceproducts/solace-broker-mcp/refresh-third-party-inventory/github.svg)](https://agentmods.dev/skills/solaceproducts/solace-broker-mcp/refresh-third-party-inventory)
Your own site
<a href="https://agentmods.dev/skills/solaceproducts/solace-broker-mcp/refresh-third-party-inventory"><img src="https://agentmods.dev/badge/skills/solaceproducts/solace-broker-mcp/refresh-third-party-inventory/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.

agentmods 80×15 button for refresh-third-party-inventory

Your own site · 80×15
<a href="https://agentmods.dev/skills/solaceproducts/solace-broker-mcp/refresh-third-party-inventory"><img src="https://agentmods.dev/badge/skills/solaceproducts/solace-broker-mcp/refresh-third-party-inventory.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,633 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00100 $0.02633
Opus 5 $0.00050 $0.01316
Sonnet 5 $0.00020 $0.00527
Haiku 4.5 $0.00010 $0.00263

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

Security

Grade A, and why

refresh-third-party-inventory 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.

.claude/skills/refresh-third-party-inventory/SKILL.md · 179 lines

How it starts

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

Refresh third-party inventory

Run make refresh-third-party-inventory (SOL-152956) against a Dependabot PR and land the result, with a human checkpoint before anything gets pushed. Invoked with /refresh-third-party-inventory <PR number or URL>.

Dependabot bumps Go modules and re-pins GitHub Action SHAs but cannot run post-update scripts, so its own PRs land with THIRD_PARTY_LICENSES.md / THIRD_PARTY_BUILD_TEST.md unmodified and Third-party licenses current red. make refresh-third-party-inventory already turns fixing that into one command; this skill is that command asked for in plain language instead of remembered and typed by hand.

The one checkpoint is the diff, before anything is written. This skill checks out a real PR branch and pushes a real commit to it — Step 5 always stops and shows the diff, and committing and pushing (Step 6) only happen after that's explicitly confirmed. One confirmation covers both, the same way /changelog never commits and /add-logs never applies without being shown first. There is no "just push it if it looks fine" mode.

When to use

  • A Dependabot PR is red on Third-party licenses current and needs the routine fix.
  • Someone points at a failing run of that check and asks for it to be fixed.
  • Not for a PR failing for any other reason — see Step 2.
  • Not for a fork pull request — see Step 3.

Usage

  • /refresh-third-party-inventory <PR number> — e.g. /refresh-third-party-inventory 321
  • /refresh-third-party-inventory <PR URL>
  • /refresh-third-party-inventory <failing run URL> — resolve to its PR first
  • No argument: ask which PR or run to target before doing anything else.

Precondition: gh auth status first. Every step below needs an authenticated gh.

Steps

Step 1: Resolve the target PR

From a PR number or URL, use it directly.

From a run URL (https://github.com/<owner>/<repo>/actions/runs/<run-id>): parse <owner>/<repo> and <run-id> from the URL itself, then gh api repos/<owner>/<repo>/actions/runs/<run-id> --jq '.pull_requests[0].number'. gh run view --json has no field that names the PR or even the head repository directly (headRepository is not a valid field for it at all), so this is not a shortcut — it is the only reliable way to get from a run to its PR via the API. If pull_requests is empty (the run wasn't triggered by a pull request — a push to main, for instance), say so and ask which PR to target rather than guessing.

Read the full file on GitHub · 179 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. 10d ago First seen · 179 lines · 100 tokens per session scan A b38ce8dce3bf

Subscribe to this mod's changes

refresh-third-party-inventory is a skill published in the GitHub repository SolaceProducts/solace-broker-mcp (11 stars, last pushed today), licensed Apache-2.0. It adds 100 tokens to every session and 2,633 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-30.

Related

Other skills, from other repositories

company-lookup

Search and verify companies across Nordic business registries (Norway, Denmark, Finland, Sweden). Use for due diligence, vendor verification, board member lookups, and signing authority checks.

olgasafonova/nordic-registry-mcp-server · 41 tokens

gdpr-data-handling

Implement GDPR-compliant data handling with consent management, data subject rights, and privacy by design. Use when building systems that process EU personal data, implementing privacy controls, or conducting GDPR compliance reviews.

Harmeet10000/skills · 45 tokens

specification-writing

A workflow for writing complete patent specifications from patent claims and an invention disclosure. It adapts the document to a chosen jurisdiction, such as the US, Europe, or China.

wanshuiyin/Auto-claude-code-research-in-sleep · 49 tokens

regulatory-research-fallback

Fallback workflow for regulatory research when web extraction tools fail on government PDFs.

HKUDS/OpenSpace · 20 tokens

x-scorecard

OpenSSF Scorecard for assessing open source project security. Check security best practices and compliance. Dependency: This is an x-cmd module. Install x-cmd first (see x-cmd skill for installation options). see x-cmd skill for installation.

x-cmd/x-cmd · 57 tokens

gesellschaftsrechtliche-satzungen-agb

Für Gesellschaftsrechtliche Satzungen AGB Abgrenzung: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt. Fachgebiet: AGB-Recht-Prüfer. Route: gesellschaftsrechtliche-satzungen-agb.

Klotzkette/claude-fuer-deutsches-recht · 69 tokens