Skip to main content

bigfix-relevance-analyzer

A python module for working with BigFix Relevance generically. Extract, Analyze, etc.

This is a library first: it is meant to be depended on by other projects (pre-commit hooks, besapi, MCP servers) rather than run directly.

  • No dependencies outside the standard library. (Not "pure Python" - the stdlib XML modules are backed by pyexpat, which is C - but it ships with CPython and PyPy, so there are no wheels to build and no platform matrix.)
  • It logs, it never prints. Diagnostics go to the bigfix_relevance_analyzer logger, which gets a NullHandler and nothing else; the library never calls basicConfig or touches your handlers or levels. Nothing is written to stdout, so it is safe to import inside a stdio MCP server, where stray output would corrupt the JSON-RPC stream.

Origin

This project starts from jgstew/pre-commit-bigfix#13, which is the design document for the package: why relevance analysis belongs in a standalone library rather than inside the pre-commit hooks that consume it, what the first milestone covers (a relevance extractor and a heuristic complexity scorer), and the reasoning behind the naming, the dependency choices, and the roadmap. That issue and its comments are the reference for decisions made here; read it before making a structural change.

Roadmap: Python now, possibly Rust later

The short-term goal is pure Python - it keeps iteration fast while the hard part is still unsolved. Relevance has no published grammar, so a real parser means reverse-engineering one from the console, the docs, and real content; that research is the long pole, and Python is the cheapest place to do it.

