M82 LABS — EARLY ACCESS

Self-healing API integrations: your vendors changed, and the fix is already open.

m82 Labs watches the APIs you depend on, detects the breaking changes and deprecations, finds the call sites they reach, and opens a pull request carrying the evidence. What a self-healing API integration is →

VENDOR API CHANGES — FOUND · CONFIRMED · FIXED — 

THE PIPELINE

The pipeline

Five steps, and the second one is the product. Nothing reaches your repositories until the change has been confirmed against the vendor’s own spec.

  1. 01

    Detect

    Every watched vendor’s spec and changelog is polled and stored as a snapshot. A new snapshot is diffed against the last one, and the difference is what starts everything.

    Poll · Snapshot

  2. 02

    Confirm

    An announcement is a claim. A spec snapshot or a probe of the live API decides whether the change actually happened — never the wording of a blog post.

    Spec probe · Live API

  3. 03

    Match

    Call sites are found across your repositories and checked against the version you are pinned to. If the change cannot reach your code, nothing else happens.

    Call sites · Pins

  4. 04

    Fix

    An agent edits files in a fresh clone. It holds no credentials, reaches no network, and its licence to edit is bounded by the one change it was sent for.

    Fresh clone · Sandboxed

  5. 05

    Verify

    m82 Labs runs your tests, checks what was touched against what was allowed, and opens a pull request carrying all of it.

    Tests · Review

WHAT LANDS IN YOUR REPO

What lands in your repo

A pull request that argues for itself.

PULL REQUESTacme/payments
Vendor
Stripe
Change
Charges.source removed
Confirmed by
spec snapshot 2026-06-25
Reach
3 of 4 repositories
  • acme/payments
  • acme/jobs
  • acme/legacy
  • acme/docs

billing/charges.py:84

- charge = stripe.Charge.create(amount=amount, source=token)+ charge = stripe.Charge.create(amount=amount, payment_method=token)
baseline126 passed2 failedafter fix128 passed0 failed

jobs/sync.py:210 passes a token from a config value I could not resolve. The replacement is correct if that value is a payment method id. Worth a look.

BOUNDARIES

Boundaries

What m82 Labs will not do.

  • Never merges

    No auto-merge flag and no high-confidence bypass. Every fix waits for a person, every time.

  • Agent holds no credentials

    The agent process can only edit files in a directory. git, tokens, network and merge decisions remain outside.

  • Never touches workflows, secrets or lockfiles

    CI configuration, .env files and the git directory are off limits.

  • Never opens a PR on opinion

    Only an artifact decides whether it happened, and a judgement with nothing observed behind it opens nothing.

VENDORS WATCHED

Vendors watched

  • Stripe

    clean spec — teaches false positives

    The claim is checked against the snapshot, so a heads-up never opens a pull request on its own.

  • OpenAI

    high churn — model deprecations

    Where the spec is quiet about a deprecation, the live API is asked directly before a line is written.

  • Slack

    stale spec — forces the prose path

    The change is read out of prose first, then confirmed against what the API actually answers.

  • Clerk

    dated versions — pinned callers

    Three maintained specs, read as YAML and stored as JSON; a change lands in a dated version and a repo pinned before it is left alone.

  • Firebase Authentication

    not OpenAPI — a Discovery document

    Google's own description of the API is diffed the same way, down to the field, with nothing invented to make it fit.

  • Anthropic

    no spec at all — the SDK is the artifact

    It publishes no machine-readable spec, so the generated client is read instead — and the dated retirement table is what gives you sixty days rather than a broken build.

  • Coming soon

    an open slot — not a roadmap

    The next vendor is decided by what teams actually ask for. Tell us which one you need.

PRICING

Pricing

Plans that scale with your team.

Solo

$39/month

Repositories monitored
2
Pull requests per day
3
Concurrent runs
1
Evidence for every change
Included

FEATURED

Pro

$129/month

Repositories monitored
8
Pull requests per day
5
Concurrent runs
2
Evidence for every change
Included

Max

$399/month

Repositories monitored
30
Pull requests per day
10
Concurrent runs
5
Evidence for every change
Included

EARLY ACCESS

Find out what your repos are already behind on.

Connect a repository and m82 Labs shows you every vendor change that reaches it — including the ones that do not.

One email when it opens. No newsletter, no sharing.

Diagram: the vendor APIs you use feed an engine that opens a single pull request, Replace removed Charges.source with payment_method”, in your repositories acme/payments, acme/jobs and acme/legacy. How it works describes the same run in full.