Skip to main content

Quality enforcement for AI-assisted development — ruff + semgrep + incident-derived rules for Claude Code

Project description

Fettle

fettle (v.) — to trim and clean a rough casting fresh from the mold. "In fine fettle" — in excellent condition.

Quality enforcement for AI-assisted development. Fettle intercepts code mutations made by Claude Code or OpenCode, runs static analysis in real time, and surfaces findings before they reach production — ruff linting, semgrep pattern matching, and incident-derived LLM-antipattern rules layered into a defense model that catches issues at the point of creation rather than in code review.

Status: v1.2.0 — the Independence release: real fettle package namespace, agent abstraction layer with per-agent conformance contracts (Claude Code, OpenCode), one-command fettle init, validated config schema, and CI parity across GitHub, GitLab, and pre-commit — on top of the v1.0 enterprise integration + SWEBOK v4 coverage (SonarQube/Black Duck/Pact adapters, security review, threat modeling, deployment safety, debt quantification, mutation testing, requirements traceability). Next arc: enterprise product plan.

What It Does

Layer Hook What runs
Per-edit lint PostToolUse (Write/Edit) ruff + semgrep on every Python edit
TDD ordering PreToolUse + PostToolUse Test-before-implementation enforcement (v0.9)
Complexity PostToolUse (Write/Edit) Cyclomatic + cognitive per modified function (v0.9)
Lean review PostToolUse (Write/Edit) Over-engineering detection: abstractions, wrappers, large additions (v0.8)
Pre-write gate PreToolUse (Write/Edit) Plan gate, config protection, UX spec gate
MCP trust PreToolUse (Bash) Package install allowlist
Artifact integrity PreToolUse (Bash) Destructive command guard
Doc freshness PostToolUse (Bash) Warns if implementation changed but no docs updated
Bash audit PostToolUse (Bash) Structured event logging, privacy-first (v0.8)
Cross-file Stop Import/contract resolution before response delivery
Coverage gate Stop Diff line + branch coverage from coverage.json (v0.8/v0.9)
Discipline link PostToolUse Injects skill reminders when loop/scope/lean gates fire (v0.8)

Why Fettle

Fettle occupies a gap none of the adjacent tool categories cover: enforcement at the moment AI generates code, not minutes or days later.

Category When it acts What it misses
Linters & SAST (ruff, semgrep, SonarLint) On demand / in editor Not wired into agent sessions; no process enforcement; you configure and run them yourself
Commit hooks (pre-commit, Husky) At commit time Bad code already sits in the working tree; agents iterate dozens of edits per commit
CI quality gates (SonarQube, CodeQL) At push/PR time Feedback arrives after the agent session ended — the context that produced the bug is gone
AI code-review bots At PR time Review comments, not enforcement; nothing stops the pattern from being written again

Fettle hooks the agent's own tool calls (PreToolUse/PostToolUse/Stop), so the finding lands inside the session that caused it, where the agent can still fix it with full context.

The governance model is Human in Control, not Human in the Loop: you set policy once (.fettle.toml, advisory → enforce per gate) and retain full authority over outcomes without approving every step. Gates are automatable, agent-assessable checks — never manual approval meetings. Fail-open design and strict latency budgets mean enforcement never becomes the bottleneck. (The AI-Native Large-Scale Agile Manifesto, arXiv:2605.07717, names exactly this model — Fettle is the assurance layer for it.)

What's genuinely different

  • Incident-derived rules. /fettle:learn turns a real production incident into a semgrep rule with test fixtures and an incident citation. The rules catalog isn't a generic style guide — every LLM-antipattern rule traces to something that actually broke.
  • Noise is a measured budget, not a hope. fettle bench tracks findings-per-KLOC against committed budgets; rules are promoted advisory → enforce (and demoted back) based on evidence via fettle ratchet. A quality tool that doesn't measure its own false-positive rate becomes ignored wallpaper.
  • Process gates, not just pattern matching. TDD ordering, plan-before-edit, diff coverage, complexity ceilings, over-engineering (lean) review, destructive-command guard, and an MCP package supply-chain gate — the engineering discipline around the code, not only the code.
  • One policy, every chokepoint. The same .fettle.toml drives agent hooks, the CLI, pre-commit, CI (GitHub Action + SARIF), and the LSP server. No drift between what the editor warns about and what CI blocks.
  • Fail-open by design. Hooks run under strict latency budgets and never crash or hang an agent session over an environment problem — enforcement degrades visibly (doctor, trace log) instead of breaking your flow.
  • Suppressions with expiry and owner. Every suppression carries a reason, an owner, and an expiry date — expired suppressions resurface as findings instead of rotting silently.

Intelligence Layer (v0.3.0+)

Feature Command Description
Learn /fettle:learn Incident text → LLM-generated semgrep rule + fixtures + citation
Explain /fettle:explain Why did the last hook block? Human-readable trace
Baseline /fettle:baseline Snapshot violations for incremental adoption
Report /fettle:report Effectiveness metrics (pass/violation rates, top violations)

Rules Catalog (semgrep)

