api-gateway: Skill for Claude Code

.claude/skills/review-branch/SKILL.md

review-branch is a skill for Claude Code from membrane/api-gateway. It costs 125 tokens per session (1,919 once invoked), scanned A, original, Apache-2.0.

A review of the current Git branch, which is a separate line of code changes, compared with the master branch, the project’s main line. It produces a report grouped by how serious each issue is.

In plain words
What is it for?
Use it for pre-merge or pre-pull-request reviews. It checks code quality, correctness, refactoring opportunities, and test coverage.
Why use it?
It helps find bugs, regressions, weak tests, and unnecessary complexity before changes are merged. It focuses the review on differences introduced by the branch.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is membrane/api-gateway's own configuration. It tells Claude Code how to work on api-gateway 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 api-gateway configures →

Reuse

Borrowing it

Nothing to install: this file belongs to membrane/api-gateway. 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/membrane/api-gateway/master/.claude/skills/review-branch/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/membrane/api-gateway

Made for: Claude Code.

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 review-branch

README.md
[![agentmods](https://agentmods.dev/badge/skills/membrane/api-gateway/review-branch.svg)](https://agentmods.dev/skills/membrane/api-gateway/review-branch)
Your own site
<a href="https://agentmods.dev/skills/membrane/api-gateway/review-branch"><img src="https://agentmods.dev/badge/skills/membrane/api-gateway/review-branch.svg" alt="Measured on agentmods" height="20"></a>
Per session 125 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,919 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00125 $0.01919
Opus 5 $0.00063 $0.00959
Sonnet 5 $0.00025 $0.00384
Haiku 4.5 $0.00013 $0.00192

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

Security

Grade A, and why

review-branch 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.

.claude/skills/review-branch/SKILL.md · 143 lines

How it starts

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

Review Branch

Review everything that changed on the current branch relative to master and report what needs attention before the branch is merged. The goal is a review a senior engineer on this project would give: focused on real problems, grounded in the actual code, and ranked so the author knows what to fix first.

Scope of the review

Review committed changes on the branch plus any uncommitted working-tree changes, all relative to the merge-base with master. Concretely:

BASE=$(git merge-base HEAD master)
git diff --stat $BASE            # committed + uncommitted, names only
git diff $BASE                   # the full diff to review

git diff $BASE (no --cached, no second ref) compares the working tree against the merge-base, so it already includes both committed and uncommitted changes — which is exactly the scope we want. Don't review changes that are also on master; the merge-base keeps those out.

Untracked (newly created, not yet git add-ed) files are out of scopegit diff does not show them. This is deliberate: review what's in version control. If the author wants a brand new file reviewed, they should git add it first. If git status --porcelain shows untracked files that look relevant to the change, mention them in one line so the author can stage them and re-run — but don't review their contents.

If the branch is master, or there is no diff, say so and stop — there is nothing to review.

How to work

Review in four passes. Don't just walk the diff top to bottom — read enough of the surrounding code to understand what the change is for, then judge it. A diff hunk that looks fine in isolation can be a regression once you see its callers.

  1. Understand the change. Read the diff and the commit messages (git log --oneline $BASE..HEAD). What is this branch trying to do? Hold that intent in mind — most findings are "this doesn't actually achieve the intent" or "this achieves it but breaks something else".

Read the full file on GitHub · 143 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 · 143 lines · 125 tokens per session scan A 733f6e18f3a0

Subscribe to this mod's changes

review-branch is a skill published in the GitHub repository membrane/api-gateway (641 stars, last pushed today), licensed Apache-2.0. It adds 125 tokens to every session and 1,919 once invoked, about $0.0006 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

api-design-patterns

Design robust APIs with RESTful patterns, GraphQL schemas, versioning strategies, and error handling conventions. Supports OpenAPI/Swagger documentation and SDK generation patterns. Triggers on API design, schema definition, endpoint architecture, or developer experience requests.

organvm-iv-taxis/a-i--skills · 54 tokens

construtor-de-api

Construção e documentação de APIs REST e GraphQL: design de endpoints, versionamento, autenticação, tratamento de erros, documentação OpenAPI 3.0 e boas práticas de segurança e performance.

ricneves-ai/flowgrammers-skills · 46 tokens

api-designer

Designs production-grade APIs — REST, GraphQL, gRPC, and AsyncAPI patterns including pagination, versioning, error handling, rate limiting, and API governance. Use when the user asks to design APIs, create endpoints, build an API layer, write OpenAPI specs, or needs help with REST/GraphQL/gRPC service design.

buiphucminhtam/forgewright · 73 tokens

api-design

Design and implement RESTful APIs with proper routing, validation, error handling, and documentation. Use when building new API endpoints, designing API architecture, or improving existing APIs.

asgarovf/locusai · 37 tokens

api-design-first

Design-first API development skill. Generates OpenAPI 3.1 specifications, enforces REST design best practices, validates endpoints, handles versioning, pagination, error formatting, authentication patterns, rate limiting, and idempotency. Activates when users say "design an API", "create OpenAPI spec", "API endpoint"…

JPeetz/agent-skills · 117 tokens

lap

LAP CLI -- compile, search, and manage API specs for AI agents. Use when working with API specifications (OpenAPI, GraphQL, AsyncAPI, Protobuf, Postman), compiling specs to LAP format, searching the LAP registry, generating skills from API specs, or publishing APIs. Commands: init, compile, search, get, skill…

Lap-Platform/LAP · 89 tokens