The parser now exists: a hand-rolled Pratt parser (parser.py) over the existing tokenizer, producing frozen AST nodes (nodes.py) with the operator, precedence, and keyword data kept in declarative tables (grammar.py). The primary asset is the shared corpus of input to expected S-expression parse trees in tests/corpus/*.rlvcorpus - a port is proven equivalent by making the same corpus pass. parse_relevance raises a positioned ParseError; try_parse_relevance never raises, which is the conservative "unknown, skip" interface for scorers and hooks - including for an expression nested deeper than MAX_PARSE_DEPTH, since parsing recurses and the alternative is a RecursionError escaping an interface whose whole promise is that nothing escapes it. Every relevance site in the example corpus currently parses; grammar decisions that have not been spot-checked against a real evaluator are tagged [unverified] in their corpus record titles. Not done yet, deliberately: type-directed disambiguation, rebasing the complexity scorer onto the AST, and error-recovery nodes - the last of these tracked in #10 with the rest of the editor-surface work, since a partial AST has no consumer until there is an editor to draw it.

The node set follows the engine's own, so that later analysis is a translation rather than a mapping exercise. Three constructs the engine gives dedicated nodes are dedicated here too rather than modelled generically - | is Bar, not a binary operator, because it is error fallback and has no row in the operator table; item 0 of (...) is ItemOf, whose index is 0-based and must be an integer literal; and number of x is NumberOf, the sibling of the Exists node that already existed. Numerals carry the engine's magnitude classification (NumberKind) as a derived property rather than as three separate node classes, which keeps the literal verbatim and the corpus stable.

Recognising item 0 of (...) without also swallowing item "foo" of folder "c" is the one place this needs care: item <string> of <folder> is a real inspector, and telling the two apart in general needs the object's type. Only an integer-literal index is specialised, on the same positive-evidence-only rule the rest of the package follows.

The long-term goal may be to translate the core to Rust, exposed as PyO3 wheels for Python consumers and as WebAssembly for a VS Code extension. That is the honest end-state for "one implementation, every consumer": today a Python package can serve pre-commit hooks, besapi, and MCP servers, but it cannot serve an editor. Rust would let the same grammar back both without maintaining two implementations that drift.

Deliberately not started yet: porting during the grammar-research phase would slow the part that is actually hard. Keeping the grammar in declarative tables and the corpus separate from the parser is what makes a later port cheap and provably equivalent - the same corpus has to pass either way. (A tree-sitter grammar was also considered and deferred; it fights relevance's keyword-versus-identifier ambiguity, since relevance has no reserved words and multi-word inspector names.)

Analysing one statement

Everything below can be run at once. analyze_relevance classifies the dialect, lexes, parses, type-checks, resolves every name against the inspector tables, binds each it, generates breakdown probes and scores complexity, and returns the results together as a frozen RelevanceAnalysis.

from bigfix_relevance_analyzer import analyze_relevance

report = analyze_relevance(r'exists file "C:\foo.txt" whose (size of it > 100)')

report.dialect  # Dialect.CLIENT  (report.dialect_assumed says if it was a guess)
report.parsed  # True; report.parse_error is None
report.sexpr  # '(exists (whose (ref "file" ...'
report.mermaid  # 'flowchart TD\n    n0{{"exists"}}\n    n1{"whose"}\n...'
report.check.value.types  # frozenset({'boolean'})
report.platforms  # frozenset({'windows', 'macos', 'debian', 'rhel', 'ubuntu'})
report.unknown_references  # () - every name resolved
report.unbound_its  # () - the `it` is bound by the `whose`
report.complexity.score  # 22.0
report.levels  # breakdown probe text, one per measurable level

Pass the dialect extraction already worked out rather than having it guessed again from a fragment, and platform to narrow client lookups to one platform: analyze_relevance(site.text, site.dialect, platform="windows").

classify_relevance_dialect runs on raw text before parsing and is deliberately blind to common English words like file - too collision-prone in unparsed prose to trust, per its own docstring. Once the statement has parsed, report.resolved_dialect fills that gap from the other direction: the intersection, across every resolved Reference, of the dialects its table rows are actually defined in. files of folder "C:\Windows" classifies as None (no text marker fires) but resolves as Dialect.CLIENT, because files is a client-only inspector - real evidence a text classifier can never use. report.dialect_assumed checks both: false the moment either one, or an explicit dialect argument, settles on one specific dialect.

report.mermaid (nodes.to_mermaid) renders the same tree as a Mermaid flowchart instead of an S-expression - a real graph built by walking the parsed structure, not a 1:1 rendering of every node. to_sexpr already is that, in text; a diagram's job is to stay legible instead, so three things fold without losing information: an of chain becomes a chain of --"of"--> edges rather than a box per link (Of is right-associative, so it never branches - except an explicit (a of b) of c, which keeps its own of box, since collapsing it would be ambiguous with the un-parenthesized form); a Reference's literal index folds into its own label (key 0, firsts "\Sites\"); an all-literal tuple/collection folds to one box. What used to be a ref/str/num label prefix is a node shape instead - a rectangle is a name, a stadium a literal, a hexagon an operator, a rhombus a branch point (if, whose). On a real 49-node statement this took the diagram to 24 boxes. Arrows point the way evaluation actually flows, not the way the tree nests - an object into the property read off it, a condition into if - so a long chain's true starting point (the innermost object) lands at the top, with the final result at the bottom; that is what makes TD read top-to-bottom as a flowchart instead of upside down. Following evaluation is also why an object routes past a whose to the collection it filters: files whose (P) of folders nests as Of(Whose(files, P), folders), but nothing about the folders flows into the filter - the folders yield their files, and only then does P reduce them - so it draws as folders --of--> files --collection--> whose, with the reduced set flowing onward. The CLI embeds it as a fenced ```mermaid block, which GitHub, VS Code, and most Markdown viewers render inline.

Analysis never raises on bad relevance. A statement that does not parse comes back with parse_error set, parsed false, and the tree-dependent fields empty; the dialect, the token stream with its error tokens positioned, and the complexity metrics - which are counted lexically - are still there. That is the same conservative contract as try_parse_relevance, for the same reason: the callers this exists for are handed half-written statements constantly.

report.to_dict() renders the whole thing as JSON-serializable plain data, for consumers across a wire.

From the command line

python -m bigfix_relevance_analyzer 'exists file "C:\foo.txt" whose (size of it > 100)'

The default output is Markdown, and compact: the statement, a summary table, and - only when lint.py's rules found something worth flagging (a parse error, an unbound it, a type error, an unknown inspector, or complexity / evaluation cost past its default ceiling) - an Issues section, one grep-able line per finding, the same wording --check prints. A clean statement's report ends after the summary; there is nothing to say about something that isn't wrong. --verbose adds one heading per further analysis (Lexing, Parse tree, Platforms, Inspectors, it bindings, Breakdown probes, Complexity), with GitHub-flavored tables for the tabular sections and fenced code blocks for the statement source, the S-expression, and each breakdown probe - paste it straight into an issue or a PR comment. The S-expression is always there in verbose mode; the Mermaid flowchart is additionally behind --mermaid (which implies --verbose, since the parse tree is the only place it renders) in both output modes - Markdown and --json's to_dict() (whose own mermaid parameter defaults to off the same way) - since it costs a line per box and per edge and on a real statement outweighs the rest of the report combined. --json always includes everything, verbose or not, plus the same findings under "findings". --dialect client|session forces the dialect and --platform windows narrows the lookups; with no argument the statement is read from stdin. The exit status is 1 when the statement does not parse, so a shell check can use it. This is the only part of the package that writes to stdout - importing the library still prints nothing.

When the argument is a path to a file that actually exists, it is run through extract_relevance_from_file first, and every relevance site found is analysed and reported in turn - each against the dialect extraction already determined for it, so a .bes file's <Relevance> and its <Description> HTML are each checked as what they really are, not both guessed at once:

python -m bigfix_relevance_analyzer MyFixlet.bes

Anything that is not a real, existing path - including a typo'd relevance statement that happens to contain a / - is analysed directly as relevance text; only an actual filesystem hit switches to extraction. --dialect still overrides every site when passed. A file with no relevance in it reports that and exits 0; the exit status otherwise reflects whether every site parsed.

Extracting relevance

extract_relevance_from_file finds every relevance statement in a file and reports where each came from and which dialect it is written in:

from bigfix_relevance_analyzer import extract_relevance_from_file

for site in extract_relevance_from_file("MyFixlet.bes"):
    print(f"{site.line}: [{site.dialect.value}] {site.kind} - {site.text}")

Each result is a frozen RelevanceSite with kind, text, line (1-based, in the file), context (a short label for messages), and the dialect fields described under Which dialect a statement is in.

File type What is extracted
.bes, .bes.xml <Relevance>, <SuccessCriteria Option="CustomRelevance">, analysis <Property> bodies, {...} substitutions in Windows-Shell <ActionScript>, and session relevance in <Description> HTML
.ojo, .besrpt, .beswrpt, .webreport <?Relevance ?> substitutions and JavaScript Relevance(...) / EvaluateRelevance(...) calls
.html, .htm the same, read as a ClientUI dashboard (see below)
.bsr, .rel the whole file as one statement
.md each fenced code block tagged ```relevance, ```client_relevance, or ```session_relevance as one statement -- untagged fences and other languages (```python, ```bash, ...) are skipped

Lower-level entry points (extract_relevance_from_bes_xml, extract_relevance_from_html_text, extract_relevance_from_actionscript, extract_relevance_from_markdown) take content directly, for callers that already have it in hand.

Which dialect a statement is in

Dialect is CLIENT, SESSION, UNCERTAIN or BOTH. Two independent opinions decide it, and every RelevanceSite keeps both rather than collapsing them:

Field Meaning
context_dialect What the mechanism said: which element, of which kind of file. UNCERTAIN when the mechanism settles nothing.
content_dialect What classify_relevance_dialect made of the inspectors used in the statement. None means it had no opinion.
dialect The resolved verdict: definite context wins, otherwise content, otherwise UNCERTAIN.
dialect_conflict True when context and content each reached a definite, different dialect.

Definite context wins because it is a fact about which engine will evaluate the statement, not an inference. Content fills in the gaps, and a conflict between the two is surfaced rather than resolved away - session inspectors in a fixlet's <Relevance> is relevance in the wrong place, and it fails on every endpoint that evaluates it. Conflicts are logged at WARNING.

The classifier only ever uses positive evidence: an inspector it does not recognize contributes nothing. New BigFix versions add inspectors to both dialects, so an unfamiliar name is never grounds for typing a statement by elimination or for calling it invalid.

One context case is worth knowing about: relevance in HTML or JavaScript is almost always session relevance, but ClientUI dashboards are HTML rendered by the BES Client on the endpoint and hold client relevance, using the identical <?Relevance ?> syntax. What separates them is the mechanism - a ClientUI cannot evaluate relevance from JavaScript at all. So a static substitution in a .html file is read as client relevance, a JavaScript relevance call is always session relevance, and in a file doing both the mechanism settles nothing for its substitutions, leaving their dialect to the content classifier.

Optional lxml adapter

Extraction uses stdlib expat by default. Projects that already parse BES XML with lxml can hand over their existing tree instead of having it parsed twice:

pip install 'bigfix-relevance-analyzer[lxml]'
from bigfix_relevance_analyzer.extract import extract_relevance_from_lxml_tree

sites = extract_relevance_from_lxml_tree(my_tree)

Both paths report identical line numbers, including for a start tag whose attributes span several lines - a test pins this across the whole example corpus, since an off-by-one there would shift every reported line in a file.

Scoring complexity

analyze_relevance_complexity gives a statement a heuristic score, along with the individual metrics that produced it, so a pre-commit hook can threshold on the number and still say why something was flagged:

from bigfix_relevance_analyzer import analyze_relevance_complexity

result = analyze_relevance_complexity(
    'exists files whose (name of it starts with "bes") of folder "/tmp"'
)
print(result.score, result.whose_clauses, result.max_of_chain)

The score covers two different axes. Readability is the token-shaped part: length, nesting, of chains, whose filters. Evaluation cost is what the statement does to the client's eval loop, which does not follow from size - exists descendants of folder "C:\" is eight tokens and walks an entire disk on every evaluation cycle. costly_inspectors names the heavy families that were charged for, so a warning can point at them:

result = analyze_relevance_complexity('exists descendants of folder "C:\\"')
print(result.evaluation_cost, result.costly_inspectors)
# 12.0 ('folder recursion',)

Those families are deliberately not weighted equally - hashing a file is a different order of expense from reading a few lines out of one - and neither is the same family across dialects, when the underlying inspector isn't either.

Cost is also dialect-scoped, per rule rather than per table, and applying to both dialects does not mean costing the same in both. Session relevance cannot read a file at all, so sha1 of <string> is real work but nowhere near sha1 of <file> on a client - the hashing rule charges each accordingly. wmi exists only on a Windows client and results of <bes fixlet> only on the server, so neither is charged against the other dialect at all. Pass the dialect - the extractor already knows it for every site - to get this scoping:

for site in extract_relevance_from_file("MyFixlet.bes"):
    result = analyze_relevance_complexity(site.text, site.dialect)

Without a dialect, nothing is excluded. The client-side families come from the candidate list in jgstew/besapi's examples/fixlet_add_mime_field.py; every inspector name a rule matches on is checked against the QnA dumps by a test, and so is each rule's declared dialect, so the table stays grounded in what BigFix actually defines. Two things are not grounded that way and say so: the tiers are a judgement call rather than a benchmark, and the session-only rules are a seed rather than a survey - there is no curated equivalent of the besapi list for the server side yet. WEIGHT_EVALUATION_COST turns the whole axis off if a consumer only cares about readability.

Counting runs over the token stream, never over raw text, so a comment mentioning whose or the word and inside a string literal cannot inflate the score. The metrics are heuristics and the weights are deliberately module-level constants (WEIGHT_WHOSE_CLAUSE and friends) so they can be tuned against real content without touching the counting.

The tokenizer

bigfix_relevance_analyzer.tokenizer is the lexer the scorer counts against, and the front end the future parser will sit on. It turns text into a lossless stream of tokens: joining their texts reproduces the input exactly, whitespace and comments included, which is what a formatter or auto-fixer would need later. It never raises - malformed relevance yields error tokens, because content extracted from the wild is regularly truncated or broken and a scorer still has to produce a number for it.

It deliberately does not bind multi-word inspector names; that needs the inspector table below and type-directed disambiguation, both of which are parser work. Keeping this layer table-free makes it total: any input lexes, and the same input always lexes the same way, regardless of which dumps happen to exist.

Linting content

bigfix_relevance_analyzer.lint turns the analyses above into pre-commit-shaped verdicts. Eight of the ten rules are always on: parse failures, an it with nothing to bind to, any other type-check diagnostic, and a path that could not be read at all are always errors; an inspector no dump defines is always a warning. The other two - complexity score and evaluation cost - are also on by default, at a generous built-in ceiling (DEFAULT_MAX_SCORE = 550, DEFAULT_MAX_EVALUATION_COST = 50) chosen to sit well above ordinary content and catch only the genuinely extreme; content that legitimately needs to be this complex or this expensive should raise the ceiling rather than have the rule stay silent about it:

from bigfix_relevance_analyzer import LintConfig, lint_paths

findings = lint_paths(changed_paths, LintConfig())  # built-in ceilings
findings = lint_paths(changed_paths, LintConfig(max_score=800))  # raised for this repo
for finding in findings:
    print(finding)
MyFixlet.bes:41: error [parse-error] col 18: expected ')'
MyTask.bes:88: error [complexity] score 640 > 500 (whose_clauses=9, max_of_chain=7, tokens=340)
MyDashboard.ojo:12: warning [unknown-inspector] no dump defines `bes computer group`

Every rule, its default severity, and what switches it on. This table is generated from lint.RULES, which is also what bigfix-relevance-lint --list-rules prints and what a consumer should join a finding's code against - so a hook, a CI log and an MCP server all explain a finding the same way instead of each inventing a description:

Code Default Fires when Ceiling
complexity error the complexity score is above the ceiling max_score (default 500)
error-token error the statement contains text that could not be lexed always on
evaluation-cost error the evaluation cost is above the ceiling max_evaluation_cost (default 50)
file-error error a path given to the linter does not exist or could not be read always on
max-depth-exceeded error a directory tree was deeper than the walk's limit, so it was not fully scanned always on
parse-error error the statement could not be parsed always on
type-error error the type checker reported a problem beyond an unbound it always on
unbound-it error it is used where there is no context to bind it to always on
non-unique-risk warning a property written singular where more than one value may come back always on
unknown-inspector warning a name no inspector dump defines always on

There is no CLI spelling to disable complexity/evaluation-cost entirely - only to raise their ceiling. A caller that wants a rule off altogether passes None for it through the library API: LintConfig(max_score=None).

The same rules are reachable two other ways: python -m bigfix_relevance_analyzer --check --max-score=800 file1.bes file2.bes for a one-off run, or the bigfix-relevance-lint console script this package installs, which is what a pre-commit hook's entry: calls:

- repo: https://github.com/jgstew/pre-commit-bigfix
  rev: <sha>
  hooks:
    - id: bigfix-relevance-lint

Until that pre-commit hook is published, the least-friction way to lint a content repo is to let uvx fetch and run the console script without installing anything:

uvx --from bigfix-relevance-analyzer bigfix-relevance-lint

That walks the current directory with the default rules; every flag below works the same way after the script name, e.g. uvx --from bigfix-relevance-analyzer bigfix-relevance-lint --max-score=800 path/to/content.

bigfix-relevance-lint adds --error CODE / --warn CODE / --ignore CODE (each repeatable) to override a rule's default severity per repo, and --fail-on-warning for a repo that wants zero tolerance even for an unknown inspector name.

Called with no path arguments at all, either entry point walks the current directory instead of erroring - bigfix-relevance-lint on its own, or --check with nothing after it. This is only for the argument-less case: an explicit path, including ., is never expanded - it's taken literally, the same as any other path, so bigfix-relevance-lint . finds nothing rather than walking (. matches no recognized suffix, same as any other unrecognized file). The walk skips .git, __pycache__, node_modules, dist, build, venv, env, and any other dot-prefixed directory - a fixed list rather than .gitignore-awareness, since honoring .gitignore would mean depending on a git binary and a repository actually being present, and this package stays zero-dependency and works on a bare checkout of content. It also stops after --max-depth directory levels (6 by default) and reports a max-depth-exceeded error for wherever it stopped, rather than silently skipping whatever was deeper - a limit this generous being hit at all is worth a human looking at the tree, not a quiet truncation that would look identical to a clean, fully-scanned run:

bigfix-relevance-lint                    # walk .
bigfix-relevance-lint --max-depth=10     # walk ., 10 levels deep
bigfix-relevance-lint .                  # NOT a walk -- one literal path, "."

Not a rule at any of the three entry points: RelevanceAnalysis.missing_platforms

  • a platform absent from the dumps is not proof it's unsupported there, so it stays a fact to read off the analysis directly rather than a finding this package asserts an opinion about.

Serving this from an MCP server

This package is meant to be wrapped, and more than one server wraps it. What follows is the part that exists so those servers do not each invent their own answer to the same question.

No server ships here, and there is no mcp dependency - not even an optional one. dependencies = [] is the promise this README opens with, and the pre-commit hooks and besapi must not inherit an MCP SDK to get relevance analysis. There are no tool names, descriptions or JSON schemas here either: two servers with different transports, auth models and resource URI schemes need different tool shapes, and a schema baked in here would be either ignored or in the way. What genuinely has to agree between them is the value schema - the key names in a payload, and the words used to explain a finding - and that is what is provided.

Every result type serializes

RelevanceAnalysis.to_dict() was always the wire format. Now every type a public function can hand back has one, with the same conventions: enums become their .value, an unknown fact is null and is never omitted (null means no evidence, which is not false), sets and tuples become sorted lists so a payload is byte-stable and survives a round trip, and positions are line/column (plus offset where the source carries one).

from bigfix_relevance_analyzer import analyze_relevance_to_dict, lint_paths_to_dict, LintConfig

analyze_relevance_to_dict('exists files of folder "/tmp"')  # the full analysis
lint_paths_to_dict(changed_paths, LintConfig(max_score=350))

Finding, RelevanceSite, ParseError, RelevanceComplexity, CheckResult, Probe, Level, ProbeOutcome, Inspector, RelevanceType and Diagnostic all have to_dict(). Inspector and RelevanceType include the decoded dialects and platforms so no consumer parses "client:windows" for itself; Finding nests its site and carries a text key holding the same grep-able line the CLIs print.

json.dumps(payload) works with no default=. There is deliberately no to_json(): the encoder is the server's choice.

Two convenience wrappers only, and both earn it - analyze_relevance_to_dict replaces a two-step every caller would write, and lint_paths_to_dict returns {"findings", "counts", "ok"}, where ok is the same pass/fail verdict both CLIs here exit on. There is no extract_to_dict, because [site.to_dict() for site in sites] has no shared decision in it.

Findings explain themselves once

lint.RULES maps each code to a LintRule with a one-line summary, a rationale, its default_severity, and whether it is gated behind a threshold. DEFAULT_SEVERITIES is derived from it, so the two cannot disagree.

A Finding carries only its code; serve the catalog once and join on it, rather than repeating two sentences of prose on every finding. Both CLIs can print it: python -m bigfix_relevance_analyzer --rules and bigfix-relevance-lint --list-rules (add --json to either).

Finding an inspector you cannot name

lookup() is exact-match: it answers "how do I use files". inspectors.search() answers the question a consumer actually arrives with - "what is this called" - and returns names lookup() can then resolve.

from bigfix_relevance_analyzer import inspectors

inspectors.search("registry keys")  # -> keys of <registry key>, via MatchKind.SIGNATURE
inspectors.search("operating system")  # -> operating system, via MatchKind.FUZZY
inspectors.suggest("registry")  # -> ('registry', 'registries', 'x32 registry')

Six match tiers, strongest first - EXACT, PREFIX, WORDS, SIGNATURE, SUBSTRING, FUZZY - and the tier is on every result as SearchResult.match. That is the useful answer rather than a score: EXACT means don't say "did you mean", FUZZY means say it out loud, and SIGNATURE means "nothing is called that, but this expression reads it". A float could not express any of those, and exposing difflib's ratio would make its internals part of this package's API.

Three things worth knowing:

  • SIGNATURE is why phrases work. registry keys is nobody's name; keys of <registry key> is the answer, and only the signature contains both words. Without that tier the query gets a fuzzy guess (difflib alone answers retry delays).
  • search() knows the engine's spoken operator names, lookup() does not. lookup("mod") is empty - mod lives in Inspector.written_name, not in written_forms() - while search("mod") finds the % rows with name="%", matched="mod". Every result's name is one lookup() resolves; matched is what actually hit.
  • fuzzy=False skips the difflib pass. Precise tiers are sub-millisecond and the fuzzy pass can reach tens, so a caller doing completion rather than correction should turn it off - and then every result is a name that exists.

There is no platform filter, deliberately, though dialect and kind are both there. Absence from the snapshot is never evidence, so filtering on platform would drop candidates on the strength of a gap in the dumps - and in a "did you mean", the way to fail is to hide the right answer. dialect is different in kind: the dumps cover both sides, so proposing bes computers for client relevance is positively wrong rather than merely unobserved.

SearchResult.to_dict() never embeds the rows. lookup("name") is 96 overloads and about 43 KB of JSON for one name, so a 25-result search that inlined them would cost a six-figure token count to answer "did you mean". Instead it emits identifiers plus at most five signatures, with overloads carrying the true count and signatures_omitted accounting for the rest - about 6 KB worst case. Search hands you an identifier; lookup hands you the row.

Turn unknown-inspector warnings into leads with LintConfig(suggest=True): the message gains -- did you mean \registry`?andFinding.suggestions` carries the same names as structure, so a server is not parsing prose. Off by default, because unknown names are common in a repo running newer inspectors than the snapshot - that is the rule's whole rationale - and a few thousand sites would add real latency to a hook for a warning that blocks nothing.

The loop a model runs: analyze_relevance_to_dict -> read unknown_references and types.diagnostics -> suggest() for a typo or search() for a concept -> lookup() on the candidate to see its operands and return_type -> re-analyze. The split matters: a model with only search re-guesses operand types, and one with only lookup cannot recover from a typo.

Search belongs on a tool, not a resource: a resource is addressable by a stable URI with no arguments, and a free-text query served as one is a tool in a resource costume whose result is neither listable nor cacheable. lookup legitimately could be a resource template (inspector://<name>) - stable, cacheable, no ranking - but nothing in the library needs to change for a server to do that. From the command line:

python -m bigfix_relevance_analyzer --search "registry keys"

Language reference resources

bigfix_relevance_analyzer.reference serves three Markdown documents a server can register as MCP resources: dialects (client versus session - serve this first), client-relevance, and session-relevance.

from bigfix_relevance_analyzer import reference

for document in reference.documents():
    register(document.slug, document.title, document.summary, document.read)

reference.client_relevance_reference()  # ~6k tokens
reference.session_relevance_reference(detail=reference.Detail.BRIEF)  # prose only

Each is a hybrid, which is the point: the prose is authored (in docs/reference/*.md, embedded into a module by tools/generate_reference_prose.py because the wheel packages src/ only), while the tables are generated at call time from grammar.py, inspectors.py, COST_RULES and DIAGNOSTICS. So the operator/precedence table, the type sketch, the per-dialect cost table and the type-checker vocabulary cannot drift from the snapshot the analyzer itself uses - and there is no second thing to guard.

documents() returns ReferenceDocuments carrying title and summary because an MCP list_resources needs a name and a description for each resource; a bare -> str would make every server invent those. There is no uri field - that namespace is the server's, and slug is enough to build one from.

Detail.STANDARD is around 6k tokens, Detail.BRIEF around 2.5k, and a test pins a character ceiling so a generated section cannot grow into a manual. The full inspector table is not served: 6,000 rows is a search index, not a reference, so search() and lookup() are how a consumer answers a question about one name - see "Finding an inspector you cannot name" above.

Importing the package does not import reference, and importing reference does not build any document - the prose and table modules are imported inside function bodies and every renderer is cached. A stdio server that never serves a document pays nothing, which is checked by a test that runs in a subprocess.

Try them from the command line:

python -m bigfix_relevance_analyzer --reference session

What it refers to

This section and the two after it come out of jgstew/bigfix-relevance-analyzer#8, which reverse-engineers how the Fixlet Debugger implements it highlighting, its graphical breakdown mode, and its static type checker. The striking result is that the first two are pure AST transforms - neither needs an evaluator embedded here, and both are among the cheapest things on that list rather than the most expensive. That issue is the reference for the behavior described below, including which claims were executed against a real engine and which were not.

resolve_it_bindings takes a parsed tree and reports, for every it in it, which construct supplies its context - the "click it, see its referent" feature, as a pure AST pass with no evaluator involved.

from bigfix_relevance_analyzer import parse_relevance, resolve_it_bindings

src = "files whose (size of it > 1000)"
for binding in resolve_it_bindings(parse_relevance(src)):
    print(src[binding.it.span.start : binding.it.span.end], "->", binding.binder)
# it -> Binder.WHOSE

BigFix's own error message for this is wrong, and it is worth stating plainly because following it produces a resolver that disagrees with the evaluator. The engine prints "It" used outside of "whose" clause., but of introduces a context too: (it, it) of 5 evaluates to 5, 5, and name of it of file "..." gives the file's name. So the rule is that it binds to the nearest enclosing context-introducing construct, of which there are two - whose (...), binding the element being filtered, and of, binding the right-hand operand. if/then/else introduces nothing and passes its enclosing context through, so if true then it else it is an error at the top level. The engine's own internal template says '$token' used without context, which is the accurate wording and the one this package uses.

Order matters in one place worth knowing about: in A of B, the object B is not evaluated in its own context. Only A sees B. Getting that backwards looks right on flat expressions and binds the wrong node on every nested one.

An unbound it is reported, not raised - the entry's context is None. A resolver that stops at the first bad it is no use to an editor colorizing as you type, which is the same reason try_parse_relevance exists.

Per-level object counts

breakdown_probes reproduces the mechanism behind the Fixlet Debugger's graphical breakdown mode: how many objects each level of an expression produced. The debugger does not instrument its evaluator - it synthesizes an ordinary relevance query per level and runs it through the normal engine. That is something this package can do too, since it is string generation over a tree.

So this is generation only: the library emits probe text and the caller evaluates it, against qna.exe, session relevance, the REST clientquery API, or anything else it has. Nothing is added to the dependency list, and the capability stops being Windows-GUI-only.

analyze_relevance runs this for you and returns the levels; the pieces are here for a caller that wants them directly.

from bigfix_relevance_analyzer import breakdown_probes, parse_relevance

src = r'names of files whose (size of it > 1000) of folder "C:\Windows"'
for level in breakdown_probes(src, parse_relevance(src)):
    print(level.label, "->", level.probe.relevance)

Hand the rows back to interpret_count_results. A probe answers once per context object, not once per level, so the result is reconciled positionally against the context objects; a length mismatch is an internal error, and is the condition behind the debugger's own Result counts do not match result number. Three outcomes, and two of them are lossy in ways worth surfacing rather than hiding:

Result Outcome Meaning
N > 0 COUNT the level produced N objects
0 EMPTY_OR_ERROR evaluated fine and produced nothing - or errored in a plural context, which relevance flattens to empty
-1 NOT_EVALUABLE the level could not be evaluated, e.g. a singular reference to a nonexistent object

-1 is also indistinguishable from a legitimately computed -1. Both ambiguities are properties of the probe design rather than something a caller can resolve, so they are named in the API instead of being reported as a confident zero.

Levels are found throughout the expression, not only along its outermost of chain - a chain inside a whose filter, an operator's operand, an if branch or a tuple item is a level too. One inside a filter is measured against the collection before filtering, which is what it means in there: in the example above, size of it is probed against all 25 files rather than the 21 that survive.

Making that work means rewriting each level's context so it stands on its own, since a node's source text is written relative to wherever it sits. Where a sub-expression reaches its context through it, that it is replaced; where it is applied to an object below an of, it is composed back on. Only the second of those is a composition, which is why file "a" inside a filter stays file "a".

A whose level counts what survived its filter, so the number alone says nothing about how selective the filter was. Those levels come back paired: a Level.unfiltered probe measures the same collection without its filter, and comparing the two is what makes selectivity visible. In the example above the pair answers 21 and 25.

There is one detail that is easy to get wrong and fails loudly when you do: the measured expression is rewritten against it rather than copied from the source. For the level files of folder "C:\Windows" the measured text is files of it, because a property without its direct object is not a valid expression - splicing the raw text gets you The operator "files" is not defined.

Diagnostic vocabulary

bigfix_relevance_analyzer.diagnostics is a catalog of the messages BigFix itself produces, as str.format templates. typecheck emits every type-check entry in it - a test fails on any that becomes unreachable - so the checker's output is wording BigFix authors already recognize rather than a second vocabulary to learn. Imported explicitly, like inspectors.

Two vocabularies are kept, because the same broken expression produces different messages depending on which part of BigFix sees it. The runtime collapses everything into "operator not defined"; the debugger's static type checker knows whether it was a property, a cast or an operator, and names the types. Prefer the type-checker forms - each entry records which it is.

The it message above is catalogued as what the runtime says, wrong rule and all, next to the accurate used-without-context. Where the recovered templates are inconsistent with each other they are reproduced as recovered, with the inconsistency noted, rather than tidied up.

The inspector table

bigfix_relevance_analyzer.inspectors is the structured table of what relevance actually defines - properties, casts, binary and unary operators, and the type universe - parsed from the dumps in tests/examples/relevance_inspectors/.

This is a parser prerequisite, not a parser dependent. Relevance has no reserved words and multi-word inspector names, so nothing about the text of logged on users of bes computers says where one name ends and the next begins; resolving that needs a name table, which is what this is.

from bigfix_relevance_analyzer import inspectors

for entry in inspectors.lookup("drives"):
    print(entry.signature, "->", entry.return_type, sorted(entry.platforms))
# drives -> drive ['windows']
# drives -> filesystem ['debian', 'rhel', 'ubuntu']
# drives -> volume ['macos']

Each row keeps the sources that defined it, so dialects and platforms are derived rather than baked in. That is what makes the example above possible: drives genuinely returns a different type per platform family, and collapsing rows into one "client" verdict would have destroyed that. It is imported explicitly rather than from the package root, since most callers only extract.

The table is a snapshot, not a specification. New BigFix versions add inspectors, and the dumps only cover what someone captured - so absence is grounds for a warning at most, never proof that a name is invalid. Only positive evidence should be drawn from it, the same discipline the dialect classifier applies.

src/bigfix_relevance_analyzer/_inspector_data.py is generated; the dumps are the source of truth. Regenerate after adding or editing one:

python tools/generate_inspector_data.py

A pre-commit hook and tests/test_inspector_data.py both fail if the two have drifted. Dump filenames carry their own provenance as {dialect}_relevance_{category}[_{context}].txt, so a newly captured dump is picked up with no code change.

Type checking

bigfix_relevance_analyzer.typecheck types an expression against the inspector table and reports findings in BigFix's own wording. It is imported explicitly, like inspectors. Every construct is typed: literals, casts, operators, aggregation, tuples and conditionals, and the of chains, whose filters and it references that need property resolution.

of and whose introduce the context it refers to, and the object comes first - in A of B, B is typed in the enclosing context and only then becomes the context A is typed in. binding.py states the same rule for the same reason, and a test holds the two together. A context does not hide the world: a global name written inside one still resolves against the world when the context defines nothing by that name, which is why packages ... whose (exists properties whose (...)) types clean.

One mistake produces one finding. A ruled-out value silences the checks it feeds rather than cascading <none> as trimmed string and <none> != <string> behind the property that actually went wrong.

analyze_relevance calls this with an environment built from the dialect and platform it was given; reach for the module directly to control the environment yourself.

from bigfix_relevance_analyzer import Dialect
from bigfix_relevance_analyzer.typecheck import TypeEnvironment, check, resolve_property

env = TypeEnvironment.create(Dialect.CLIENT)
print(check(parse_relevance('1 + "a"'), env).diagnostics[0].message)
# the operator '+' is not defined for the types '<integer> + <string>'

A value's type is a set, because inspectors are overloaded and because the same name resolves differently per platform. Later inspectors narrow it:

drives = resolve_property("drives", None, env)
# {drive, filesystem, volume} on all five platforms
resolve_property("block size", drives.types, env)
# {integer} on debian, rhel, ubuntu - `block size` exists on none of the others

So "where can this run?" falls out of typing rather than needing to be declared. Pass a platform to TypeEnvironment if you know it; leaving it out keeps every platform in play and lets the narrowing report the answer.

types distinguishes None from the empty set deliberately. None means the table said nothing, which - as everywhere in this package - is grounds for a warning at most, never proof. Empty means every candidate was ruled out.

Platform coverage is reported, not enforced

A single statement routinely targets several platforms at once, guarding platform-specific inspectors behind if/then/else so the wrong platform never evaluates the branch that would fail on it. The statement is correct; each branch is correct only somewhere. The example corpus has a fixlet whose then branch is Debian/Ubuntu-only and whose else branch is RHEL-only.

So platform sets intersect along a chain and union across alternatives - if branches, and the two sides of |. An empty platform set is never an error by itself: findings live on the type axis and have to hold on every platform. Treating platforms as a constraint instead would report valid, shipped relevance as broken, which is the worst thing this package could do.

The engine agrees. Its own checker carries at most one branch of an if-statement may have type errors - deliberate tolerance for exactly this idiom, and check implements it: one failing branch is survivable, two is not.

Development

This project uses uv for dependency management and packaging (build backend: hatchling), with a src/ layout.

uv sync                    # create .venv and install project + dev dependencies
uv run pytest              # run tests
uv run ruff check .        # lint
uv run ruff format .       # format
uv run mypy                # type-check

Set up the git hooks once (the extra hook types let uv-sync re-create .venv after a pull or branch switch, and let the pre-push checks below actually run):

uv run pre-commit install --hook-type pre-commit --hook-type pre-push --hook-type post-checkout --hook-type post-merge

A few slower checks (pytest, uv lock --check, uv build --wheel) are deferred to git push rather than every commit, via stages: [pre-push, manual]. Run them by hand with:

uv run pre-commit run --all-files --hook-stage pre-push

The rest of the manual-only hooks (release/build checks, uv audit, pyproject and GitHub Actions schema validation) don't run automatically at all - CI invokes them with --hook-stage manual, which also picks up the pre-push ones above:

uv run pre-commit run --all-files --hook-stage manual

Dependency freshness delay

pyproject.toml sets [tool.uv] exclude-newer = "7 days", so uv lock/uv sync/uv add only consider package versions that were published at least 7 days ago. This is a rolling window (not a fixed date), giving newly published releases a week to be pulled before this project can depend on them. To deliberately bypass this - for example to pull in an urgent security fix - run:

uv lock --exclude-newer=false

Download files

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

Source Distribution

bigfix_relevance_analyzer-1.10.0.tar.gz (747.2 kB view details)

Uploaded Source

Built Distribution

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

bigfix_relevance_analyzer-1.10.0-py3-none-any.whl (270.9 kB view details)

Uploaded Python 3

File details

Details for the file bigfix_relevance_analyzer-1.10.0.tar.gz.

File metadata

  • Download URL: bigfix_relevance_analyzer-1.10.0.tar.gz
  • Upload date:
  • Size: 747.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bigfix_relevance_analyzer-1.10.0.tar.gz
Algorithm Hash digest
SHA256 f7a4b96c66d62b5101e9b6fa312d57f49beb7a11f6cfae0ceae0aec12716aa38
MD5 e563b6426b8b5d2bccbb87d6b0d41f48
BLAKE2b-256 e52a4adcb1dde050514a25ddfd39a0ae43676d71361ef3687ef9b47391e1610c

See more details on using hashes here.

File details

Details for the file bigfix_relevance_analyzer-1.10.0-py3-none-any.whl.

File metadata

  • Download URL: bigfix_relevance_analyzer-1.10.0-py3-none-any.whl
  • Upload date:
  • Size: 270.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bigfix_relevance_analyzer-1.10.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bd16c09ce573e016d72330727a7d2de14999e6ac406770430c535eabd05f5b52
MD5 c3ab762446641981b2839c6697b1e200
BLAKE2b-256 683efd8564bfb3229493825880622ceeead50daa8e37643a4040928e32378c0a

See more details on using hashes here.

Release history Release notifications | RSS feed

1.11.2

2 files

1.11.1

2 files

1.11.0

2 files

1.10.4

2 files

1.10.3

2 files

1.10.2

2 files

1.10.1

2 files

This release

1.10.0 This release

2 files

1.9.5

2 files

1.9.4

2 files

1.9.3

2 files

1.9.2

2 files

1.9.1

2 files

1.9.0

2 files

1.8.3

2 files

1.8.2

2 files

1.8.1

2 files

1.8.0

2 files

1.7.1

2 files

1.7.0

2 files

1.6.0

2 files

1.5.0

2 files

1.4.2

2 files

1.4.1

2 files

1.4.0

2 files

1.3.1

2 files

1.2.2

2 files

1.2.1

2 files

1.2.0

2 files

1.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page