Rule Severity Catches
regex-llm-output ERROR Regex-parsing LLM output instead of structured tool use
bare-except-swallow ERROR except: pass swallowing all errors
broad-except-no-reraise ERROR except Exception without re-raise or logging
missing-httpx-timeout ERROR httpx clients without timeouts
sql-fstring ERROR SQL built with f-strings (injection)
health-score-inversion ERROR Health checks returning perfect on no data
orphaned-queue-flag ERROR Queue writes with no verified consumer
datetime-now-pipeline WARNING datetime.now() in pipeline code (breaks backfill)
non-atomic-write-output WARNING Non-atomic writes in pipeline output paths

Plus ruff: BLE001, S110, S608, S701 as errors; SIM*, UP* as warnings.

Installation

# Clone (agent hooks run from the checkout)
git clone https://github.com/MilindGaharwar/fettle ~/projects/fettle
cd ~/projects/fettle

# One command wires everything: repo config, Claude Code plugin symlink,
# OpenCode plugin registration, commit-time guards — idempotent.
python3 fettle/cli.py init --install-tools

# Verify
fettle doctor

fettle init detects which agents are installed and only wires those; add --dry-run to preview. Hooks auto-activate via hooks/hooks.json once the plugin symlink exists. OpenCode details: docs/OPENCODE.md.

The CLI is also on PyPI — the fettle name belongs to an unrelated project, so the package is finefettle (“in fine fettle”); the command is still fettle:

pipx install finefettle
fettle doctor

(Agent hooks require the git checkout — wheels ship the CLI and rules only; fettle init will tell you if a checkout is needed.)

CLI

fettle init [--install-tools] [--dry-run]
fettle check [--all] [--changed] [--json] [--fix] [--baseline]
fettle config --print-effective
fettle config --explain
fettle config --validate
fettle explain [--last N]
fettle baseline create|update
fettle doctor
fettle lsp

fettle check flags:

Flag Effect
--changed Scan only git-changed Python files (staged, unstaged, untracked)
--fix Apply safe ruff autofixes before scanning
--baseline Report only findings not in .fettle-baseline.json
--json Machine-readable output (same exit codes as text mode)
--all Scan the whole tree (default; conflicts with --changed)

Exit codes: 0 no error-severity findings · 1 error findings present · 2 usage or environment error. Identical for text and --json output — safe to gate CI on.

GitHub Actions

Use the composite Action at the same ref as your workflow:

- uses: MilindGaharwar/fettle@main
  with:
    mode: advisory

For centralized adoption, call .github/workflows/fettle-reusable.yml; both surfaces support SARIF and pull request annotations. Pin a release tag instead of main for stable CI.

Slash Commands (12)

Command Purpose
/fettle:quality Full project scan
/fettle:preflight Pre-deployment FMEA checklist
/fettle:ops-review Operational readiness review
/fettle:plan-activate Start a plan (required before edits in enforce mode)
/fettle:plan-complete Mark plan done
/fettle:mcp-approve Approve an MCP package
/fettle:mcp-revoke Revoke MCP package trust
/fettle:learn Generate rule from incident
/fettle:explain Explain last hook decision
/fettle:baseline Manage violation baselines
/fettle:report Effectiveness metrics

Configuration

.fettle.toml at project root. Full reference: docs/CONFIG.md.

[gates.lint]
enabled = true
mode = "advisory"   # advisory | soft | enforce

[gates.lean_review]
mode = "advisory"   # silent | advisory — surfaces over-engineering findings (v0.8)

[gates.complexity]
enabled = true
max_cyclomatic = 10
max_cognitive = 15

[gates.coverage]
enabled = false
threshold = 80                  # Line coverage % for changed lines
minimum_branch_percent = 0      # Branch coverage (0 = disabled)

[gates.tdd]
enabled = false
mode = "advisory"               # advisory only in v0.9
accept_preexisting_tests = true

[gates.plan]
enabled = false
threshold = 3                   # Files changed before plan required
risk_paths = []                 # Globs that auto-require plan (e.g. "**/auth/**")
module_threshold = null         # Distinct packages, null = disabled
line_threshold = null           # Added lines, null = disabled

[gates.bash_audit]
enabled = false                 # Privacy-first: opt-in only
capture_command = false         # If true, applies redaction before logging

[gates.advisory]
cooldown_seconds = 300
max_per_turn = 3

[gates.discipline_link]
enabled = true
cooldown_seconds = 300

[severity]
error_rules = ["BLE001", "S110", "S608", "S701"]
warning_prefixes = ["SIM", "UP"]

Architecture

Claude Code Tool Call
    │
    ▼
PreToolUse ──→ dispatcher.py selects checks by event + tool + extension:
             → quality_gate (plan, UX spec)
             → tdd_gate (test-first ordering)
             → config_protect, destructive_guard
             → mcp_trust_gate (Bash only)
    │
    ▼ (tool executes)
    │
PostToolUse ──→ dispatcher.py:
              → post_edit (ruff + semgrep on .py)
              → post_edit_ts, post_edit_go (language-specific)
              → complexity_check (cyclomatic + cognitive)
              → lean_sniffers (over-engineering detection)
              → bash_audit (structured event logging)
              → tdd_gate (records test/impl edits)
              → loop_detect + scope_creep + discipline_link
    │
    ▼
