← All pipelines

Audit & Verification

sate audit --since

Shipped

Incremental audit: same engine as audit, but scoped to surfaces touched by files changed since a given git revision.

What it does

A flag on the audit pipeline, not a separate command. Reads `git diff <rev>..HEAD --name-only`, intersects with discovered surfaces, and reports the subset. Lets CI run a sub-second audit on PRs instead of the full 50-second scan.

Who runs this

  • CI on every PR — checks only what the PR changed
  • Developers iterating on a feature branch

How to invoke

sate audit --project-root /path/to/laravel-app --since origin/main

Flags

--since <git-rev>

Git revision to compare HEAD against. Anything `git diff` accepts.

What it produces

  • ·Same shape as audit, but scoped

What it does NOT do

  • Does NOT alter the audit verdict per surface — it only filters the surface set
  • Does NOT run if the project is not a git repo (falls back to full audit)

Status

Engine tests

43

Status

Shipped

Category

Audit & Verification

Related pipelines