Bifrost is an AI gateway that gives applications one OpenAI-compatible API for accessing models from more than 23 providers. It is used to route model requests, handle provider failover and load balancing, and apply features such as caching, guardrails, and MCP gateway support.
Borrowing it
Nothing to install: this file belongs to maximhq/bifrost. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/maximhq/bifrost/dev/.claude/skills/release-checklist/SKILL.mdgit clone --depth 1 https://github.com/maximhq/bifrostWrote 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.
[](https://agentmods.dev/skills/maximhq/bifrost/release-checklist)<a href="https://agentmods.dev/skills/maximhq/bifrost/release-checklist"><img src="https://agentmods.dev/badge/skills/maximhq/bifrost/release-checklist.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00082 | $0.02507 |
| Opus 5 | $0.00041 | $0.01254 |
| Sonnet 5 | $0.00016 | $0.00501 |
| Haiku 4.5 | $0.00008 | $0.00251 |
Grade A, and why
release-checklist 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 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.
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 — 194 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release Checklist
A pre-release safety audit. Given a set of changes destined for release, run every check in the Checks Registry below and produce one consolidated report. This skill is read-only: it diagnoses, recommends a concrete fix for every finding, and never edits files. Applying a fix is a separate, explicitly-approved step.
The registry currently holds two migration-safety checks. It is designed to grow - see Adding a New Check.
Scope: what "the release" means
Determine the change set to audit, in this order:
- If the user passed a git ref or range (e.g.
/release-checklist v1.4.0..HEADor/release-checklist origin/dev), use it. - Otherwise default to everything not yet on the main branch: diff
origin/dev...HEAD(three-dot) and also include uncommitted working-tree changes. - If that range is empty, tell the user and ask for an explicit range.
Gather the raw material once, up front:
git fetch origin --quiet
git diff --stat origin/dev...HEAD
git diff origin/dev...HEAD -- '**/migrations.go' '**/matviews.go'
git status --porcelain
Migrations here are Go-defined, not .sql files. They live in:
framework/configstore/migrations.go- config DB (providers, keys, virtual keys, budgets)framework/logstore/migrations.go- log DB (request logs; the high-volume table)framework/logstore/matviews.go- materialized views over the log DB
A release with no diff in these files has no migration risk - record both migration
checks as PASS (no migrations changed) and move on.
Migration system facts (needed by both checks)
- All migrations run synchronously at boot.
triggerMigrations()executes the full ordered migration list during store init, before the process serves traffic. - Supported databases: PostgreSQL and SQLite only. No MySQL. Lock behavior differs sharply between the two - judge both.
- Migrations are cluster-serialized behind Postgres advisory lock
1000001with a 5-minute acquisition timeout. A slow migration on one pod stalls every other pod's boot. - Each migration func runs in a transaction by default (
Options.UseTransaction = true). A transaction holds every lock until the func returns - migration duration is lock duration. - Established escape hatch for heavy work: index builds and materialized views run in
post-startup background goroutines under separate advisory locks (
1000002for indexes,1000005/1000006for matviews) - seeframework/logstore/postgres.go,ensurePerformanceIndexes(),ensureMatViews().migrationAddProviderHistogramIndexis intentionally a near-no-op that defers the realCREATE INDEX CONCURRENTLYthere. This deferral pattern is the correct fix for anything heavy.
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.
- 7d ago First seen · 194 lines · 82 tokens per session scan A 8dbe10dd5a28
release-checklist is a skill published in the GitHub repository maximhq/bifrost (7,847 stars, last pushed today), licensed Apache-2.0. It adds 82 tokens to every session and 2,507 once invoked, about $0.0004 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.
Other skills, from other repositories
release-management
Tag a commit, publish a GitHub release, and read, correct or withdraw the tags and releases already there.
hmem-release
Pre-publish checklist for hmem: skills synced, version bumped, tests green, nothing forgotten. Use before npm publish or when the user says 'release', 'publish', 'push a release', or 'neue Version'.
new-project
Bootstrap a new product repository for agentic development. Use when starting a new app, empty repo, greenfield project, or when the user asks to stand up the factory, the start loop, or what to install before the first feature.
github
GitHub via gh CLI: PRs, issues, reviews, repos, auth.
amazon aurora dsql
Deprecated compatibility redirect for Aurora DSQL guidance. Use when a request concerns DSQL, Aurora DSQL, distributed SQL, DSQL schemas, migrations, queries, authentication, performance, or application development.
goal-release
Cut a release end to end: use the draft-release skill to open the release PR and draft GitHub release, wait for CI to turn green, run the merge-pr skill to merge the release PR, then update the Homebrew formula from the published release assets. Use when the user wants to draft and merge a release in one go, or…