Borrowing it
Nothing to install: this file belongs to Nosmoht/talos-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/Nosmoht/talos-mcp-server/main/.claude/skills/refresh-tool-inventory/SKILL.mdgit clone --depth 1 https://github.com/Nosmoht/talos-mcp-serverWrote 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/nosmoht/talos-mcp-server/refresh-tool-inventory)<a href="https://agentmods.dev/skills/nosmoht/talos-mcp-server/refresh-tool-inventory"><img src="https://agentmods.dev/badge/skills/nosmoht/talos-mcp-server/refresh-tool-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.
<a href="https://agentmods.dev/skills/nosmoht/talos-mcp-server/refresh-tool-inventory"><img src="https://agentmods.dev/badge/skills/nosmoht/talos-mcp-server/refresh-tool-inventory.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.00052 | $0.00620 |
| Opus 5 | $0.00026 | $0.00310 |
| Sonnet 5 | $0.00010 | $0.00124 |
| Haiku 4.5 | $0.00005 | $0.00062 |
Grade A, and why
refresh-tool-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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 74 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Refresh Tool Inventory
Regenerate the tool/prompt/resource tables in AGENTS.md and README.md
from the source of truth (the Go packages in internal/).
Arguments
Parse $ARGUMENTS:
--apply— write changes. Default is dry-run (print diff only).
Key Steps
-
Enumerate registered handlers. Grep every registration call:
grep -nE 'mcp\.(AddTool|AddPrompt|AddResource)' \ internal/tools internal/prompts internal/resources -rCapture
kind(tool/prompt/resource),name,handler,file:line. -
Extract description. For each handler, Read the surrounding tool definition to pull
Description:/Title:fields. If absent, record description as<missing>and flag in the report. -
Compute diff. Locate the inventory tables in
AGENTS.mdandREADME.mdusing these sentinel markers (REQUIRED — abort if missing):<!-- inventory:tools:start --> ... <!-- inventory:tools:end --> <!-- inventory:prompts:start --> ... <!-- inventory:prompts:end --> <!-- inventory:resources:start --> ... <!-- inventory:resources:end -->If any sentinel is missing, abort with:
ERROR: sentinel <name> missing in <file> — add markers before re-running.Never guess table boundaries. -
Emit preview. Print the unified diff between the current tables and the regenerated tables.
-
Apply (only if
--apply). Use Edit to replace the content between each matching sentinel pair. Leave everything outside the sentinels untouched.
Output Format
Inventory diff (tools | prompts | resources):
Added: <name> (<kind>) — <file:line>
Removed: <name> (<kind>)
Renamed: <old> → <new>
Changed: <name> — description updated
Files that would be updated: AGENTS.md, README.md
Mode: dry-run | apply
On dry-run, print the diff and exit. On --apply, also write and print the
final file paths.
Notes
Prefer promoting the extraction step to a deterministic shell or Go script
under scripts/ once the format stabilises — this skill should then shrink
to "invoke the script, preview, apply" (per the project's deterministic
hierarchy rule).
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.
- 9d ago First seen · 74 lines · 52 tokens per session scan A b6606cc3a37c
refresh-tool-inventory is a skill published in the GitHub repository Nosmoht/talos-mcp-server (3 stars, last pushed 16d ago), licensed MIT. It adds 52 tokens to every session and 620 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-08-31.
Other skills, from other repositories
k8s
Operate the joelclaw Kubernetes cluster — Talos Linux on Colima (Mac Mini). Deploy services, check health, debug pods, recover from restarts, add ports, manage Helm releases, inspect logs, fix networking. Triggers on: 'kubectl', 'pods', 'deploy to k8s', 'cluster health', 'restart pod', 'helm install', 'talosctl'…
detecting-container-drift-at-runtime
Detect unauthorized modifications to running containers by monitoring for binary execution drift, file system changes, and configuration deviations from the original container image.
implementing-container-image-minimal-base-with-distroless
Reduce container attack surface by building application images on Google distroless base images that contain only the application runtime with no shell, package manager, or unnecessary OS utilities.
implementing-rbac-hardening-for-kubernetes
Harden Kubernetes Role-Based Access Control by implementing least-privilege policies, auditing role bindings, eliminating cluster-admin sprawl, and integrating external identity providers.
performing-container-security-scanning-with-trivy
Scan container images, filesystems, and Kubernetes manifests for vulnerabilities, misconfigurations, exposed secrets, and license compliance issues using Aqua Security Trivy with SBOM generation and CI/CD integration.
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.