diffed
onboarding

Fast path

  1. Pick the project you want to inspect.
  2. Generate an account-owned API key from the app menu.
  3. Send telemetry to https://diffed.ai/api.
  4. Set commit_sha from CI or deploy metadata.

Python

import os
import diffed

diffed.init(
    api_key=os.environ["DIFFED_API_KEY"],
    endpoint="https://diffed.ai/api",
    commit_sha=os.environ.get("GITHUB_SHA") or os.environ.get("DIFFED_COMMIT_SHA"),
)
diffed.instrument_package("myapp")

How hosted lanes work

Keep repo and logs aligned

Repo preview

Best path:

That keeps identity and code access separate, which is cleaner for org approval and safer in prod.

Later