Skip to main content
The gate in gitvow can ask an external program three questions before an agent edits a file: is this file gate-bearing, would this new route be exposed without the expected authorization, does this removed route have callers. This provider answers them from a fact store: a SQLite database of facts derived from your repositories by static analysis, describing routes, their gating, and the calls between services.

What it answers

Every answer carries the store’s age, so a stale store is visible in the message the agent sees.

Why a store rather than live analysis

Static analysis of an estate takes minutes to hours and needs the source of every service. The gate has a fraction of a second and sees one repository. Building the store is a batch job; answering from it is a lookup. The store page describes the schema and how to keep it fresh.

Honest limits

The provider knows what the store knows. A route added since the store was built is “new” to it; a caller added since is invisible. It resolves class-level path prefixes only when the file already has recorded routes. It answers unknown rather than guessing, and gitvow treats unknown as no evidence.