Skip to content

Start here

Four tools,
one pipeline.

CorvidLabs builds a small, composable toolchain for shipping software you can trust, whether a human or an agent wrote it. A change flows through four layers: a contract you can check, a lifecycle that runs the checks, a risk read on the diff, and a signed trust record. This page wires all four together in about ten minutes.

On top of the gate

Then atlas maps it

The four tools gate every change. atlas reads the result and renders it: living coverage badges, an interactive map of specs against code, and a trust ledger that rolls up every repo. The gate enforces; the map makes it visible, to a teammate or an agent, at a glance.

Four steps to a gated repo

From an empty machine to a change that's checked, risk-scored, and recorded.

1

Install the toolchain

Everything ships through the Homebrew tap. fledge and spec-sync are the substrate; augur and attest layer on top.

# one tap, four tools
$ brew tap CorvidLabs/tap
$ brew install fledge spec-sync augur attest
2

Check your machine

fledge doctor is the first command a new contributor runs. It validates the toolchain, the config, and surfaces anything missing.

$ fledge doctor
✓ toolchain healthy
✓ fledge.toml valid · 4 tasks, 1 lane
3

Run the single gate

fledge composes your tasks into a verify lane, including spec-sync's drift check. This is what CI runs on every PR.

$ fledge lanes run verify
✓ fmt-check 120ms
✓ test 18.1s
✓ spec-check 240ms
→ verify passed
4

Score the change, record the trust

augur reads the diff and returns a verdict; pipe it into attest to write a signed, commit-keyed provenance record. CI (or an agent) can then gate on it.

# assess, then attest in one line
$ augur check --range main..HEAD --json \
| attest sign --commit HEAD --reviewer agent:ci --from-augur -
✓ recorded agent:ci on 9f2a1c4e · verdict proceed

Put it in CI

Trust 1 composes lifecycle, contracts, risk, and provenance from one committed policy and one GitHub Action.

# .github/workflows/trust.yml
steps:
  - uses: actions/checkout@v7
    with: { fetch-depth: 0 }
  - uses: CorvidLabs/trust@v1  # lifecycle + contract + risk + provenance

Why it's shaped this way

Deterministic by default

spec-sync and augur reach a verdict with no model call. Same input, same answer: reproducible in CI and in review.

Built for agents and humans

The same gates that fail a human's PR give an autonomous agent a stop condition, and attest leaves an audit trail of what decided what.

Portable, no lock-in

Single binaries, plain files: `*.spec.md`, `fledge.toml`, `.augur.toml`, `.attest.json`, git notes. Nothing to host; it travels with the repo.

Pick a layer and go deeper

Each tool has its own page with concepts, commands, and a quickstart.