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.
npx agentmods add instructions/buildinternet/releases-cli/agents-mdgit clone --depth 1 https://github.com/buildinternet/releases-cliWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.05090 | $0.05090 |
| Opus 5 | $0.02545 | $0.02545 |
| Sonnet 5 | $0.01018 | $0.01018 |
| Haiku 4.5 | $0.00509 | $0.00509 |
Grade A, and why
releases-cli AGENTS.md 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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agents guide — releases-cli
This repo is the public, client-only CLI for the Releases registry. It talks to api.releases.sh over HTTP. Ingest, database access, and AI pipelines live in a separate open-source backend monorepo, buildinternet/releases.
Stack
- Runtime: Bun (required for
bun --compile) - Language: TypeScript (strict mode)
- CLI: Commander
- MCP:
@modelcontextprotocol/sdkon stdio - HTTP client:
src/api/client.tsis the only data-access layer. No Drizzle, no SQLite, no local DB.
Commands
bun src/index.ts <command> # run from source
bun run build # compile binary to dist/releases
bun run check # oxlint (lint + type-check) + oxfmt check — CI gate
bun run lint # oxlint only (`typecheck` is an alias)
bun test # bun test (not part of check)
Architecture
src/index.ts— entry point. Validates config, sets up telemetry, rewrites legacy aliases, hands off to Commander.src/cli/program.ts— Commander program wiring. Public reader commands at the top level; operator workflows underadmin.src/cli/commands/— one file per command. Every command goes throughsrc/api/client.tsfor data access.src/api/client.ts— single HTTP boundary.apiFetch()auto-attachesAuthorization: Bearer ${RELEASES_API_KEY}when admin mode is active, and (viasrc/lib/mutation-log.ts) records mutating requests whenRELEASES_RUN_DIRis set.src/lib/mode.ts—getApiUrl()/getApiKey()/isAdminMode()/validateConfig(). Always remote.src/lib/mutation-log.ts— admin-mutation audit log for the~/.releases/work/maintenance workspace. WhenRELEASES_RUN_DIRis set, each non-GET request (minus telemetry/heartbeat plumbing) appends a{timestamp, command, target, result}JSONL line to$RELEASES_RUN_DIR/mutations.jsonl. Unset → no-op; fully fail-open.src/lib/trace.ts— managed-session traces. Writes<dir>/<id>/{trace.json,summary.md}for terminal sessions/workflows; dir precedence is explicit flag >RELEASES_RUN_DIR>~/.releases/work/runs. Used by--trace-dir(onboard,source fetch --wait,overview batch --wait) andtask get --save.summary.mdmirrors the monorepo'sdocs/architecture/maintenance-workspace.mdrun-summary template.src/lib/telemetry.ts— anonymous usage pings toapi.releases.sh/v1/telemetry. First-run notice shown once. Opt out viaRELEASES_TELEMETRY_DISABLED=1orDO_NOT_TRACK=1.src/lib/update-check.ts— npm-registry poll for newer CLI versions (24h cache in~/.releases/update-check.json). Prints a one-line stderr nag after command output when stale.src/lib/skills-update-check.tsmirrors it for the bundled skills: GitHubgit/trees/mainpoll for theskills/subtree SHA, cached in~/.releases/skills-check.json. Baseline is written on successfulreleases skills install; the nag fires only if a baseline exists and diverges. Defense in depth: when theskillsCLI's lock file ($XDG_STATE_HOME/skills/.skill-lock.jsonor~/.agents/.skill-lock.json) is present and parses cleanly with zerobuildinternet/releases-clientries, the nag is suppressed (user uninstalled viaskills). A missing/unreadable lock file falls through to the baseline check so manual installers aren't penalized. Opt out viaRELEASES_DISABLE_SKILL_UPDATE_CHECK=1. Both checks skip non-TTY callers and--help/--version.src/mcp/server.ts— local stdio MCP bridge. Exposes read-only tools (search,get_latest_releases,list_catalog,get_catalog_entry,get_source,list_organizations,get_organization) that proxy toapi.releases.sh. Mirrors the canonical tool names served by the hosted server atmcp.releases.sh.get_catalog_entryinlines a CHANGELOG slice for source entries viainclude_changelog/changelog_path/changelog_offset/changelog_limit/changelog_tokens(products have none — degrades with a clear message). The formerget_source_changelogtool was removed in 0.72.0 — useget_catalog_entrywith thechangelog_*params instead.@buildinternet/releases-core— runtime-neutral helpers (schema, categories, slicing, IDs, slugs, tokens, CLI contracts). Published from the privatebuildinternet/releasesmonorepo (canonical source inpackages/core/), consumed here as a regular npm dependency. Bump the pin inpackage.jsonwhen adopting a new schema.packages/lib/(@buildinternet/releases-lib) — logger, errors, trimmed config.skills/— single source of truth for the three user-facing agent skills (releases-mcp,releases-cli,analyzing-releases); there is no generated copy and no npm wrapper (@buildinternet/releases-skillsis retired/deprecated). Operator skills live in the backend monorepo's.claude/skills/tree — do not re-add copies here. The Claude plugin references these folders directly through.claude-plugin/marketplace.json(the plugin'sskillsarray lists./skills/<name>paths, resolved against the repo root viasource: "./"), so editing a skill is the whole change — nothing to re-sync. Cross-agent install runs throughreleases skills install, which shells out tonpx skills add buildinternet/releases-cli(thevercel-labs/skillsecosystem). Wiring is insrc/cli/commands/skills.ts; pure argv construction insrc/cli/skills/build-args.ts.plugins/claude/releases/— Claude Code plugin. Bundles the hosted MCP connection + the skills referenced fromskills/viamarketplace.json.npm/— meta package (@buildinternet/releases) + five platform binary packages. CI writes the compiled binary into each platform package before publishing.
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.
- 2d ago First seen · 91 lines · 5,090 tokens per session scan A d63a00f616b6
releases-cli AGENTS.md is an instructions file published in the GitHub repository buildinternet/releases-cli (4 stars, last pushed 2d ago), licensed MIT. It adds 5,090 tokens to every session, about $0.0255 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-31.
Other instructions, from other repositories
releases AGENTS.md
Instructions for buildinternet/releases, covering releases, stack, commands, local development and workspaces and carved-out packages.
releases CLAUDE.md
Instructions for buildinternet/releases, a project described as: Product release note registry, made for agents. Get recent product changelogs via MCP + CLI.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.