Coverage for src/keel/__init__.py: 100%
1 statements
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-16 18:07 +0000
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-16 18:07 +0000
1"""keel — project-neutral, multi-agent workflow core.
3A fixed *backbone* of ordered steps drives a unit of work (a GitHub issue) from
4backlog to done. Projects never fork the backbone; they customise behaviour with:
6* **config** (``project.yaml`` — per-project *values*), and
7* **extensions** (project-owned *Lego pieces* snapped into named slots, add-only).
9The public, deterministic core lives in pure modules (``config``, ``model``,
10``extensions``, ``findings``, ``gates``); all network/subprocess I/O is kept in
11thin, fail-soft wrappers. See ``docs/proposals/keel-architecture.md``.
12"""
14__version__ = "1.6.5"