sq: Skill for Claude Code

.agents/skills/sq-gomod-dependabot/SKILL.md

sq-gomod-dependabot is a skill for Claude Code, Codex from neilotoole/sq. It costs 54 tokens per session (839 once invoked), scanned A, original, MIT.

A review workflow for Dependabot pull requests that update Go module files such as go.mod and go.sum. Dependabot is a service that opens dependency-update pull requests automatically.

In plain words
What is it for?
Use it to list and classify Go dependency pull requests, review direct and indirect updates, run the short test suite, and merge approved updates with consent.
Why use it?
It helps separate Go dependency updates from unrelated website and GitHub Actions changes, then checks the changes and tests before merging.

Skill for Claude CodeCodex

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

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

Part of the sq plugin — 4 skills shipped together

About the project

sq is a command-line data-wrangling tool that lets users query, join, inspect, compare, and transform SQL databases and structured files such as CSV and Excel using SQL or jq-like queries. It is intended for people working with databases and tabular or document data. Catalogue add-ons provide workflows for using sq from coding agents.

neilotoole/sq · 2,564 stars · on GitHub · sq.io

Reuse

Borrowing it

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

Made for: Claude Code, Codex.

Or install sq, the plugin that ships this one along with the rest of its 4 skills.

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 sq-gomod-dependabot

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/neilotoole/sq/sq-gomod-dependabot"><img src="https://agentmods.dev/badge/skills/neilotoole/sq/sq-gomod-dependabot.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 839 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.00054 $0.00839
Opus 5 $0.00027 $0.00419
Sonnet 5 $0.00011 $0.00168
Haiku 4.5 $0.00005 $0.00084

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

Security

Grade A, and why

sq-gomod-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 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.

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.

.agents/skills/sq-gomod-dependabot/SKILL.md · 103 lines

How it starts

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

sq-gomod-dependabot

Maintainer workflow for Dependabot PRs updating go.mod / go.sum at the repository root. For site/ Bun/Hugo PRs, use sq-site-dependabot; for GitHub Actions pins under .github/workflows/, use sq-actions-dependabot.

No bun.lock sequencing — multiple gomod PRs are less coupled than site PRs, but still prefer merging after CI is green.

Operating modes

Mode Actions Merge
Audit List/classify; direct vs indirect No
Validate Diff review; make test-short No
Full Validate + merge with consent Per PR

Default to Audit unless the user asks to merge.

Phase 0 — Tool bootstrap

command -v gh >/dev/null && gh auth status
command -v go >/dev/null && go version

Phase 1 — Discovery

From repository root:

gh pr list --author 'app/dependabot' --state open \
  --json number,title,headRefName,mergeable,statusCheckRollup \
  --jq '.[] | select(.headRefName | test("^dependabot/")) | select(.title | test("go|gomod|golang"; "i"))'

The title filter matches go/golang, so it also catches GitHub Actions PRs like goreleaser-action or golangci-lint-action. Those touch only .github/workflows/, not go.mod; hand them to sq-actions-dependabot. Confirm the PR does not only touch site/ (gh pr diff <n> --name-only); if it touches both, split judgment: site hunks → sq-site-dependabot.

Phase 2 — Risk

Level Examples Action
Low Patch indirect, test-only modules Merge after CI
Medium Direct minor/patch runtime dep Notes + test-short
High Major, replace, breaking sec Hold; full review

Read the full file on GitHub · 103 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 · 103 lines · 54 tokens per session scan A b49f2639ffd6

Subscribe to this mod's changes

sq-gomod-dependabot is a skill published in the GitHub repository neilotoole/sq (2,564 stars, last pushed today), licensed MIT. It adds 54 tokens to every session and 839 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-30.

Related

Other skills, from other repositories

design-review

Deep design review of Go codebase — naming, structure, consistency, interfaces, error handling. Scores each dimension and provides actionable fixes.

dimetron/pi-go · 30 tokens

agents-md

Generate AGENTS.md files for Go, Rust, TypeScript, and Java projects. Use this skill whenever the user asks to create, scaffold, bootstrap, update, or review an AGENTS.md (or agent-instructions, CLAUDE.md, repo guide for agents) file in a codebase. Also trigger when the user says "add AGENTS.md", "make this repo…

dimetron/pi-go · 138 tokens

gemtracker

Analyze Ruby gem dependencies, vulnerabilities, outdated packages, maintenance health, and insecure gem sources with the gemtracker CLI. Use when asked to audit Ruby gems, check Gemfile.lock security, review dependency health, or run gemtracker.

spaquet/gemtracker · 49 tokens

go-code-review

Use when reviewing Go code or checking code against community style standards. Also use proactively before submitting a Go PR or when reviewing any Go code changes, even if the user doesn't explicitly request a style review. Does not cover language-specific syntax — delegates to specialized skills.

cxuu/golang-skills · 56 tokens

code-review-go

Deep Go-specific code review covering goroutine lifecycle, data races, error wrapping, domain modeling, and interface design. Applied in addition to the generic code-review skill when Go code is detected. Invoked when reviewing Go PRs, Go code changes, or performing Go-specific quality checks.

soulcodex/agentic · 61 tokens

go-idiomatic

Semantic ownership. Use when errors, context, nil or zero values, method sets, aliasing, or resource lifetimes change what a Go caller observes.

Dankosik/go-service-template-rest · 36 tokens