Stop ──→ dispatcher.py:
       → quality_gate (test freshness)
       → stop_quality_gate (imports + cargo check)
       → coverage_gate (line + branch coverage)

All checks route through dispatcher.py (single process, per-check budget, advisory cap). 17 checks registered, ordered by priority, fail-open on error.

Result Taxonomy

Every hook returns one of:

Status Meaning User action
PASS No issues None
VIOLATION Code quality issue Fix the code
TOOL_ERROR ruff/semgrep missing or crashed Run fettle doctor
CONFIG_ERROR Invalid .fettle.toml Fix config
SKIPPED File not in scope None

Key Design Principles

  1. Advisory by default — opinionated gates default off; lint is advisory; every block names its disable key
  2. Fail visible — tool crashes surface as warnings, never as silent passes
  3. Rules carry receipts — every rule has origin + citation; /fettle:learn rules cite their incident
  4. Single config source.fettle.toml, no scattered env vars
  5. No shared global state — per-session state dirs

Extensibility

Check Registry (fettle/dispatcher_registry.py)

Every gate is a CheckSpec (name, events, matcher, budget, run function) in one declarative table; the dispatcher selects and runs applicable checks per hook event under per-check and per-event latency budgets.

Agent Translators (fettle/agents/)

from fettle.agents import detect_agent, normalize
hook_input = normalize(payload, fallback_cwd=os.getcwd())
# Claude Code hook JSON and native OpenCode plugin events both normalize
# to the same event model — conformance-tested per agent (WP-140).

Language Adapters (fettle/adapters/)

Python, TypeScript, Rust, and Go adapters implement a common protocol (get_adapter(extension)); external tools (SonarQube, Black Duck, Pact) follow the IntegrationAdapter protocol with fail-open/fail-closed policy per integration.

Event Model (fettle/event.py)

event = FettleEvent.from_stdin(HookType.POST_TOOL_USE)
# → typed, normalized: event.is_python, event.file_extension, event.repo_root

Result Caching (fettle/cache.py)

Cache key = file content hash + config hash. Skips re-scanning unchanged files.

Testing

cd ~/projects/fettle
.venv/bin/python -m pytest tests/ fettle/tests/ -q

1100+ tests across 120+ test files covering all checks, adapters, agent translators, and infrastructure. All adapter tests use mocked tool outputs — no eslint, biome, tsc, cargo, or semgrep installation required to run the suite.

Roadmap

Version Theme Status
v0.2.0 Core lint gates Shipped
v0.3.0 Process gates + intelligence foundation Shipped
v0.4.0 TS/JS rules, cross-review, SARIF, caching, autofix, checker protocol Shipped
v0.5.0 Adaptive enforcement platform Shipped
v0.6.0 Trust and precision Shipped
v0.7.0 Action, LSP, policy layering, OpenCode adapter Shipped
v0.8.0 Discipline integration (advisory contract, link pilot, budget, audit, coverage) Shipped
v0.9.0 Engineering discipline enforcement (branch coverage, complexity, plan thresholds, TDD) Shipped
v1.0.0 Enterprise integration (security review, threat model, deploy safety, adapters, SWEBOK gaps) Shipped
v1.0.1 Trustworthy core (audit fixes D1–D9, exit-code contract, --version) Shipped
v1.0.2 finefettle on PyPI, Trusted Publishing, commit-time guards Shipped
v1.2.0 Independence: package restructure, agent abstraction, fettle init, config schema In progress

See docs/ROADMAP.md for remaining governance and distribution work.

License

MIT (c) Milind Gaharwar

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

finefettle-1.2.0.tar.gz (311.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

finefettle-1.2.0-py3-none-any.whl (233.4 kB view details)

Uploaded Python 3

File details

Details for the file finefettle-1.2.0.tar.gz.

File metadata

  • Download URL: finefettle-1.2.0.tar.gz
  • Upload date:
  • Size: 311.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for finefettle-1.2.0.tar.gz
Algorithm Hash digest
SHA256 a6eee99d42eb2fe6cd4d799272c81c8970be337e9ea255c95785e003764f12ce
MD5 2d3c7e6afb1d20fc836dba94b4561b39
BLAKE2b-256 aa0061b28c58887c5335a454f8fa0fe4a1550e34fc2abaea73e86ed99a701207

See more details on using hashes here.

Provenance

The following attestation bundles were made for finefettle-1.2.0.tar.gz:

Publisher: release.yml on MilindGaharwar/fettle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file finefettle-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: finefettle-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 233.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for finefettle-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c8fb4775e67dd9a2cbc11b61ddccbec648e87fd2eeb38cad336cba823a517017
MD5 e29ca3e5661d3277228b37781e041e30
BLAKE2b-256 7808c853cf27829a07ea4297dd19ef865445c819cacff1a5d9bccf74dc87f3f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for finefettle-1.2.0-py3-none-any.whl:

Publisher: release.yml on MilindGaharwar/fettle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page