Great Spectations
Checks that quotes of a spec embedded in source-code comments actually say what the spec says -- so when the spec changes, the comments (and the requirement they claim to implement) don't silently drift out of sync.
Originally CLN's check_quotes.py/bolt-coverage.py, hardwired to
BOLTs. greatspectations generalizes the same idea to any spec source
you point it at: BOLTs, BIPs, RFCs, or a single-file spec like
SPECIFICATION.md.
Install
pip install -e .
This installs the greatspectate command (also runnable as
python -m greatspectations).
Quickstart
A comment like:
/* BOLT #11: A writer:
* - MUST set `payment_hash` to the SHA256 of `payment_preimage`.
*/
is checked against your BOLT spec checkout by:
greatspectate check --config specquotes.toml src/invoice.c
greatspectate exits 0 if every quote is found verbatim (modulo whitespace)
in the spec, or 1 and prints file:line:message for anything that
doesn't match.
When a quote fails to match anything, check also looks for spec text
that's merely similar -- the wording probably drifted rather than
vanished -- and if it finds something reasonably close, prints a
gcc-style note: line pointing at it (the same file:line: format
your editor already knows how to jump to, e.g. from Emacs' compile
or Vim's quickfix). From the worked example in examples/ (Rust
misquotes "worst" as "blurst" -- see examples.md):
src/tale.rs:7:cannot find match
01-the-period.md:10: note: closest match (94%): 'It was the best of times, it was the worst of times,'
This is a best-effort hint (stdlib difflib, no network, fully
deterministic) -- it never affects whether a quote passes or fails, and
says nothing if nothing clears a similarity threshold.
specquotes.toml
Each repository that wants quote-checking declares its own
specquotes.toml, naming the spec sources it checks against:
[sources.bolt]
format = "markdown"
dir = "../lightning-rfc"
pattern = "{id:02d}-*.md"
[sources.bip]
format = "mediawiki"
dir = "../bips"
pattern = "bip-{id:04d}.mediawiki"
[sources.cmdata-spec]
format = "markdown"
file = "SPECIFICATION.md"
[sources.rfc]
format = "rfc-text"
dir = "/usr/share/doc/RFC/standard"
pattern = "rfc{id}.txt.gz"
greatspectate doesn't fetch anything -- point dir/file at a checkout or
package you already have (a git clone of bitcoin/bips, apt install doc-rfc-std, or a spec file that lives in your own repo).
Each [sources.NAME] table is:
-
format-- which parser splits the document into sections:markdown-- splits on#-prefixed headers. BOLT files and single-file specs likeSPECIFICATION.mdboth use this.mediawiki-- splits on==Header==lines, as used bybitcoin/bips.rfc-text-- the classic RFC-editor plaintext layout, as shipped by Debian'sdoc-rfc-stdpackage (/usr/share/doc/RFC/<category>/ rfcNNNN.txt.gz). Transparently gunzips.gzfiles, strips page headers/footers and form-feed page breaks so a requirement split across a page boundary still reads as one section, and splits on column-0N./N.N.numbered headers -- while ignoring the table of contents, whose entries have the same shape but end in a right-aligned page number (space- or dot-leader-padded), which a real header never does.doc-rfc-stdsplits RFCs across category subdirectories (standard/,draft-standard/, ...); pointdirat the single category you need, as in the example above. A recursivepatternlike"**/rfc{id}.txt.gz"also works if your RFCs span categories, butdoc-rfc-stdadditionally ships alinks/directory that symlinks every RFC into one flat directory regardless of category, so a recursive pattern matches both the symlink and the real file for the same id andgreatspectaterefuses the ambiguity (glob.globhas no way to exclude a subdirectory by name). If you need multiple categories, glob each one explicitly with a separate[sources.NAME]table instead.
-
dir+pattern-- for a source with one file per id (BOLT, BIP, RFC):patternis a glob template with an{id}placeholder, e.g."{id:02d}-*.md","bip-{id:04d}.mediawiki", or"rfc{id}.txt.gz". -
file-- for a source that's a single fixed document (no id needed), e.g. a spec that lives directly in your repo. -
comment_marker(optional) -- the literal word that opens a quote comment for this source. Defaults to the source name, uppercased (bolt->BOLT,cmdata-spec->CMDATA-SPEC), which is exactly CLN's existing# BOLT #11:convention -- no source comments need to change to adopt this tool for BOLT. -
normative(optional) -- exactly which spec text must be quoted by something, as an alternative to guessing from RFC 2119/8174 keywords (see Coverage below). Meant to be generated once (by an LLM, or by hand for a short document) rather than maintained by feel. For afilesource it's a flat array of places; for adirsource, since each id is a different document, it's a table keyed by id:[sources.cmdata-spec] format = "markdown" file = "SPECIFICATION.md" normative = ["12-15", "20:5-30:10"] [sources.bolt.normative] 11 = ["42-58", "70"]
Each place is 1-indexed and inclusive:
"42"is the whole line;"42:10-20"is columns 10-20 of line 42;"42-50"is lines 42 through 50;"-50"/"42-"are open-ended (start/end of file);"42:10-50:20"is a precise span from column 10 of line 42 through column 20 of line 50. Seenormative.py's module docstring for the full grammar and its edge cases.
Relative dir/file paths are resolved against the directory
containing specquotes.toml, not your current working directory.
Marker syntax
<MARKER>[-<commit>][ #<id>][/<section-hint>]: <quoted text>
-
<MARKER>is a source'scomment_marker. -
-<commit>is CLN's "draft BOLT" convention: the line is only parsed when<commit>is a prefix of one of--include-commit's values (repeatable), letting a branch reference an unmerged spec PR by commit. Ignored otherwise. -
#<id>selects the document for sources withdir+pattern(required there, and disallowed forfilesources). -
/<section-hint>restricts the match to sections whose header contains that text (case-insensitive). Useful when near-identical wording repeats across sections -- e.g.SPECIFICATION.md's "Reader Requirements" and "Writer Requirements" both have a "MUST fail parsing if the length is wrong" bullet, and without a hint a quote could silently match the wrong one:/* CMDATA-SPEC/Reader Requirements: A reader: * - MUST fail parsing if the length is wrong. */
-
The quoted text may use
...as a wildcard, including once at the very start of a quote to mean "must immediately follow the previous quote from this source in this file" (handy for splitting one long requirement across several separately-commented lines of code). -
Continuation lines repeat the marker's
--comment-continueprefix (default#); an inline/single-line comment style also needs--comment-end(e.g. for C:--comment-start='/* ' --comment-continue='*' --comment-end='*/'). -
--comment-asidemarks a prefix for commentary that lives inside a quote block but isn't part of the quote -- a continuation line starting with it is dropped instead of appended, so it's never checked against the spec:/* BOLT #2: A sending node: * - MUST set `funding_satoshis`. * Note: We did not implement this yet. */
with
--comment-aside='* Note:'(adjust the prefix to match whatever--comment-continueyou're using, e.g.'# Note:'for the default#-style comments).
Matching modes
--mode normalized (default) collapses runs of whitespace in both the
quote and the spec before comparing, so line-wrapping differences don't
matter. --mode exact compares the literal, uncollapsed text instead,
for specs where exact byte matching matters.
Coverage
greatspectate check --coverage=FILE ... appends a record for every quote
that matched. greatspectate coverage --coverage=FILE then annotates every
line of the spec document with its coverage status:
greatspectate check --config specquotes.toml --coverage=.coverage src/*.c
greatspectate coverage --config specquotes.toml --coverage=.coverage
Every physical line of every checked document gets one of three statuses:
- covered -- at least one quote's matched text touches this line.
- gap -- nothing quotes this line, but the line is expected to be quoted, so it looks like a requirement nothing implements.
- neutral -- neither: ordinary prose, headers, examples, rationale. Not expected to be quoted, so it's never flagged.
A line is "expected to be quoted" one of two ways:
- If the source's config declares
normativespans for this document (see above), a line is expected exactly when it falls inside one of them. This is the precise option -- but it means someone (typically an LLM, or a human for a short document) had to name the spans up front, and it's the ground truth for that document once configured: it replaces the keyword guess below entirely, rather than adding to it. - Otherwise, it falls back to guessing from an RFC 2119/8174 normative
keyword (
MUST,MUST NOT,SHALL,SHALL NOT,SHOULD,SHOULD NOT,REQUIRED,RECOMMENDED,OPTIONAL,MAY), deliberately case-sensitive: RFC 8174 limits normative force to the all-caps form, which BOLT and most modern RFCs follow, and it's also what keeps this quiet on plain English "must"/"should" in pre-2119 RFCs and most BIPs, neither of which reliably use the convention.
(Either way, status is decided per physical line, not per sentence, so two different requirements hard-wrapped onto the same line can occasionally mask each other -- a deliberate precision/simplicity tradeoff.)
--format text (the default) prints one line per annotated line, with
a 3-character status prefix: *** for a gap, +/++/+++ for a
covered line quoted 1/2/3-or-more times, or three spaces for neutral --
followed by the usual file:line:text:
src/BOLT-11.md:5:A writer:
+ src/BOLT-11.md:6: - MUST set `payment_hash` to the SHA256 of `payment_preimage`.
*** src/BOLT-11.md:7: - MUST set `payment_secret` to a fresh, random value.
--format json emits the same information as {"documents": [{"source", "id", "path", "lines": [{"line", "text", "status", "mentions"}, ...]}, ...], "summary": {"any_uncovered"}}.
--format html --output-dir DIR writes one self-contained HTML page per
document (DIR/{source}-{id}.html, or DIR/{source}.html for
single-file sources) with the same three statuses shown as red/green/
plain, for a human to skim.
Restrict to specific documents with --source NAME[:ID] (repeatable);
by default every (source, id) pair found in the coverage file is
checked. --mode must match whatever mode check used to write the
coverage file, since match offsets are mode-specific. The exit code is
1 if any line anywhere is a gap, 0 otherwise.
CI output
check and greatspectate coverage --format text/json both default to (or
accept) machine-scrapable file:line:message/JSON output; coverage --format html is the human-facing option, meant for local review or
publishing as a build artifact rather than for CI to parse.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file greatspectations-0.2.3.tar.gz.
File metadata
- Download URL: greatspectations-0.2.3.tar.gz
- Upload date:
- Size: 47.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad15b2cde353adfbe9e159c83e724cf6584c62fc18d5b4eddbd5f906d84c5cd4
|
|
| MD5 |
fef4a172402622bc34a860cef246bc34
|
|
| BLAKE2b-256 |
5f3c25700b4de2c63826cef9c1864d116b028d8984dafc3dabc8c08285530329
|
File details
Details for the file greatspectations-0.2.3-py3-none-any.whl.
File metadata
- Download URL: greatspectations-0.2.3-py3-none-any.whl
- Upload date:
- Size: 32.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c49a32959fec1032729352a5d851977cbbe5cd90791479c5c844de5e59835313
|
|
| MD5 |
be628ac50e2d5a05fa0c459d2cc686da
|
|
| BLAKE2b-256 |
32ac4d2e30b0d3d456775a23e6b7cd1e229e34fd5e6ec0c047edf6fb24fad479
|