dependabot

dependabot is a skill for Claude Code, Codex from fmind/dot. It costs 31 tokens per session (888 once invoked), scanned A, original, MIT.

A setup guide for GitHub Dependabot, which automatically proposes updates to project dependencies and GitHub Actions. It explains how to connect different package files to the right update system.

In plain words
What is it for?
Use it to create or repair `.github/dependabot.yml`, configure update schedules, group minor and patch updates, and cover ecosystems such as npm, Go, Python, Docker, and Terraform.
Why use it?
It reduces the manual work of tracking outdated libraries and helps keep dependency updates grouped and reviewable.

Skill for Claude CodeCodex

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 skills/fmind/dot/dependabot
Any agent
npx skills add fmind/dot --skill dependabot
Clone the repo
git clone --depth 1 https://github.com/fmind/dot

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 dependabot

README.md
[![agentmods](https://agentmods.dev/badge/skills/fmind/dot/dependabot.svg)](https://agentmods.dev/skills/fmind/dot/dependabot)
Your own site
<a href="https://agentmods.dev/skills/fmind/dot/dependabot"><img src="https://agentmods.dev/badge/skills/fmind/dot/dependabot.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 888 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.00031 $0.00888
Opus 5 $0.00015 $0.00444
Sonnet 5 $0.00006 $0.00178
Haiku 4.5 $0.00003 $0.00089

Measured yesterday against content hash a5e823dbe955, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

dependabot 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 yesterday.

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.

skills/dependabot/SKILL.md · 79 lines

How it starts

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

Dependabot

Keep GitHub Actions and dependencies current with one .github/dependabot.yml; secure enables it during the security pass and upgrade-tools owns the bumps Dependabot cannot make (mise pins, formatter plugins).

Workflow

  1. Map the ecosystems: one updates entry per manifest directory, using the value Dependabot expects:

    Manifest package-ecosystem
    .github/workflows/*.yml github-actions
    go.mod gomod
    pyproject.toml + uv.lock uv
    package.json (npm, pnpm, yarn) npm
    Dockerfile docker
    *.tf (Terraform) terraform
    *.tf (OpenTofu) opentofu
  2. Write the config: weekly schedule, chore(deps) commit prefix, and one group per ecosystem for minor and patch updates so majors arrive alone:

    version: 2
    updates:
      - package-ecosystem: github-actions
        directory: /
        schedule:
          interval: weekly
          day: monday
        commit-message:
          prefix: "chore(deps)"
        groups:
          actions:
            patterns: ["*"]
            update-types: [minor, patch]
      - package-ecosystem: gomod
        directory: /
        schedule:
          interval: weekly
          day: monday
        commit-message:
          prefix: "chore(deps)"
        groups:
          go-modules:
            patterns: ["*"]
            update-types: [minor, patch]
    
  3. Validate: zizmor --offline --collect dependabot --strict-collection . checks the schema and audits the file offline (see zizmor); GitHub re-validates on push and shows errors in the Dependabot tab.

  4. Review each PR locally: never merge blindly and never enable auto-merge.

Read the full file on GitHub · 79 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. yesterday First seen · 79 lines · 31 tokens per session scan A a5e823dbe955

Subscribe to this mod's changes

dependabot is a skill published in the GitHub repository fmind/dot (4 stars, last pushed today), licensed MIT. It adds 31 tokens to every session and 888 once invoked, about $0.0002 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-09-03.