mflux: Skill for Claude Code

.agents/skills/remediating-dependabot/SKILL.md

remediating-dependabot is a skill for Claude Code, Codex from mflux-community/mflux. It costs 60 tokens per session (1,188 once invoked), scanned B, original, MIT.

Instructions for fixing open GitHub Dependabot alerts in the Python project mflux. Dependabot reports dependencies with known security vulnerabilities and suggests patched versions.

In plain words
What is it for?
Reading all open alerts, comparing vulnerable and patched version ranges, updating pyproject.toml and uv.lock, preserving supported platforms, and checking that a branch will close the reported findings.
Why use it?
They define how to make the smallest compatible dependency update and verify that the lockfile no longer uses vulnerable versions.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is mflux-community/mflux's own configuration. It tells Claude Code and Codex how to work on mflux 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 mflux configures →

About the project

MFLUX is a native MLX implementation of generative image models that runs locally on Mac computers. It is for generating images with supported models through command-line tools or a Python API. The catalogue skills and instruction support workflows built around these image-generation models.

mflux-community/mflux · 2,322 stars · on GitHub

Reuse

Borrowing it

Nothing to install: this file belongs to mflux-community/mflux. 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/mflux-community/mflux/main/.agents/skills/remediating-dependabot/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/mflux-community/mflux

Made for: Claude Code, Codex.

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 remediating-dependabot

README.md
[![agentmods](https://agentmods.dev/badge/skills/mflux-community/mflux/remediating-dependabot/github.svg)](https://agentmods.dev/skills/mflux-community/mflux/remediating-dependabot)
Your own site
<a href="https://agentmods.dev/skills/mflux-community/mflux/remediating-dependabot"><img src="https://agentmods.dev/badge/skills/mflux-community/mflux/remediating-dependabot/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 remediating-dependabot

Your own site · 80×15
<a href="https://agentmods.dev/skills/mflux-community/mflux/remediating-dependabot"><img src="https://agentmods.dev/badge/skills/mflux-community/mflux/remediating-dependabot.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,188 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00060 $0.01188
Opus 5 $0.00030 $0.00594
Sonnet 5 $0.00012 $0.00238
Haiku 4.5 $0.00006 $0.00119

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

Security

Grade B, and why

remediating-dependabot scanned grade B with 1 finding 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 11d 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.

Recursive force deletemediumDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

trap 'rm -rf "$tmp_dir"' EXIT

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

.agents/skills/remediating-dependabot/SKILL.md · 125 lines

How it starts

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

Remediating Dependabot

Resolve actionable Dependabot alerts with the smallest compatible dependency update and prove the local lock is outside every reported vulnerable range.

Scope

  • Use gh api as the source of truth for open alerts in mflux-community/mflux.
  • Keep dependency changes in pyproject.toml and uv.lock unless compatibility requires source changes.
  • Preserve supported Python and platform markers.
  • Avoid unrelated package upgrades when regenerating the lock.
  • Treat dependency optionality or loading refactors as separate work unless explicitly requested.

Workflow

  1. Confirm the current branch and working tree before editing.

  2. Fetch all open Dependabot alerts, following pagination:

    gh api --method GET --paginate \
      -H "Accept: application/vnd.github+json" \
      repos/mflux-community/mflux/dependabot/alerts \
      -f state=open
    
  3. Group alerts by manifest, package, severity, vulnerable range, and first patched version. Distinguish direct requirements from transitive lock entries.

  4. Inspect pyproject.toml, uv.lock, supported Python versions, and platform markers before choosing a fix.

  5. Prefer, in order:

    • removing dependencies that are no longer needed;
    • raising a direct lower bound to the first secure compatible release;
    • upgrading only affected transitive packages in the lock;
    • adding or changing environment markers only when compatibility actually differs by Python or platform.
  6. Use one requirement when a release supports the full project matrix. Do not introduce overlapping marker-specific requirements without evidence that they are necessary.

  7. Regenerate the lock with targeted upgrades:

    uv lock --upgrade-package <package> [--upgrade-package <package> ...]
    
  8. Review the lock diff. Explain large platform-specific resolver changes, especially PyTorch CUDA package transitions, rather than assuming they are accidental.

Security verification

Do not infer alert closure solely from package names or Dependabot's hosted UI.

Read the full file on GitHub · 125 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. 11d ago First seen · 125 lines · 60 tokens per session scan B e8d12cbe77ba

Subscribe to this mod's changes

remediating-dependabot is a skill published in the GitHub repository mflux-community/mflux (2,322 stars, last pushed 7d ago), licensed MIT. It adds 60 tokens to every session and 1,188 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (recursive force delete). 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

detect-framework

Detect Python agent frameworks from code imports and map them to Omnigent executor types. Load when the user has existing agent code to integrate.

omnigent-ai/omnigent · 31 tokens

optimize-python-parallelism

Analyze and, when the task authorizes source optimization, refactor a concrete long-running Python entrypoint containing repeated independent work. Use for explicit Python speedup or parallelization requests and evidence-backed long-running entrypoints; skip ordinary Python edits, test execution alone, short scripts…

cloudguo123/atomlane · 70 tokens

unsloth-buddy

This skill should be used when users want to fine-tune language models or perform reinforcement learning (SFT, DPO, GRPO, ORPO, KTO, SimPO) using the highly optimized Unsloth library. Covers environment setup, LoRA patching, VRAM optimization, vision/multimodal fine-tuning, TTS, embedding training, and…

TYH-labs/unsloth-buddy · 123 tokens

huggingface-accelerate

Simplest distributed training API. 4 lines to add distributed support to any PyTorch script. Unified API for DeepSpeed/FSDP/Megatron/DDP. Automatic device placement, mixed precision (FP16/BF16/FP8). Interactive config, single launch command. HuggingFace ecosystem standard.

ovachiever/droid-tings · 69 tokens

pennylane

Hardware-agnostic quantum ML framework with automatic differentiation. Use when training quantum circuits via gradients, building hybrid quantum-classical models, or needing device portability across IBM/Google/Rigetti/IonQ. Best for variational algorithms (VQE, QAOA), quantum neural networks, and integration with…

K-Dense-AI/scientific-agent-skills · 98 tokens

dd-code-generation

Use pup CLI for immediate Datadog operations or generate code for integration into applications.

DataDog/pup · 16 tokens