maintaining-orgs

maintaining-orgs is a skill for Claude Code from buildinternet/releases. It costs 54 tokens per session (6,702 once invoked), scanned A, original, Apache-2.0.

A maintenance guide for indexed organizations and their release sources. It explains how to fetch current publications and regenerate an organization overview, which is a short summary of what that organization has recently shipped.

In plain words
What is it for?
Use it for periodic updates, pre-analysis freshness checks, onboarding, and spot-checking whether an organization’s indexed data is current.
Why use it?
It separates data fetching from AI summary generation, making it clear how to refresh information and avoid creating summaries for uncurated organizations.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions subagents; mentions Claude Code.

Part of the registry-maintenance plugin — 8 skills shipped together

Good fit Use it for periodic updates, pre-analysis freshness checks, onboarding, and spot-checking whether an organization’s indexed data is current.

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

Made for: Claude Code.

Or install registry-maintenance, the plugin that ships this one along with the rest of its 8 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 maintaining-orgs

README.md
[![agentmods](https://agentmods.dev/badge/skills/buildinternet/releases/maintaining-orgs.svg)](https://agentmods.dev/skills/buildinternet/releases/maintaining-orgs)
Your own site
<a href="https://agentmods.dev/skills/buildinternet/releases/maintaining-orgs"><img src="https://agentmods.dev/badge/skills/buildinternet/releases/maintaining-orgs.svg" alt="Measured on agentmods" 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 6,702 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 Rogue Agent · line 267
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.06702
Opus 5 $0.00027 $0.03351
Sonnet 5 $0.00011 $0.01340
Haiku 4.5 $0.00005 $0.00670

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

Security

Grade A, and why

maintaining-orgs 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.

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.

> **Sandbox without a working CLI?** If the compiled `releases` binary can't reach the API through a TLS-intercepting egress proxy (the weekly SANA sandbox), the overview steps have a curl-to-REST fallback — see `regener
.claude/skills/maintaining-orgs/SKILL.md · 320 lines

How it starts

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

Maintaining Orgs

Keep indexed organizations current by fetching their sources and regenerating overviews. Driven from Claude Code using the installed releases CLI against the production API. Two pieces compose:

  1. Fetch — pull every active source so the database reflects what's been published. CLI does the work; no AI required.
  2. Regenerate overview — re-derive the org's AI summary from the freshened release set. AI work; runs through the regenerating-overviews skill (which carries the prompt + workflow).

There is intentionally no single-command "refresh in one step" today. Compose the two pieces below.

When to Use

  • Periodic maintenance: "update the top 10 orgs"
  • Before analysis: ensure data is fresh before competitive intel or trend work
  • After onboarding: first full fetch + overview for a newly added org
  • Spot checks: "is Stripe up to date?"

On-demand orgs (discovery = 'on_demand') are hidden stubs materialized by the on-demand lookup endpoint. They get embeddings and cron fetches but no overviews or summarization. The releases admin overview plan / overview list endpoints already filter to curated orgs server-side via the organizations_public view (which excludes on_demand), so manifest-driven sweeps don't need a separate filter pass. To promote an on-demand org to curated, use releases admin org update <slug> --discovery curated.

Single Org Update

Two steps:

# 1. Fetch active sources (skips fetchPriority=paused)
releases admin source fetch --org <slug>

# 2. Regenerate the overview by invoking the regenerating-overviews skill.
#    See that skill for the workflow; the inputs and update commands are:
releases admin overview inputs <slug> --json
# … generate markdown locally per skill prompt …
releases admin overview update <slug> --content-file /tmp/<slug>-overview.md

Sandbox without a working CLI? If the compiled releases binary can't reach the API through a TLS-intercepting egress proxy (the weekly SANA sandbox), the overview steps have a curl-to-REST fallback — see regenerating-overviewsRunning without the CLI (curl fallback), including the plan manifest (GET /v1/admin/overviews?format=plan) that drives target selection below. Step 1 (admin source fetch) has no curl fallback yet — it dispatches a managed update run and polls, not a single REST call. In a broken-CLI sandbox, skip the fetch and regenerate from current indexed data (surface that the fetch was skipped); a proper fetch-trigger fallback is tracked in #2163.

Read the full file on GitHub · 320 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. 7d ago First seen · 320 lines · 54 tokens per session scan A e19cd0c84d6e

Subscribe to this mod's changes

maintaining-orgs is a skill published in the GitHub repository buildinternet/releases (6 stars, last pushed 4d ago), licensed Apache-2.0. It adds 54 tokens to every session and 6,702 once invoked, about $0.0003 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-08-31.

Related

Other skills, from other repositories

xquik-social-data

Use Xquik for X and Twitter social data workflows through its public API, SDKs, MCP server, webhooks, and installable agent skill.

librefang/librefang-registry · 37 tokens

releases-cli

Use the releases CLI to search, browse, and read the Releases.sh changelog registry from the terminal — the keyless, agent-friendly peer of the Releases MCP. Activate when the user mentions "releases CLI", runs a releases command, asks how to install it, or wants to look up releases, sources, orgs, collections, or…

buildinternet/releases-cli · 86 tokens

releases-mcp

Use when the user asks about recent releases, changelogs, what's new in a library, breaking changes, version updates, or wants to compare products. Activates for questions like "what changed in Next.js 15?", "latest Tailwind releases", "compare Bun vs Deno releases".

buildinternet/releases-cli · 64 tokens

analyzing-releases

Analyze release trends across multiple companies to produce competitive intelligence. Use when asked to compare companies, analyze a market segment, identify industry trends, forecast upcoming releases, or answer questions like "what is X shipping lately" or "how does X compare to Y." Also triggers on requests for…

buildinternet/releases-cli · 75 tokens

graphql-expert

GraphQL expert for schema design, resolvers, subscriptions, and performance optimization.

librefang/librefang-registry · 19 tokens

openapi-expert

OpenAPI/Swagger expert for API specification design, validation, and code generation.

librefang/librefang-registry · 20 tokens