← ClaudeAtlas

algollisted

Govern code review for a project instead of performing it. Triggers when setting up or running Algol, defining or compiling review policy in .algol/policy.toml, routing a change to the right review engine by policy and undo-cost, reconciling findings from /code-review, ultra, gauntlet, or the deterministic collectors into one record, or recording a review decision with reopens-if conditions. Not a reviewer itself.
btmoriarty/algol · ★ 0 · Code & Development · score 58
Install: claude install-skill btmoriarty/algol
# Algol Govern what gets reviewed and record what was decided. Algol reviews nothing itself. Algol reads a project's versioned review standards, routes each change to the right engine per policy and undo-cost, reconciles every engine's findings into one record, never upgrading a heuristic to verified without notice, and preserves each human decision with the conditions that would reopen it. v0.9.0, local scope. See `docs/DESIGN.md` for the full design and each `references/` file for a component's protocol. ## The pieces - Policy model: versioned, path-scoped standards in `.algol/policy.toml`, compiled into review instructions, scanner rules, routing criteria, and a catalog. `tools/compile_policy.py`, `references/policy-model.md`. - Starter policy + init: `tools/init.py` drops the shipped strong default (`starter-policy.toml`), which routes the high-undo-cost surfaces (auth, migrations, money, public API, infra, CI) out of the box, so a cold first run is useful before any tuning. `references/policy-model.md`. - Evidence collectors: seclint (security) and brevlint (style and brevity), deterministic, emitting structured evidence rows. They are the silent floor: a finding from collectors alone is labeled `floor` and demoted in presentation, never shown as a peer of a real engine's finding. `tools/seclint.py`, `tools/brevlint.py`, `references/collectors.md`. - policy-review: a model-pass harness that checks a change against the project's own standards, not a general bug hunt.