check-dependabot

check-dependabot is a skill for Claude Code, Codex from sergeyklay/.agents. It costs 163 tokens per session (2,521 once invoked), scanned A, original, Apache-2.0.

A validation tool for GitHub Dependabot configuration, which tells GitHub how to update project dependencies. It checks both the file’s format and whether its package groups match the dependencies the repository actually uses.

In plain words
What is it for?
It helps validate .github/dependabot.yml, review grouped dependency rules, and compare patterns, ignores, and exclusions with real dependency manifests.
Why use it?
A malformed configuration may be rejected without an obvious repository failure, while a valid configuration can still group, ignore, or exclude the wrong packages. This catches both kinds of mistake before misleading update pull requests appear.

Skill for Claude CodeCodex

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

Good fit It helps validate .github/dependabot.yml, review grouped dependency rules, and compare patterns, ignores, and exclusions with real dependency manifests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sergeyklay/.agents/check-dependabot
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 sergeyklay/.agents --skill check-dependabot
Clone the repo
git clone --depth 1 https://github.com/sergeyklay/.agents

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/sergeyklay/.agents/check-dependabot"><img src="https://agentmods.dev/badge/skills/sergeyklay/.agents/check-dependabot.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 163 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,521 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 29
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00163 $0.02521
Opus 5 $0.00081 $0.01260
Sonnet 5 $0.00033 $0.00504
Haiku 4.5 $0.00016 $0.00252

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

Security

Grade A, and why

check-dependabot scanned grade A 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 7d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/audit_dependabot.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -fsSL https://www.schemastore.org/dependabot-2.0.json -o /tmp/dependabot-schema.json
.agents/skills/check-dependabot/SKILL.md · 145 lines

How it starts

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

Validating a Dependabot configuration

A dependabot.yml fails in two independent ways, and each needs its own check.

Syntactically, a misspelled key or an unsupported enum value makes GitHub reject the file. Dependabot reports this only under Insights → Dependency graph → Dependabot, so the usual symptom is silence: no PRs, no CI failure, nothing in the pull request list.

Semantically, the file is valid and Dependabot runs it happily, but it does not do what the author meant. A patterns entry naming a package the repo never installed groups nothing. An ignore entry for a package that was renamed or removed protects nothing. A package matched by two groups lands in whichever one Dependabot picks, not the one the comment above it claims. None of this surfaces until a PR arrives in the wrong shape, weeks later.

Schema validation catches the first class and is blind to the second. Run both.

Running scripts bundled with this skill

Script paths resolve relative to this SKILL.md, not the agent's CWD. If a relative command fails to resolve, prefix it with the directory the platform loaded SKILL.md from.

Fallback. If python3 cannot be located, analyze the script's purpose and logic and execute its intent with available tools, but warn the user that python is not available and the logic was executed with a fallback approach that may not be perfect.

Step 1 - Validate against the published schema

curl -fsSL https://www.schemastore.org/dependabot-2.0.json -o /tmp/dependabot-schema.json
python3 -c "import json,yaml,sys; json.dump(yaml.safe_load(open(sys.argv[1])),open(sys.argv[2],'w'))" \
  .github/dependabot.yml /tmp/dependabot-config.json
npx --yes ajv-cli@5 validate --spec=draft7 --strict=false --all-errors \
  -s /tmp/dependabot-schema.json -d /tmp/dependabot-config.json

Each flag is load-bearing:

  • curl -fsSL - json.schemastore.org 301-redirects to www.schemastore.org. Without -L curl saves a ~170-byte HTML stub; -f is what turns that into a non-zero exit instead of a confusing downstream JSON parse error.
  • --spec=draft7 - the schema declares draft-07. ajv-cli 5 ships ajv 8, whose default dialect is not draft-07.
  • --strict=false - the schema carries the vendor keyword x-intellij-enum-metadata. ajv 8 strict mode rejects the schema over it and reports schema is invalid, which reads like a problem with the config.
  • --all-errors - otherwise one error per run, turning a multi-error file into a slow loop.

Read the full file on GitHub · 145 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago First seen · 145 lines · 163 tokens per session scan A af82c8ca535a

Subscribe to this mod's changes

check-dependabot is a skill published in the GitHub repository sergeyklay/.agents (5 stars, last pushed yesterday), licensed Apache-2.0. It adds 163 tokens to every session and 2,521 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.