Lean quality engine
APM-installable agent skills for Lean 4 and Mathlib4 — proof tactics, math domains, review and research workflows, generic tooling.
npx -y skills add r-irbe/proof-skills --skill lean-quality-engineAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
USE FOR: assessing overall Lean 4 project quality across seven dimensions (soundness, faithfulness, completeness, novelty, elegance, integration, documentation); preparing for milestones; orchestrating QA gates that wrap enforcement scripts, council reviews, coverage tracking, and health monitoring. DO NOT USE FOR: running a single enforcement script (use @lean-enforcement); reviewing one proof (use @lean-proof-review); council deliberation itself (use @lean-review-council); writing retros (use @lean-retro-methodology). TRIGGERS: QA, quality gate, milestone check, project health, qa-engine, quality score, QA lifecycle.
SKILL.md
4.8 KB, as published. Nobody here has run it
lean-quality-engine
⚠️ MANDATORY (hot-tier): the soundness and faithfulness gates in §Behavioural rules are hard gates — a failure HALTS the QA lifecycle. Skipping Persist = incomplete.
Routing
- USE FOR: running the seven-dimension quality lifecycle (Q1 soundness, Q2 faithfulness, Q3 completeness, Q4 novelty, Q5 elegance, Q6 integration, Q7 documentation); computing the weighted
Q_score; deciding go/no-go at a milestone. - DO NOT USE FOR: running a single script (delegate to
@lean-enforcement); reviewing one proof (delegate to@lean-proof-review); facilitating a council session (delegate to@lean-review-council). - TRIGGERS: QA, quality gate, milestone check, project health, qa-engine, quality score, QA lifecycle.
Behavioural rules (G-*)
- G-1 (MUST): Q1 (soundness) and Q2 (faithfulness) MUST both pass before any other dimension is scored. [Trace: AC-01]
- G-2 (MUST): A failed hard gate (Q1 or Q2) MUST halt the lifecycle and route to recovery, regardless of other dimension scores. [Trace: AC-02]
- G-3 (MUST): Every dimension score MUST cite the underlying script or review record (no inferred scores). [Trace: AC-03]
- G-4 (SHOULD): Soft gates (Q3, Q6, Q7) SHOULD report gaps but MAY proceed when the owner has accepted the risk in writing. [Trace: AC-04]
- G-5 (MUST NOT): The engine MUST NOT re-implement checks owned by
@lean-enforcement; it MUST call out to that skill. [Trace: AC-05] - G-6 (MUST): The weighted
Q_scoreMUST be persisted to the repository's quality tracker with timestamp, commit, and per-dimension breakdown. [Trace: AC-06] - G-7 (SHOULD): When
Q_scoreregresses ≥ 5 % vs prior milestone, the engine SHOULD escalate before proceeding. [Trace: AC-07] - G-8 (MUST): On any guard failure the skill MUST escalate per §Recovery & STOP. [Trace: AC-08]
Workflow
- Discover [discover] — read prior
Q_score, list active milestone, locate latest enforcement / council / coverage artefacts. - Run hard gates [execute] — invoke
@lean-enforcementfor Q1 (axiom audit, sorry check) and Q2 (faithfulness via doc-requirements traceability). - Halt-check [validate] — if Q1 or Q2 failed, STOP and route to recovery; do NOT proceed to soft gates.
- Run soft gates [execute] — coverage (Q3), novelty (Q4), elegance (Q5), integration (Q6), documentation (Q7) via the appropriate scripts and council snapshots.
- Score [validate] — compute weighted
Q_score; compare to prior milestone; flag regressions ≥ 5 %. - Persist [persist] (MANDATORY) — write the
Q_scorebreakdown to the project tracker, update milestone status, tick the QA checklist. Skipping Persist = incomplete.
Recovery & STOP
- Q1 or Q2 fails → immediate STOP; escalate to human; do NOT compute
Q_score. - Enforcement script crashes ×3 in one lifecycle → STOP, file a bug against
@lean-enforcement. Q_scoreregression ≥ 10 % vs prior milestone → STOP, ask before persisting.- Confidence < 90 % on dimension weighting → STOP, ask.
Handoffs
- Predecessors / successors: see FM
handoffs(grammar from ADR-0080). - Source spec:
specs/lean/quality-engine/requirements.md— every G-rule traces to an AC there. - Related ADRs: ADR-0076, ADR-0080.
- Reference: see
REFERENCE.mdfor the seven-dimension matrix, weights, lifecycle phases, anti-patterns, and reliability-engineering details (original v1 content, preserved verbatim).
Common failure modes
AI agents commonly: score soft gates before hard gates pass; persist a
Q_scorethat includes a failed hard gate; re-implement an enforcement check inline instead of calling@lean-enforcement; skip the regression delta against prior milestone. Full registry: GUARDRAILS.md §Agent failure taxonomy.