Coverage for src/keel/__init__.py: 100%

1 statements  

« prev     ^ index     » next       coverage.py v7.15.4, created at 2026-08-18 12:05 +0000

1"""keel — project-neutral, multi-agent workflow core. 

2 

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: 

5 

6* **config** (``project.yaml`` — per-project *values*), and 

7* **extensions** (project-owned *Lego pieces* snapped into named slots, add-only). 

8 

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""" 

13 

14__version__ = "1.16.0"