stale-sweep

stale-sweep is a skill for Claude Code, Codex from googleapis/mcp-toolbox. It costs 159 tokens per session (2,517 once invoked), scanned A, original, Apache-2.0.

A maintenance review for GitHub issues and pull requests that have had no meaningful activity for a set period, usually 60 days. It sorts the quiet items by whether the contributor, the maintainers, or nobody is holding things up.

In plain words
What is it for?
Use it for stale-work reviews, backlog cleanup, and service-level objective checks. It examines inactive issues and pull requests and drafts a nudge or closure comment when appropriate.
Why use it?
It helps maintainers decide which old work should be closed, followed up, kept because it is waiting on the team, or left alone. It also provides ready-to-post comments for the decisions that need one.

Skill for Claude CodeCodex ✓ vendor

Written for no agent in particular: nothing here depends on one.

Good fit Use it for stale-work reviews, backlog cleanup, and service-level objective checks. It examines inactive issues and pull requests and drafts a nudge or closure comment when appropriate.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/googleapis/mcp-toolbox/stale-sweep
About the project

MCP Toolbox for Databases is an open-source Model Context Protocol server that connects AI agents, development environments, and applications to enterprise databases through ready-made or custom tools. It is for exploring schemas, querying data, generating code, and building specialized database tools for production agents. The catalogue includes its skills, instructions, and MCP server integration.

googleapis/mcp-toolbox · 16,330 stars · on GitHub · mcp-toolbox.dev

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 googleapis/mcp-toolbox --skill stale-sweep
Clone the repo
git clone --depth 1 https://github.com/googleapis/mcp-toolbox

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 stale-sweep

README.md
[![agentmods](https://agentmods.dev/badge/skills/googleapis/mcp-toolbox/stale-sweep.svg)](https://agentmods.dev/skills/googleapis/mcp-toolbox/stale-sweep)
Your own site
<a href="https://agentmods.dev/skills/googleapis/mcp-toolbox/stale-sweep"><img src="https://agentmods.dev/badge/skills/googleapis/mcp-toolbox/stale-sweep.svg" alt="Measured on agentmods" height="20"></a>
Per session 159 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,517 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
  • Snyk warn 7 Sept 2026
  • 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.00159 $0.02517
Opus 5 $0.00079 $0.01259
Sonnet 5 $0.00032 $0.00503
Haiku 4.5 $0.00016 $0.00252

Measured 8d ago against content hash 28bfc13e59ed, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

stale-sweep 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 8d 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.

skills/maintainer/stale-sweep/SKILL.md · 210 lines

How it starts

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

Stale Sweep (mcp-toolbox)

This repo runs no stale bot (.github/ has no stale workflow), so closing is always a deliberate maintainer act. The value of a sweep is therefore not the list of old things, which anyone can get by sorting on a date. It's the judgment about which silences belong to the contributor, which belong to us, and which are the backlog working as intended.

Goal

Given a window (default 60 days), deliver a sweep the maintainer can work through in one sitting: every candidate sorted into close / nudge-author / on-us / leave-alone, each with the date and reason that put it there, plus a paste-ready comment wherever one is warranted.

Prerequisites

  • gh authenticated for googleapis/mcp-toolbox. A GitHub MCP server substitutes: the commands below map to its read/list tools.
  • A window. If the maintainer didn't give one, default to 60 days and say that's what you used.

Workflow

Step 1: Read the source of truth

Read these live, not from memory.

  • references/maintainer-playbook.md: authoritative for the

    60-day silence rule on status: waiting for response / status: feedback wanted, the SLO response and closure targets, and the canonical comment templates.

  • gh label list --repo googleapis/mcp-toolbox --limit 200: there is no stale label, so never propose one. This workflow's vocabulary is status: waiting for response, status: feedback wanted, duplicate, and wontfix.
  • .github/blunderbuss.yml: which product: label routes to which team, needed to name an owner on anything blocked on us.

Step 2: Pull the candidates

CUTOFF=$(date -d '60 days ago' +%F 2>/dev/null || date -v-60d +%F)   # GNU, then BSD/macOS

gh search issues --repo googleapis/mcp-toolbox --state open --updated "<$CUTOFF" \
  --limit 100 --json number,title,url,updatedAt,createdAt,labels,author,commentsCount

gh search prs --repo googleapis/mcp-toolbox --state open --updated "<$CUTOFF" \
  --limit 100 --json number,title,url,updatedAt,labels,author,isDraft

Read the full file on GitHub · 210 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. 8d ago First seen · 210 lines · 159 tokens per session scan A 28bfc13e59ed

Subscribe to this mod's changes

stale-sweep is a skill published in the GitHub repository googleapis/mcp-toolbox (16,330 stars, last pushed today), licensed Apache-2.0. It adds 159 tokens to every session and 2,517 once invoked, about $0.0008 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

benchling-integration

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

synthetic-sciences/openscience · 44 tokens

agentfield-use

Whenever you have a discrete task to perform — one the user delegated, or one that arose inside your own work — check FIRST whether an installed AgentField agent covers it, and offload to it by default when one does. Coverage, not task size, is the test: even a small job goes to a covering agent. The check is cheap …

Agent-Field/agentfield · 259 tokens

agentfield

Design and ship a multi-agent system on AgentField. Use when the user asks to build, scaffold, design, or run an agent, reasoner network, multi-agent backend, or 'an agent that does X' — whenever the work would otherwise be a single LLM call or a flat LangChain/CrewAI/AutoGen chain. The skill produces composite…

Agent-Field/agentfield · 127 tokens

agentfield-personal

Build and install a personal AI agent on this machine's AgentField: real source in /agentfield-agents, packaged with agentfield-package.yaml, installed with af install, started with af run, registered on the local control plane, and visible in AgentField Desktop with a keys form and an auto-start toggle. Use when the…

Agent-Field/agentfield · 134 tokens

meta-meeting-to-workflow

Use this meta-skill instead of answering directly when the user has meeting notes, transcripts, recordings, or rough discussion notes and wants them converted into decisions, owners, follow-ups, tasks, issues, or shareable minutes through multi-skill orchestration.

opensquilla/opensquilla · 58 tokens

meta-issue-to-pr-autopilot

Triages an issue, delegates the fix to sub-agent, drafts a PR description with summarize, and opens the PR via gh. Best used on small, well-scoped issues with clear acceptance criteria.

opensquilla/opensquilla · 117 tokens