The one that signs commits.
Every change it opens carries a full provenance record: sources cited, versions pinned, CVEs checked against the GH advisory DB, licenses cleared against your project SPDX, and tests passing before the PR opens. On frontend work it goes further than the test suite — it opens the running app in a real browser and clicks through the actual flows, the way a user would, catching what a unit test can’t see. If it can’t verify a claim, it surfaces the gap instead of papering over it.
- Plans visibly before touching the repo.
- Pins every dependency it pulls in.
- Cites the doc for every API call.
- Runs the test suite before opening the PR.
- Drives the running frontend in a real browser — clicks through the actual flows, not just unit tests.
- Checks CVEs against the GH advisory DB.
- Verifies license compatibility against your project SPDX.
- Annotates every claim in the diff with its source.
- Refuses unverifiable changes — surfaces, doesn’t silently fake.