Release WCAB 0.28.0 Office Web Add-in case
Browse filesAdd the deterministic Office Web Add-in task-pane auto-show fixture, refresh the manifest and dataset card, and synchronize the v0.28 validation, schema, observation, changelog, and research records.
- CHANGELOG.md +17 -0
- README.md +9 -2
- RESEARCH.md +26 -0
- docs/observations.md +11 -0
- docs/schema.md +30 -0
- docs/validation.md +37 -16
- fixtures/governance/office_web_addin_auto_show_enabled/baseline.xlsx +0 -0
- fixtures/governance/office_web_addin_auto_show_enabled/candidate.xlsx +0 -0
- fixtures/governance/office_web_addin_auto_show_enabled/truth.json +38 -0
- fixtures/manifest.jsonl +1 -0
- manifest.jsonl +1 -0
CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
| 1 |
# Changelog
|
| 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
## 0.27.0 — 2026-08-03
|
| 4 |
|
| 5 |
- Add a deterministic XML Map table-binding case. Its synthetic invoice
|
|
|
|
| 1 |
# Changelog
|
| 2 |
|
| 3 |
+
## 0.28.0 — 2026-08-03
|
| 4 |
+
|
| 5 |
+
- Add a deterministic, relationship-backed Office Web Add-in task-pane case.
|
| 6 |
+
Its synthetic local add-in reference, locked hidden task-pane declaration,
|
| 7 |
+
and ordinary `Inputs!B2 → Model!B2 → Dashboard!B4` formula context remain
|
| 8 |
+
fixed while `Office.AutoShowTaskpaneWithDocument` changes from false to
|
| 9 |
+
true.
|
| 10 |
+
- Add the exact `office_web_addin_auto_show_enabled` fact, a narrow
|
| 11 |
+
raw-OOXML relationship-graph validator, web-extension-part-only package
|
| 12 |
+
isolation check, and corruption regressions. WCAB records a stored request
|
| 13 |
+
only: it does not install, load, execute, or fetch an add-in or manifest,
|
| 14 |
+
and it does not claim that a task pane opens.
|
| 15 |
+
- Extend the optional FormulaFence adapter to require its exact redacted
|
| 16 |
+
`office_web_addins_changed` profile and high-severity `FF028`, while
|
| 17 |
+
WCAB independently establishes the generated local reference, auto-show
|
| 18 |
+
transition, stable workbook context, and package boundary.
|
| 19 |
+
|
| 20 |
## 0.27.0 — 2026-08-03
|
| 21 |
|
| 22 |
- Add a deterministic XML Map table-binding case. Its synthetic invoice
|
README.md
CHANGED
|
@@ -22,7 +22,7 @@ configs:
|
|
| 22 |
# Workbook Change Assurance Benchmark (WCAB)
|
| 23 |
|
| 24 |
WCAB is an open, deterministic benchmark for tools that review changes to
|
| 25 |
-
Excel workbooks. Each of its
|
| 26 |
fixtures, explicit observable change facts, a reference review
|
| 27 |
disposition, documented coverage boundaries, and—in relevant cases—a
|
| 28 |
machine-matchable coverage expectation.
|
|
@@ -81,7 +81,10 @@ Named Sheet View whose alternate list criterion changes while its base
|
|
| 81 |
AutoFilter, cells, formulas, and dashboard dependency stay fixed, a local XML
|
| 82 |
Map whose mapped invoice-table column XPath changes while its map/schema/file
|
| 83 |
binding declarations, single-cell mapping, cells, formulas, and dashboard
|
| 84 |
-
dependency stay fixed, and a
|
|
|
|
|
|
|
|
|
|
| 85 |
multi-workbook
|
| 86 |
portfolio.
|
| 87 |
|
|
@@ -99,6 +102,10 @@ The XML Map case records a stored import/export binding only: it does not
|
|
| 99 |
access a file, validate a schema, import or export XML, materialize data,
|
| 100 |
calculate a result, or claim client behavior.
|
| 101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
## Use
|
| 103 |
|
| 104 |
Download `manifest.jsonl` to enumerate the cases, then retrieve the referenced
|
|
|
|
| 22 |
# Workbook Change Assurance Benchmark (WCAB)
|
| 23 |
|
| 24 |
WCAB is an open, deterministic benchmark for tools that review changes to
|
| 25 |
+
Excel workbooks. Each of its 43 synthetic cases supplies baseline/candidate
|
| 26 |
fixtures, explicit observable change facts, a reference review
|
| 27 |
disposition, documented coverage boundaries, and—in relevant cases—a
|
| 28 |
machine-matchable coverage expectation.
|
|
|
|
| 81 |
AutoFilter, cells, formulas, and dashboard dependency stay fixed, a local XML
|
| 82 |
Map whose mapped invoice-table column XPath changes while its map/schema/file
|
| 83 |
binding declarations, single-cell mapping, cells, formulas, and dashboard
|
| 84 |
+
dependency stay fixed, and a relationship-backed Office Web Add-in task-pane
|
| 85 |
+
declaration whose stored `Office.AutoShowTaskpaneWithDocument` request changes
|
| 86 |
+
from false to true while its synthetic local reference, locked hidden pane,
|
| 87 |
+
ordinary cells, and formula context stay fixed, and a small
|
| 88 |
multi-workbook
|
| 89 |
portfolio.
|
| 90 |
|
|
|
|
| 102 |
access a file, validate a schema, import or export XML, materialize data,
|
| 103 |
calculate a result, or claim client behavior.
|
| 104 |
|
| 105 |
+
The Office Web Add-in case records a stored package property only: it does not
|
| 106 |
+
install, load, execute, or fetch an add-in or manifest, and it does not claim
|
| 107 |
+
that a task pane opens or that an add-in accesses workbook cells.
|
| 108 |
+
|
| 109 |
## Use
|
| 110 |
|
| 111 |
Download `manifest.jsonl` to enumerate the cases, then retrieve the referenced
|
RESEARCH.md
CHANGED
|
@@ -210,6 +210,32 @@ the XPath, and requires that table part to be the sole package change. It
|
|
| 210 |
does not access a file, validate the schema, import or export XML, materialize
|
| 211 |
data, calculate formulas, or claim a client result.
|
| 212 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 213 |
## PivotTable cache refresh requests without a cell edit
|
| 214 |
|
| 215 |
Microsoft documents an option to [refresh PivotTable data when a workbook
|
|
|
|
| 210 |
does not access a file, validate the schema, import or export XML, materialize
|
| 211 |
data, calculate formulas, or claim a client result.
|
| 212 |
|
| 213 |
+
## Office Web Add-in auto-show requests change workbook behavior outside cells
|
| 214 |
+
|
| 215 |
+
Microsoft's [Excel auto-open task-pane guidance](https://learn.microsoft.com/en-us/office/dev/add-ins/excel/pnp-open-in-excel)
|
| 216 |
+
documents the `webextension` and `taskpanes` package parts used to associate
|
| 217 |
+
a workbook with an Office Add-in. Its deployment caveat is important: an
|
| 218 |
+
association is only honored when the referenced add-in is already installed,
|
| 219 |
+
sideloaded, or deployed. The [MS-OWEMXML
|
| 220 |
+
specification](https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-owemxml/4b94ac5d-a8df-44f4-8433-81d43e35a2d7)
|
| 221 |
+
defines the `Office.AutoShowTaskpaneWithDocument` extension property. A
|
| 222 |
+
workbook can therefore acquire a stored request to show an add-in task pane
|
| 223 |
+
without a worksheet-cell diff, and without the package containing an add-in
|
| 224 |
+
manifest or payload.
|
| 225 |
+
|
| 226 |
+
WCAB 0.28 isolates that declaration in one original synthetic package. It has
|
| 227 |
+
one local workbook-to-taskpane-to-web-extension relationship chain, one hidden
|
| 228 |
+
locked task pane, and one synthetic FileSystem store reference. Its
|
| 229 |
+
`Office.AutoShowTaskpaneWithDocument` value alone moves from false to true;
|
| 230 |
+
the reference, IDs, task-pane layout, ordinary cells, calculation properties,
|
| 231 |
+
and `Inputs!B2 → Model!B2 → Dashboard!B4` formula context remain unchanged.
|
| 232 |
+
The validator follows only local package relationships, compares the
|
| 233 |
+
web-extension XML after erasing that value, and requires that part to be the
|
| 234 |
+
sole package change. The fixture has no manifest payload or external
|
| 235 |
+
relationship. It does not install, load, execute, or fetch an add-in or
|
| 236 |
+
manifest, and it does not claim that any client opens a task pane or that the
|
| 237 |
+
add-in accesses workbook cells.
|
| 238 |
+
|
| 239 |
## PivotTable cache refresh requests without a cell edit
|
| 240 |
|
| 241 |
Microsoft documents an option to [refresh PivotTable data when a workbook
|
docs/observations.md
CHANGED
|
@@ -346,6 +346,17 @@ cell values. WCAB's raw validator independently establishes the synthetic
|
|
| 346 |
formulas, direct dashboard edge, and table-part-only package change. Neither
|
| 347 |
report accesses a file, imports or exports XML, materializes data, or infers
|
| 348 |
a result. The adapter
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 349 |
leaves `review`
|
| 350 |
as `null`: FormulaFence surfaces evidence but does not impose WCAB's reference
|
| 351 |
policy as a universal approval decision. Any intentionally unmapped fact or coverage expectation
|
|
|
|
| 346 |
formulas, direct dashboard edge, and table-part-only package change. Neither
|
| 347 |
report accesses a file, imports or exports XML, materializes data, or infers
|
| 348 |
a result. The adapter
|
| 349 |
+
requires one exact `office_web_addins_changed` record and `FF028` for the
|
| 350 |
+
Office Web Add-in case. FormulaFence's redacted profile must retain one
|
| 351 |
+
declared task-pane part, task pane, web-extension part, and store reference;
|
| 352 |
+
one locked hidden task pane; no bindings, snapshots, external relationships,
|
| 353 |
+
in-content references, or unrecognized parts; and an auto-show count from
|
| 354 |
+
zero to one. It does not expose add-in IDs, the store name, or the property
|
| 355 |
+
value. WCAB's raw validator independently establishes the generated local
|
| 356 |
+
relationship graph, false-to-true property transition, stable ordinary
|
| 357 |
+
workbook context, and web-extension-part-only boundary. Neither report
|
| 358 |
+
installs, loads, executes, or fetches an add-in or manifest, or claims that a
|
| 359 |
+
task pane opens. The adapter
|
| 360 |
leaves `review`
|
| 361 |
as `null`: FormulaFence surfaces evidence but does not impose WCAB's reference
|
| 362 |
policy as a universal approval decision. Any intentionally unmapped fact or coverage expectation
|
docs/schema.md
CHANGED
|
@@ -46,6 +46,10 @@ formulas, and every package member except its Named Sheet View part.
|
|
| 46 |
WCAB 0.27 adds a relationship-backed XML Map table-column XPath transition
|
| 47 |
with an unchanged map/schema/file-binding declaration, single-cell mapping,
|
| 48 |
cells, formulas, and every package member except its table part.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
Version 2 remains
|
| 50 |
available in the immutable v0.2.0 and v0.3.0 releases.
|
| 51 |
|
|
@@ -89,6 +93,7 @@ Facts are observed directly from the fixture files by `wcab validate`.
|
|
| 89 |
| `auto_filter_criteria_changed` | `sheet`, `filter_ref`, `filter_column_id`, `baseline_filter_value`, `candidate_filter_value`, `subtotal_cell`, `subtotal_formula`, `dashboard_sheet`, `dashboard_cell`, `dashboard_formula` | One raw worksheet AutoFilter list criterion changes while its filter shell, formulas, direct dependency edge, and every package member except the report worksheet remain unchanged. The validator does not apply the filter or calculate a result. |
|
| 90 |
| `named_sheet_view_filter_criterion_changed` | `sheet`, `view_member`, `base_filter_ref`, `filter_column_id`, `baseline_filter_value`, `candidate_filter_value`, `subtotal_cell`, `subtotal_formula`, `dashboard_sheet`, `dashboard_cell`, `dashboard_formula` | One relationship-backed Named Sheet View list criterion changes while its worksheet AutoFilter binding, formulas, direct dependency edge, and every package member except its Named Sheet View part remain unchanged. The validator does not activate, render, or apply the view, calculate a subtotal, or infer visible rows. |
|
| 91 |
| `xml_map_table_column_xpath_retargeted` | `sheet`, `table_member`, `table_name`, `table_ref`, `mapped_column_id`, `mapped_column_name`, `map_member`, `map_id`, `schema_id`, `connection_id`, `baseline_xpath`, `candidate_xpath`, `single_cell_member`, `single_cell`, `single_cell_xpath`, `total_cell`, `total_formula`, `dashboard_sheet`, `dashboard_cell`, `dashboard_formula` | One relationship-backed XML Map table-column binding changes its raw XPath while map/schema/file-binding declarations, a sheet-level single-cell mapping, table cells, formulas, calculation properties, and every package member except its table part remain unchanged. The validator does not access a file, validate a schema, import/export XML, materialize data, calculate, or infer a client result. |
|
|
|
|
| 92 |
| `sheet_visibility_changed` | `sheet`, `baseline_state`, `candidate_state` | The stored sheet state changes. |
|
| 93 |
| `formula_cell_unlocked` | `sheet`, `cell` | A formula cell is explicitly unlocked while its sheet remains protected. |
|
| 94 |
| `workbook_structure_lock_removed` | `baseline_lock_structure`, `candidate_lock_structure`, `hidden_sheet`, `hidden_sheet_state`, `formula_sheet`, `formula_cell`, `formula` | Raw `workbookProtection/@lockStructure` changes exactly from `true` to `false` while the declared hidden-sheet state, formula, calculation properties, and every package member except `xl/workbook.xml` remain unchanged. The validator does not test a password, encryption, authorization, or client behavior. |
|
|
@@ -444,6 +449,31 @@ and requires `xl/tables/table1.xml` to be the sole differing package member.
|
|
| 444 |
It does not access a file, validate the schema, import/export XML, materialize
|
| 445 |
data, calculate a result, or claim a client outcome.
|
| 446 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 447 |
## DrawingML chart-series source references
|
| 448 |
|
| 449 |
Microsoft's [series-editing guidance](https://support.microsoft.com/en-US/Excel/rename-a-data-series)
|
|
|
|
| 46 |
WCAB 0.27 adds a relationship-backed XML Map table-column XPath transition
|
| 47 |
with an unchanged map/schema/file-binding declaration, single-cell mapping,
|
| 48 |
cells, formulas, and every package member except its table part.
|
| 49 |
+
WCAB 0.28 adds a relationship-backed Office Web Add-in task-pane auto-show
|
| 50 |
+
property transition with an unchanged synthetic local reference, task-pane
|
| 51 |
+
layout, cells, formulas, and every package member except its web-extension
|
| 52 |
+
part.
|
| 53 |
Version 2 remains
|
| 54 |
available in the immutable v0.2.0 and v0.3.0 releases.
|
| 55 |
|
|
|
|
| 93 |
| `auto_filter_criteria_changed` | `sheet`, `filter_ref`, `filter_column_id`, `baseline_filter_value`, `candidate_filter_value`, `subtotal_cell`, `subtotal_formula`, `dashboard_sheet`, `dashboard_cell`, `dashboard_formula` | One raw worksheet AutoFilter list criterion changes while its filter shell, formulas, direct dependency edge, and every package member except the report worksheet remain unchanged. The validator does not apply the filter or calculate a result. |
|
| 94 |
| `named_sheet_view_filter_criterion_changed` | `sheet`, `view_member`, `base_filter_ref`, `filter_column_id`, `baseline_filter_value`, `candidate_filter_value`, `subtotal_cell`, `subtotal_formula`, `dashboard_sheet`, `dashboard_cell`, `dashboard_formula` | One relationship-backed Named Sheet View list criterion changes while its worksheet AutoFilter binding, formulas, direct dependency edge, and every package member except its Named Sheet View part remain unchanged. The validator does not activate, render, or apply the view, calculate a subtotal, or infer visible rows. |
|
| 95 |
| `xml_map_table_column_xpath_retargeted` | `sheet`, `table_member`, `table_name`, `table_ref`, `mapped_column_id`, `mapped_column_name`, `map_member`, `map_id`, `schema_id`, `connection_id`, `baseline_xpath`, `candidate_xpath`, `single_cell_member`, `single_cell`, `single_cell_xpath`, `total_cell`, `total_formula`, `dashboard_sheet`, `dashboard_cell`, `dashboard_formula` | One relationship-backed XML Map table-column binding changes its raw XPath while map/schema/file-binding declarations, a sheet-level single-cell mapping, table cells, formulas, calculation properties, and every package member except its table part remain unchanged. The validator does not access a file, validate a schema, import/export XML, materialize data, calculate, or infer a client result. |
|
| 96 |
+
| `office_web_addin_auto_show_enabled` | `taskpane_member`, `web_extension_member`, `addin_id`, `reference_id`, `reference_version`, `store`, `store_type`, `baseline_auto_show`, `candidate_auto_show`, `input_sheet`, `input_cell`, `input_value`, `model_sheet`, `model_cell`, `model_formula`, `dashboard_sheet`, `dashboard_cell`, `dashboard_formula` | One workbook-to-taskpane-to-web-extension relationship graph retains its synthetic local reference, task-pane layout, ordinary cells, formulas, calculation properties, and every package member except its web-extension part while raw `Office.AutoShowTaskpaneWithDocument` changes from false to true. The validator does not install, load, execute, or fetch an add-in or manifest, or claim that a task pane opens. |
|
| 97 |
| `sheet_visibility_changed` | `sheet`, `baseline_state`, `candidate_state` | The stored sheet state changes. |
|
| 98 |
| `formula_cell_unlocked` | `sheet`, `cell` | A formula cell is explicitly unlocked while its sheet remains protected. |
|
| 99 |
| `workbook_structure_lock_removed` | `baseline_lock_structure`, `candidate_lock_structure`, `hidden_sheet`, `hidden_sheet_state`, `formula_sheet`, `formula_cell`, `formula` | Raw `workbookProtection/@lockStructure` changes exactly from `true` to `false` while the declared hidden-sheet state, formula, calculation properties, and every package member except `xl/workbook.xml` remain unchanged. The validator does not test a password, encryption, authorization, or client behavior. |
|
|
|
|
| 449 |
It does not access a file, validate the schema, import/export XML, materialize
|
| 450 |
data, calculate a result, or claim a client outcome.
|
| 451 |
|
| 452 |
+
## Office Web Add-ins
|
| 453 |
+
|
| 454 |
+
Microsoft's [workbook auto-open guidance](https://learn.microsoft.com/en-us/office/dev/add-ins/excel/pnp-open-in-excel)
|
| 455 |
+
documents the package parts needed to associate a workbook with an Office
|
| 456 |
+
Add-in and notes that the add-in must already be installed, sideloaded, or
|
| 457 |
+
deployed before an application can honor the association. The
|
| 458 |
+
[MS-OWEMXML specification](https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-owemxml/4b94ac5d-a8df-44f4-8433-81d43e35a2d7)
|
| 459 |
+
defines `Office.AutoShowTaskpaneWithDocument` as an extension property. That
|
| 460 |
+
makes the stored request reviewable independently of any installed client
|
| 461 |
+
state or executable add-in payload.
|
| 462 |
+
|
| 463 |
+
The WCAB Office Web Add-in pair has one workbook-to-`taskpanes.xml` relation
|
| 464 |
+
and one taskpane-to-`webextension1.xml` relation. It keeps the synthetic
|
| 465 |
+
local FileSystem reference, add-in/reference IDs, hidden locked task-pane
|
| 466 |
+
layout, `Inputs!B2=10`, `Model!B2=Inputs!$B$2*2`, and
|
| 467 |
+
`Dashboard!B4=Model!$B$2` fixed. Only the web-extension property changes:
|
| 468 |
+
`Office.AutoShowTaskpaneWithDocument` is `false` in the baseline and
|
| 469 |
+
`true` in the candidate. The raw validator follows only those local
|
| 470 |
+
relationships, erases only that property value for comparison, and requires
|
| 471 |
+
`xl/webextensions/webextension1.xml` to be the sole changed package member.
|
| 472 |
+
There is no manifest payload or external relationship. The benchmark does not
|
| 473 |
+
install, load, execute, or fetch an add-in or manifest, and it does not claim
|
| 474 |
+
that a task pane opens or that the add-in reads, writes, calculates, or
|
| 475 |
+
displays workbook cells.
|
| 476 |
+
|
| 477 |
## DrawingML chart-series source references
|
| 478 |
|
| 479 |
Microsoft's [series-editing guidance](https://support.microsoft.com/en-US/Excel/rename-a-data-series)
|
docs/validation.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# Validation record
|
| 2 |
|
| 3 |
-
This record describes the WCAB 0.
|
| 4 |
2026-08-03. It is reproducible from this repository; no network service or
|
| 5 |
private workbook is required.
|
| 6 |
|
|
@@ -32,16 +32,16 @@ wcab validate --fixtures fixtures
|
|
| 32 |
|
| 33 |
Results:
|
| 34 |
|
| 35 |
-
-
|
| 36 |
-
-
|
| 37 |
- Three scoreable coverage expectations: one newly introduced `INDIRECT`
|
| 38 |
boundary and two unchanged-formula selector changes (`INDIRECT` address text
|
| 39 |
and `OFFSET` column displacement).
|
| 40 |
-
-
|
| 41 |
case catalogue, all generated from source.
|
| 42 |
-
- One hundred seventy-
|
| 43 |
independent regeneration and byte-for-byte fixture-tree equality.
|
| 44 |
-
- The fixture validator accepted all
|
| 45 |
- The external-data pair has identical package members except for
|
| 46 |
`xl/connections.xml`; both archives pass ZIP integrity checks and remain
|
| 47 |
readable by openpyxl. Its relationship-backed source is a non-routable
|
|
@@ -196,6 +196,16 @@ Results:
|
|
| 196 |
only local workbook and worksheet relationships and does not access a file,
|
| 197 |
validate a schema, import/export XML, materialize data, calculate a result,
|
| 198 |
or claim client behavior.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 199 |
- The saved-formula-result pair has identical package members except for
|
| 200 |
`xl/worksheets/sheet2.xml`; both archives pass ZIP integrity checks and
|
| 201 |
remain readable by openpyxl. Its direct input, formula expression,
|
|
@@ -211,7 +221,7 @@ Results:
|
|
| 211 |
|
| 212 |
## Distribution supplement
|
| 213 |
|
| 214 |
-
The 0.
|
| 215 |
the tool-neutral observation protocol at version 2. Each catalogue row retains
|
| 216 |
the schema-version-3 truth contract and includes byte counts and SHA-256
|
| 217 |
digests for the workbooks it names.
|
|
@@ -219,11 +229,11 @@ digests for the workbooks it names.
|
|
| 219 |
Commands:
|
| 220 |
|
| 221 |
```bash
|
| 222 |
-
python -m build --outdir /tmp/wcab-
|
| 223 |
-
twine check /tmp/wcab-
|
| 224 |
python -m venv /tmp/wcab-wheel-test
|
| 225 |
/tmp/wcab-wheel-test/bin/python -m pip install \
|
| 226 |
-
/tmp/wcab-
|
| 227 |
/tmp/wcab-wheel-test/bin/python -c 'import wcab; print(wcab.__version__)'
|
| 228 |
/tmp/wcab-wheel-test/bin/wcab validate --fixtures fixtures
|
| 229 |
/tmp/wcab-wheel-test/bin/wcab manifest --fixtures fixtures --output /tmp/manifest.jsonl
|
|
@@ -234,7 +244,7 @@ cmp fixtures/manifest.jsonl /tmp/manifest.jsonl
|
|
| 234 |
--observations /tmp/observations.json
|
| 235 |
python -m venv /tmp/wcab-sdist-test
|
| 236 |
/tmp/wcab-sdist-test/bin/python -m pip install \
|
| 237 |
-
/tmp/wcab-
|
| 238 |
/tmp/wcab-sdist-test/bin/python -c 'import wcab; print(wcab.__version__)'
|
| 239 |
/tmp/wcab-sdist-test/bin/wcab validate --fixtures fixtures
|
| 240 |
```
|
|
@@ -246,14 +256,14 @@ Results:
|
|
| 246 |
their uploaded assets in the GitHub release, avoiding a self-referential
|
| 247 |
source-distribution checksum in this record.
|
| 248 |
- Fresh Python 3.13 wheel and source-distribution installations both reported
|
| 249 |
-
version 0.
|
| 250 |
JSONL output.
|
| 251 |
-
- The full
|
| 252 |
3.13.
|
| 253 |
- The generated unsupported template scored as zero analyzed coverage, zero
|
| 254 |
expected-fact recall, and zero coverage-disclosure recall, confirming that
|
| 255 |
unsupported cases cannot become a pass.
|
| 256 |
-
- The FormulaFence normalizer emitted
|
| 257 |
unmapped fact, three matched coverage declarations, and no invented review
|
| 258 |
disposition.
|
| 259 |
|
|
@@ -268,9 +278,9 @@ wcab formulafence --fixtures fixtures --strict
|
|
| 268 |
|
| 269 |
Results:
|
| 270 |
|
| 271 |
-
- All
|
| 272 |
- All three mappable coverage expectations were matched; no mapped fact,
|
| 273 |
-
coverage expectation, or targeted lint rule was missed across all
|
| 274 |
- The schema-version-2 structured Table scope case was observed as a
|
| 275 |
`table_definition_changed` diff, even though its summary formula text stays
|
| 276 |
unchanged.
|
|
@@ -446,6 +456,17 @@ Results:
|
|
| 446 |
binding transition, stable declarations/formulas, and table-part-only
|
| 447 |
boundary; neither report accessed a file, imported/exported XML,
|
| 448 |
materialized data, or inferred a result.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 449 |
- The WCAB 0.11 saved-formula-result case was observed as one exact
|
| 450 |
`formula_cached_result_changed` record and `FF042`: FormulaFence reports
|
| 451 |
two formula cells, one numeric saved result, one missing saved result, and
|
|
|
|
| 1 |
# Validation record
|
| 2 |
|
| 3 |
+
This record describes the WCAB 0.28.0 / schema-version-3 validation run on
|
| 4 |
2026-08-03. It is reproducible from this repository; no network service or
|
| 5 |
private workbook is required.
|
| 6 |
|
|
|
|
| 32 |
|
| 33 |
Results:
|
| 34 |
|
| 35 |
+
- 43 cases: 42 paired-workbook cases and one directory portfolio case.
|
| 36 |
+
- 45 observable truth facts across 33 `block` and 10 `review` cases.
|
| 37 |
- Three scoreable coverage expectations: one newly introduced `INDIRECT`
|
| 38 |
boundary and two unchanged-formula selector changes (`INDIRECT` address text
|
| 39 |
and `OFFSET` column displacement).
|
| 40 |
+
- 132 generated fixture files: 88 workbooks, 43 truth manifests, and one JSONL
|
| 41 |
case catalogue, all generated from source.
|
| 42 |
+
- One hundred seventy-eight unit tests passed locally under Python 3.13, including
|
| 43 |
independent regeneration and byte-for-byte fixture-tree equality.
|
| 44 |
+
- The fixture validator accepted all 43 cases.
|
| 45 |
- The external-data pair has identical package members except for
|
| 46 |
`xl/connections.xml`; both archives pass ZIP integrity checks and remain
|
| 47 |
readable by openpyxl. Its relationship-backed source is a non-routable
|
|
|
|
| 196 |
only local workbook and worksheet relationships and does not access a file,
|
| 197 |
validate a schema, import/export XML, materialize data, calculate a result,
|
| 198 |
or claim client behavior.
|
| 199 |
+
- The Office Web Add-in pair has identical package members except for
|
| 200 |
+
`xl/webextensions/webextension1.xml`; both archives pass ZIP integrity
|
| 201 |
+
checks and remain readable by openpyxl. Its workbook-to-taskpane-to-web-
|
| 202 |
+
extension relationship chain, synthetic local FileSystem reference, add-in
|
| 203 |
+
IDs, hidden locked pane, ordinary cells, calculation properties, and
|
| 204 |
+
`Inputs!B2 → Model!B2 → Dashboard!B4` formulas remain unchanged while raw
|
| 205 |
+
`Office.AutoShowTaskpaneWithDocument` moves exactly from false to true. The
|
| 206 |
+
fixture has no manifest payload or external relationship. The validation run
|
| 207 |
+
did not install, load, execute, or fetch an add-in or manifest, or claim
|
| 208 |
+
that a task pane opens or that the add-in accesses a workbook cell.
|
| 209 |
- The saved-formula-result pair has identical package members except for
|
| 210 |
`xl/worksheets/sheet2.xml`; both archives pass ZIP integrity checks and
|
| 211 |
remain readable by openpyxl. Its direct input, formula expression,
|
|
|
|
| 221 |
|
| 222 |
## Distribution supplement
|
| 223 |
|
| 224 |
+
The 0.28.0 release retains the one-row-per-case `manifest.jsonl` catalogue and
|
| 225 |
the tool-neutral observation protocol at version 2. Each catalogue row retains
|
| 226 |
the schema-version-3 truth contract and includes byte counts and SHA-256
|
| 227 |
digests for the workbooks it names.
|
|
|
|
| 229 |
Commands:
|
| 230 |
|
| 231 |
```bash
|
| 232 |
+
python -m build --outdir /tmp/wcab-v028-dist
|
| 233 |
+
twine check /tmp/wcab-v028-dist/*
|
| 234 |
python -m venv /tmp/wcab-wheel-test
|
| 235 |
/tmp/wcab-wheel-test/bin/python -m pip install \
|
| 236 |
+
/tmp/wcab-v028-dist/workbook_change_benchmark-0.28.0-py3-none-any.whl
|
| 237 |
/tmp/wcab-wheel-test/bin/python -c 'import wcab; print(wcab.__version__)'
|
| 238 |
/tmp/wcab-wheel-test/bin/wcab validate --fixtures fixtures
|
| 239 |
/tmp/wcab-wheel-test/bin/wcab manifest --fixtures fixtures --output /tmp/manifest.jsonl
|
|
|
|
| 244 |
--observations /tmp/observations.json
|
| 245 |
python -m venv /tmp/wcab-sdist-test
|
| 246 |
/tmp/wcab-sdist-test/bin/python -m pip install \
|
| 247 |
+
/tmp/wcab-v028-dist/workbook_change_benchmark-0.28.0.tar.gz
|
| 248 |
/tmp/wcab-sdist-test/bin/python -c 'import wcab; print(wcab.__version__)'
|
| 249 |
/tmp/wcab-sdist-test/bin/wcab validate --fixtures fixtures
|
| 250 |
```
|
|
|
|
| 256 |
their uploaded assets in the GitHub release, avoiding a self-referential
|
| 257 |
source-distribution checksum in this record.
|
| 258 |
- Fresh Python 3.13 wheel and source-distribution installations both reported
|
| 259 |
+
version 0.28.0 and validated all 43 fixtures; both emitted byte-identical
|
| 260 |
JSONL output.
|
| 261 |
+
- The full 178-test suite, lint, and format checks passed locally under Python
|
| 262 |
3.13.
|
| 263 |
- The generated unsupported template scored as zero analyzed coverage, zero
|
| 264 |
expected-fact recall, and zero coverage-disclosure recall, confirming that
|
| 265 |
unsupported cases cannot become a pass.
|
| 266 |
+
- The FormulaFence normalizer emitted 44 matched facts, one intentionally
|
| 267 |
unmapped fact, three matched coverage declarations, and no invented review
|
| 268 |
disposition.
|
| 269 |
|
|
|
|
| 278 |
|
| 279 |
Results:
|
| 280 |
|
| 281 |
+
- All 44 currently mappable diff/portfolio facts were observed.
|
| 282 |
- All three mappable coverage expectations were matched; no mapped fact,
|
| 283 |
+
coverage expectation, or targeted lint rule was missed across all 43 cases.
|
| 284 |
- The schema-version-2 structured Table scope case was observed as a
|
| 285 |
`table_definition_changed` diff, even though its summary formula text stays
|
| 286 |
unchanged.
|
|
|
|
| 456 |
binding transition, stable declarations/formulas, and table-part-only
|
| 457 |
boundary; neither report accessed a file, imported/exported XML,
|
| 458 |
materialized data, or inferred a result.
|
| 459 |
+
- The WCAB 0.28 Office Web Add-in case was observed as one exact
|
| 460 |
+
`office_web_addins_changed` record and `FF028`: FormulaFence's redacted
|
| 461 |
+
profile retained one declared task-pane part, task pane, web-extension part,
|
| 462 |
+
and local store reference; one locked hidden task pane; no bindings,
|
| 463 |
+
snapshots, external relationships, in-content references, or unrecognized
|
| 464 |
+
parts; and an auto-show count from zero to one. It did not expose add-in IDs,
|
| 465 |
+
store name, or the property value. WCAB independently established the local
|
| 466 |
+
relationship graph, false-to-true auto-show property, stable formula context,
|
| 467 |
+
and web-extension-part-only boundary; neither report installed, loaded,
|
| 468 |
+
executed, or fetched an add-in or manifest, or claimed that a task pane
|
| 469 |
+
opens.
|
| 470 |
- The WCAB 0.11 saved-formula-result case was observed as one exact
|
| 471 |
`formula_cached_result_changed` record and `FF042`: FormulaFence reports
|
| 472 |
two formula cells, one numeric saved result, one missing saved result, and
|
fixtures/governance/office_web_addin_auto_show_enabled/baseline.xlsx
ADDED
|
Binary file (7.23 kB). View file
|
|
|
fixtures/governance/office_web_addin_auto_show_enabled/candidate.xlsx
ADDED
|
Binary file (7.23 kB). View file
|
|
|
fixtures/governance/office_web_addin_auto_show_enabled/truth.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"coverage": [
|
| 3 |
+
"The pair changes only one Office.AutoShowTaskpaneWithDocument property value in xl/webextensions/webextension1.xml. It does not edit ordinary cells, formulas, calculation properties, task-pane layout, add-in identity, or any other package member.",
|
| 4 |
+
"The synthetic add-in reference uses a local FileSystem store name and has no manifest payload or external relationship. WCAB does not install, load, execute, or fetch an add-in or manifest, and it does not claim that any task pane opens.",
|
| 5 |
+
"The stable Inputs!B2-to-Model!B2-to-Dashboard!B4 formula path is workbook context only. It is not evidence that an add-in reads, writes, calculates, or displays any of those cells."
|
| 6 |
+
],
|
| 7 |
+
"coverage_expectations": [],
|
| 8 |
+
"facts": [
|
| 9 |
+
{
|
| 10 |
+
"addin_id": "{33333333-3333-3333-3333-333333333333}",
|
| 11 |
+
"baseline_auto_show": false,
|
| 12 |
+
"candidate_auto_show": true,
|
| 13 |
+
"dashboard_cell": "B4",
|
| 14 |
+
"dashboard_formula": "=Model!$B$2",
|
| 15 |
+
"dashboard_sheet": "Dashboard",
|
| 16 |
+
"input_cell": "B2",
|
| 17 |
+
"input_sheet": "Inputs",
|
| 18 |
+
"input_value": 10,
|
| 19 |
+
"kind": "office_web_addin_auto_show_enabled",
|
| 20 |
+
"model_cell": "B2",
|
| 21 |
+
"model_formula": "=Inputs!$B$2*2",
|
| 22 |
+
"model_sheet": "Model",
|
| 23 |
+
"reference_id": "{44444444-4444-4444-4444-444444444444}",
|
| 24 |
+
"reference_version": "1.0.0.0",
|
| 25 |
+
"store": "wcab-review-assistant.xml",
|
| 26 |
+
"store_type": "Filesystem",
|
| 27 |
+
"taskpane_member": "xl/webextensions/taskpanes.xml",
|
| 28 |
+
"web_extension_member": "xl/webextensions/webextension1.xml"
|
| 29 |
+
}
|
| 30 |
+
],
|
| 31 |
+
"family": "governance",
|
| 32 |
+
"id": "governance.office_web_addin_auto_show_enabled",
|
| 33 |
+
"must_reach": [],
|
| 34 |
+
"review_expectation": "block",
|
| 35 |
+
"schema_version": 3,
|
| 36 |
+
"title": "An embedded Office Web Add-in requests task-pane auto-show",
|
| 37 |
+
"topology": "pair"
|
| 38 |
+
}
|
fixtures/manifest.jsonl
CHANGED
|
@@ -10,6 +10,7 @@
|
|
| 10 |
{"baseline_files":[{"bytes":5599,"path":"governance/hidden_sheet_revealed/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5594,"path":"governance/hidden_sheet_revealed/candidate.xlsx","sha256":"6f4d0cb90949de429d8d93d496d95c75e6adcb4d1abce1115d71bba5a3be3fa2"}],"case_path":"governance/hidden_sheet_revealed","coverage":["Visibility is an observable workbook control; cell content is not part of this assertion."],"coverage_expectations":[],"facts":[{"baseline_state":"hidden","candidate_state":"visible","kind":"sheet_visibility_changed","sheet":"ReviewControls"}],"family":"governance","id":"governance.hidden_sheet_revealed","must_reach":[],"review_expectation":"review","schema_version":3,"title":"A hidden review-control sheet is made visible","topology":"pair"}
|
| 11 |
{"baseline_files":[{"bytes":5966,"path":"governance/iterative_calculation_enabled/baseline.xlsx","sha256":"b0283ba959d38df4311da749ce16f5331b5d3c2f979b38db831ca86eb6f101d6"}],"candidate_files":[{"bytes":5967,"path":"governance/iterative_calculation_enabled/candidate.xlsx","sha256":"926cf02d3a4101e79707536abdee3ebf530052b53e4c110fbbde93b2798e8b97"}],"case_path":"governance/iterative_calculation_enabled","coverage":["The direct self-reference is intentional and remains unchanged. The fixture records calculation controls; it does not calculate the circular formula or claim a converged, cached, or business-correct result.","The validator checks the explicit iterate flag plus the shared iteration count and delta. It does not predict the number of recalculations, convergence, numerical precision, or Excel-client behavior.","The pair differs only in workbook calculation metadata; no worksheet value, formula text, or dependency edge is edited."],"coverage_expectations":[],"facts":[{"baseline_iterate":false,"candidate_iterate":true,"cell":"B2","formula":"=(B2+Inputs!$B$2)/2","iteration_count":100,"iteration_delta":0.001,"kind":"iterative_calculation_enabled","sheet":"Model"}],"family":"governance","id":"governance.iterative_calculation_enabled","must_reach":[{"source":{"cell":"B2","sheet":"Model"},"targets":[{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":3,"title":"An unchanged direct circular formula enables iterative calculation","topology":"pair"}
|
| 12 |
{"baseline_files":[{"bytes":5599,"path":"governance/manual_calculation_incomplete/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5618,"path":"governance/manual_calculation_incomplete/candidate.xlsx","sha256":"1a136225c99e8d98c4e7465f7544459a6188f4889606920b498177b8783c85e9"}],"case_path":"governance/manual_calculation_incomplete","coverage":["Calculation metadata is evidence of save state, not proof that any cached result is wrong."],"coverage_expectations":[],"facts":[{"kind":"manual_calculation_incomplete"}],"family":"governance","id":"governance.manual_calculation_incomplete","must_reach":[],"review_expectation":"block","schema_version":3,"title":"A formula workbook records incomplete manual calculation","topology":"pair"}
|
|
|
|
| 13 |
{"baseline_files":[{"bytes":8610,"path":"governance/pivot_cache_refresh_on_open/baseline.xlsx","sha256":"1259f8800a185f3a730c2f03867273ccfea1f21955885aa1a5fe87b520fb9b4e"}],"candidate_files":[{"bytes":8610,"path":"governance/pivot_cache_refresh_on_open/candidate.xlsx","sha256":"b604ce0969033c9afb201c04d44833b1a3654a8705338661fbd749a9cdf28048"}],"case_path":"governance/pivot_cache_refresh_on_open","coverage":["The pair changes only raw pivotCacheDefinition/@refreshOnLoad. It does not edit source cells, stored PivotTable display cells, formula text, or calculation properties.","PivotTable cache refresh-on-open is stored control evidence. WCAB does not open the workbook in Excel, refresh a cache, calculate, or render the PivotTable, or claim a changed report result.","The validator reads relationship-backed raw OOXML, checks the cache/PivotTable binding and direct local dashboard edge, and treats that edge as a lower bound only if a client refresh changes the PivotTable display."],"coverage_expectations":[],"facts":[{"baseline_refresh_on_load":false,"cache_id":1,"candidate_refresh_on_load":true,"dashboard_cell":"B4","dashboard_formula":"=Report!$B$2","dashboard_sheet":"Dashboard","kind":"pivot_cache_refresh_on_load_changed","pivot_output_cell":"B2","pivot_ref":"A1:B2","pivot_sheet":"Report","source_ref":"A1:B5","source_sheet":"Source","source_type":"worksheet"}],"family":"governance","id":"governance.pivot_cache_refresh_on_open","must_reach":[{"source":{"cell":"B2","sheet":"Report"},"targets":[{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":3,"title":"A PivotTable cache starts refreshing when the workbook opens","topology":"pair"}
|
| 14 |
{"baseline_files":[{"bytes":6001,"path":"governance/precision_as_displayed_enabled/baseline.xlsx","sha256":"e1c190bdeb5063f2d81cab1ed9415a0307312835f95c5bd73f467bdeb7575b68"}],"candidate_files":[{"bytes":6000,"path":"governance/precision_as_displayed_enabled/candidate.xlsx","sha256":"98c5a672c8256c3ec1e3316d62d011275773d7fb8c121265f4673622528601ae"}],"case_path":"governance/precision_as_displayed_enabled","coverage":["The pair records the raw calcPr fullPrecision switch that corresponds to Excel's precision-as-displayed setting. WCAB does not emulate Excel's calculation engine or claim that a client applied the control.","Both generated packages retain the exact stored 10.005 input and its two-decimal number format. The validator does not claim that opening, calculating, or saving either workbook rounds a value or produces a particular formula result.","The pair differs only in workbook calculation metadata; no worksheet value, formula text, number format, or dependency edge is edited."],"coverage_expectations":[],"facts":[{"baseline_full_precision":true,"candidate_full_precision":false,"formula":"=Inputs!$B$2*2","formula_cell":"B2","formula_sheet":"Model","input_cell":"B2","input_sheet":"Inputs","input_value":10.005,"kind":"precision_as_displayed_enabled","number_format":"0.00"}],"family":"governance","id":"governance.precision_as_displayed_enabled","must_reach":[{"source":{"cell":"B2","sheet":"Inputs"},"targets":[{"cell":"B2","sheet":"Model"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":3,"title":"Precision-as-displayed calculation is enabled without a cell edit","topology":"pair"}
|
| 15 |
{"baseline_files":[{"bytes":5599,"path":"governance/static_cycle_introduced/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5596,"path":"governance/static_cycle_introduced/candidate.xlsx","sha256":"086d420690d81e6fd79146bf1e721fd28f71bdf292bf927566ffbc2ce08d7b5d"}],"case_path":"governance/static_cycle_introduced","coverage":["The cycle is direct and static; iterative calculation settings and dynamic references are out of scope."],"coverage_expectations":[],"facts":[{"cells":[{"cell":"D10","sheet":"Controls"},{"cell":"D11","sheet":"Controls"}],"kind":"static_cycle_introduced"}],"family":"governance","id":"governance.static_cycle_introduced","must_reach":[],"review_expectation":"block","schema_version":3,"title":"Two direct formulas form a static cycle","topology":"pair"}
|
|
|
|
| 10 |
{"baseline_files":[{"bytes":5599,"path":"governance/hidden_sheet_revealed/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5594,"path":"governance/hidden_sheet_revealed/candidate.xlsx","sha256":"6f4d0cb90949de429d8d93d496d95c75e6adcb4d1abce1115d71bba5a3be3fa2"}],"case_path":"governance/hidden_sheet_revealed","coverage":["Visibility is an observable workbook control; cell content is not part of this assertion."],"coverage_expectations":[],"facts":[{"baseline_state":"hidden","candidate_state":"visible","kind":"sheet_visibility_changed","sheet":"ReviewControls"}],"family":"governance","id":"governance.hidden_sheet_revealed","must_reach":[],"review_expectation":"review","schema_version":3,"title":"A hidden review-control sheet is made visible","topology":"pair"}
|
| 11 |
{"baseline_files":[{"bytes":5966,"path":"governance/iterative_calculation_enabled/baseline.xlsx","sha256":"b0283ba959d38df4311da749ce16f5331b5d3c2f979b38db831ca86eb6f101d6"}],"candidate_files":[{"bytes":5967,"path":"governance/iterative_calculation_enabled/candidate.xlsx","sha256":"926cf02d3a4101e79707536abdee3ebf530052b53e4c110fbbde93b2798e8b97"}],"case_path":"governance/iterative_calculation_enabled","coverage":["The direct self-reference is intentional and remains unchanged. The fixture records calculation controls; it does not calculate the circular formula or claim a converged, cached, or business-correct result.","The validator checks the explicit iterate flag plus the shared iteration count and delta. It does not predict the number of recalculations, convergence, numerical precision, or Excel-client behavior.","The pair differs only in workbook calculation metadata; no worksheet value, formula text, or dependency edge is edited."],"coverage_expectations":[],"facts":[{"baseline_iterate":false,"candidate_iterate":true,"cell":"B2","formula":"=(B2+Inputs!$B$2)/2","iteration_count":100,"iteration_delta":0.001,"kind":"iterative_calculation_enabled","sheet":"Model"}],"family":"governance","id":"governance.iterative_calculation_enabled","must_reach":[{"source":{"cell":"B2","sheet":"Model"},"targets":[{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":3,"title":"An unchanged direct circular formula enables iterative calculation","topology":"pair"}
|
| 12 |
{"baseline_files":[{"bytes":5599,"path":"governance/manual_calculation_incomplete/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5618,"path":"governance/manual_calculation_incomplete/candidate.xlsx","sha256":"1a136225c99e8d98c4e7465f7544459a6188f4889606920b498177b8783c85e9"}],"case_path":"governance/manual_calculation_incomplete","coverage":["Calculation metadata is evidence of save state, not proof that any cached result is wrong."],"coverage_expectations":[],"facts":[{"kind":"manual_calculation_incomplete"}],"family":"governance","id":"governance.manual_calculation_incomplete","must_reach":[],"review_expectation":"block","schema_version":3,"title":"A formula workbook records incomplete manual calculation","topology":"pair"}
|
| 13 |
+
{"baseline_files":[{"bytes":7231,"path":"governance/office_web_addin_auto_show_enabled/baseline.xlsx","sha256":"4c101ee0b607ebd366a4d4edd302eb812836fee501727bee8c7d46431089362c"}],"candidate_files":[{"bytes":7230,"path":"governance/office_web_addin_auto_show_enabled/candidate.xlsx","sha256":"170c708c082422e3d0075b5fdbcd9a329a6729ce0be0c30851bfa60949951662"}],"case_path":"governance/office_web_addin_auto_show_enabled","coverage":["The pair changes only one Office.AutoShowTaskpaneWithDocument property value in xl/webextensions/webextension1.xml. It does not edit ordinary cells, formulas, calculation properties, task-pane layout, add-in identity, or any other package member.","The synthetic add-in reference uses a local FileSystem store name and has no manifest payload or external relationship. WCAB does not install, load, execute, or fetch an add-in or manifest, and it does not claim that any task pane opens.","The stable Inputs!B2-to-Model!B2-to-Dashboard!B4 formula path is workbook context only. It is not evidence that an add-in reads, writes, calculates, or displays any of those cells."],"coverage_expectations":[],"facts":[{"addin_id":"{33333333-3333-3333-3333-333333333333}","baseline_auto_show":false,"candidate_auto_show":true,"dashboard_cell":"B4","dashboard_formula":"=Model!$B$2","dashboard_sheet":"Dashboard","input_cell":"B2","input_sheet":"Inputs","input_value":10,"kind":"office_web_addin_auto_show_enabled","model_cell":"B2","model_formula":"=Inputs!$B$2*2","model_sheet":"Model","reference_id":"{44444444-4444-4444-4444-444444444444}","reference_version":"1.0.0.0","store":"wcab-review-assistant.xml","store_type":"Filesystem","taskpane_member":"xl/webextensions/taskpanes.xml","web_extension_member":"xl/webextensions/webextension1.xml"}],"family":"governance","id":"governance.office_web_addin_auto_show_enabled","must_reach":[],"review_expectation":"block","schema_version":3,"title":"An embedded Office Web Add-in requests task-pane auto-show","topology":"pair"}
|
| 14 |
{"baseline_files":[{"bytes":8610,"path":"governance/pivot_cache_refresh_on_open/baseline.xlsx","sha256":"1259f8800a185f3a730c2f03867273ccfea1f21955885aa1a5fe87b520fb9b4e"}],"candidate_files":[{"bytes":8610,"path":"governance/pivot_cache_refresh_on_open/candidate.xlsx","sha256":"b604ce0969033c9afb201c04d44833b1a3654a8705338661fbd749a9cdf28048"}],"case_path":"governance/pivot_cache_refresh_on_open","coverage":["The pair changes only raw pivotCacheDefinition/@refreshOnLoad. It does not edit source cells, stored PivotTable display cells, formula text, or calculation properties.","PivotTable cache refresh-on-open is stored control evidence. WCAB does not open the workbook in Excel, refresh a cache, calculate, or render the PivotTable, or claim a changed report result.","The validator reads relationship-backed raw OOXML, checks the cache/PivotTable binding and direct local dashboard edge, and treats that edge as a lower bound only if a client refresh changes the PivotTable display."],"coverage_expectations":[],"facts":[{"baseline_refresh_on_load":false,"cache_id":1,"candidate_refresh_on_load":true,"dashboard_cell":"B4","dashboard_formula":"=Report!$B$2","dashboard_sheet":"Dashboard","kind":"pivot_cache_refresh_on_load_changed","pivot_output_cell":"B2","pivot_ref":"A1:B2","pivot_sheet":"Report","source_ref":"A1:B5","source_sheet":"Source","source_type":"worksheet"}],"family":"governance","id":"governance.pivot_cache_refresh_on_open","must_reach":[{"source":{"cell":"B2","sheet":"Report"},"targets":[{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":3,"title":"A PivotTable cache starts refreshing when the workbook opens","topology":"pair"}
|
| 15 |
{"baseline_files":[{"bytes":6001,"path":"governance/precision_as_displayed_enabled/baseline.xlsx","sha256":"e1c190bdeb5063f2d81cab1ed9415a0307312835f95c5bd73f467bdeb7575b68"}],"candidate_files":[{"bytes":6000,"path":"governance/precision_as_displayed_enabled/candidate.xlsx","sha256":"98c5a672c8256c3ec1e3316d62d011275773d7fb8c121265f4673622528601ae"}],"case_path":"governance/precision_as_displayed_enabled","coverage":["The pair records the raw calcPr fullPrecision switch that corresponds to Excel's precision-as-displayed setting. WCAB does not emulate Excel's calculation engine or claim that a client applied the control.","Both generated packages retain the exact stored 10.005 input and its two-decimal number format. The validator does not claim that opening, calculating, or saving either workbook rounds a value or produces a particular formula result.","The pair differs only in workbook calculation metadata; no worksheet value, formula text, number format, or dependency edge is edited."],"coverage_expectations":[],"facts":[{"baseline_full_precision":true,"candidate_full_precision":false,"formula":"=Inputs!$B$2*2","formula_cell":"B2","formula_sheet":"Model","input_cell":"B2","input_sheet":"Inputs","input_value":10.005,"kind":"precision_as_displayed_enabled","number_format":"0.00"}],"family":"governance","id":"governance.precision_as_displayed_enabled","must_reach":[{"source":{"cell":"B2","sheet":"Inputs"},"targets":[{"cell":"B2","sheet":"Model"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":3,"title":"Precision-as-displayed calculation is enabled without a cell edit","topology":"pair"}
|
| 16 |
{"baseline_files":[{"bytes":5599,"path":"governance/static_cycle_introduced/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5596,"path":"governance/static_cycle_introduced/candidate.xlsx","sha256":"086d420690d81e6fd79146bf1e721fd28f71bdf292bf927566ffbc2ce08d7b5d"}],"case_path":"governance/static_cycle_introduced","coverage":["The cycle is direct and static; iterative calculation settings and dynamic references are out of scope."],"coverage_expectations":[],"facts":[{"cells":[{"cell":"D10","sheet":"Controls"},{"cell":"D11","sheet":"Controls"}],"kind":"static_cycle_introduced"}],"family":"governance","id":"governance.static_cycle_introduced","must_reach":[],"review_expectation":"block","schema_version":3,"title":"Two direct formulas form a static cycle","topology":"pair"}
|
manifest.jsonl
CHANGED
|
@@ -10,6 +10,7 @@
|
|
| 10 |
{"baseline_files":[{"bytes":5599,"path":"governance/hidden_sheet_revealed/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5594,"path":"governance/hidden_sheet_revealed/candidate.xlsx","sha256":"6f4d0cb90949de429d8d93d496d95c75e6adcb4d1abce1115d71bba5a3be3fa2"}],"case_path":"governance/hidden_sheet_revealed","coverage":["Visibility is an observable workbook control; cell content is not part of this assertion."],"coverage_expectations":[],"facts":[{"baseline_state":"hidden","candidate_state":"visible","kind":"sheet_visibility_changed","sheet":"ReviewControls"}],"family":"governance","id":"governance.hidden_sheet_revealed","must_reach":[],"review_expectation":"review","schema_version":3,"title":"A hidden review-control sheet is made visible","topology":"pair"}
|
| 11 |
{"baseline_files":[{"bytes":5966,"path":"governance/iterative_calculation_enabled/baseline.xlsx","sha256":"b0283ba959d38df4311da749ce16f5331b5d3c2f979b38db831ca86eb6f101d6"}],"candidate_files":[{"bytes":5967,"path":"governance/iterative_calculation_enabled/candidate.xlsx","sha256":"926cf02d3a4101e79707536abdee3ebf530052b53e4c110fbbde93b2798e8b97"}],"case_path":"governance/iterative_calculation_enabled","coverage":["The direct self-reference is intentional and remains unchanged. The fixture records calculation controls; it does not calculate the circular formula or claim a converged, cached, or business-correct result.","The validator checks the explicit iterate flag plus the shared iteration count and delta. It does not predict the number of recalculations, convergence, numerical precision, or Excel-client behavior.","The pair differs only in workbook calculation metadata; no worksheet value, formula text, or dependency edge is edited."],"coverage_expectations":[],"facts":[{"baseline_iterate":false,"candidate_iterate":true,"cell":"B2","formula":"=(B2+Inputs!$B$2)/2","iteration_count":100,"iteration_delta":0.001,"kind":"iterative_calculation_enabled","sheet":"Model"}],"family":"governance","id":"governance.iterative_calculation_enabled","must_reach":[{"source":{"cell":"B2","sheet":"Model"},"targets":[{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":3,"title":"An unchanged direct circular formula enables iterative calculation","topology":"pair"}
|
| 12 |
{"baseline_files":[{"bytes":5599,"path":"governance/manual_calculation_incomplete/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5618,"path":"governance/manual_calculation_incomplete/candidate.xlsx","sha256":"1a136225c99e8d98c4e7465f7544459a6188f4889606920b498177b8783c85e9"}],"case_path":"governance/manual_calculation_incomplete","coverage":["Calculation metadata is evidence of save state, not proof that any cached result is wrong."],"coverage_expectations":[],"facts":[{"kind":"manual_calculation_incomplete"}],"family":"governance","id":"governance.manual_calculation_incomplete","must_reach":[],"review_expectation":"block","schema_version":3,"title":"A formula workbook records incomplete manual calculation","topology":"pair"}
|
|
|
|
| 13 |
{"baseline_files":[{"bytes":8610,"path":"governance/pivot_cache_refresh_on_open/baseline.xlsx","sha256":"1259f8800a185f3a730c2f03867273ccfea1f21955885aa1a5fe87b520fb9b4e"}],"candidate_files":[{"bytes":8610,"path":"governance/pivot_cache_refresh_on_open/candidate.xlsx","sha256":"b604ce0969033c9afb201c04d44833b1a3654a8705338661fbd749a9cdf28048"}],"case_path":"governance/pivot_cache_refresh_on_open","coverage":["The pair changes only raw pivotCacheDefinition/@refreshOnLoad. It does not edit source cells, stored PivotTable display cells, formula text, or calculation properties.","PivotTable cache refresh-on-open is stored control evidence. WCAB does not open the workbook in Excel, refresh a cache, calculate, or render the PivotTable, or claim a changed report result.","The validator reads relationship-backed raw OOXML, checks the cache/PivotTable binding and direct local dashboard edge, and treats that edge as a lower bound only if a client refresh changes the PivotTable display."],"coverage_expectations":[],"facts":[{"baseline_refresh_on_load":false,"cache_id":1,"candidate_refresh_on_load":true,"dashboard_cell":"B4","dashboard_formula":"=Report!$B$2","dashboard_sheet":"Dashboard","kind":"pivot_cache_refresh_on_load_changed","pivot_output_cell":"B2","pivot_ref":"A1:B2","pivot_sheet":"Report","source_ref":"A1:B5","source_sheet":"Source","source_type":"worksheet"}],"family":"governance","id":"governance.pivot_cache_refresh_on_open","must_reach":[{"source":{"cell":"B2","sheet":"Report"},"targets":[{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":3,"title":"A PivotTable cache starts refreshing when the workbook opens","topology":"pair"}
|
| 14 |
{"baseline_files":[{"bytes":6001,"path":"governance/precision_as_displayed_enabled/baseline.xlsx","sha256":"e1c190bdeb5063f2d81cab1ed9415a0307312835f95c5bd73f467bdeb7575b68"}],"candidate_files":[{"bytes":6000,"path":"governance/precision_as_displayed_enabled/candidate.xlsx","sha256":"98c5a672c8256c3ec1e3316d62d011275773d7fb8c121265f4673622528601ae"}],"case_path":"governance/precision_as_displayed_enabled","coverage":["The pair records the raw calcPr fullPrecision switch that corresponds to Excel's precision-as-displayed setting. WCAB does not emulate Excel's calculation engine or claim that a client applied the control.","Both generated packages retain the exact stored 10.005 input and its two-decimal number format. The validator does not claim that opening, calculating, or saving either workbook rounds a value or produces a particular formula result.","The pair differs only in workbook calculation metadata; no worksheet value, formula text, number format, or dependency edge is edited."],"coverage_expectations":[],"facts":[{"baseline_full_precision":true,"candidate_full_precision":false,"formula":"=Inputs!$B$2*2","formula_cell":"B2","formula_sheet":"Model","input_cell":"B2","input_sheet":"Inputs","input_value":10.005,"kind":"precision_as_displayed_enabled","number_format":"0.00"}],"family":"governance","id":"governance.precision_as_displayed_enabled","must_reach":[{"source":{"cell":"B2","sheet":"Inputs"},"targets":[{"cell":"B2","sheet":"Model"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":3,"title":"Precision-as-displayed calculation is enabled without a cell edit","topology":"pair"}
|
| 15 |
{"baseline_files":[{"bytes":5599,"path":"governance/static_cycle_introduced/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5596,"path":"governance/static_cycle_introduced/candidate.xlsx","sha256":"086d420690d81e6fd79146bf1e721fd28f71bdf292bf927566ffbc2ce08d7b5d"}],"case_path":"governance/static_cycle_introduced","coverage":["The cycle is direct and static; iterative calculation settings and dynamic references are out of scope."],"coverage_expectations":[],"facts":[{"cells":[{"cell":"D10","sheet":"Controls"},{"cell":"D11","sheet":"Controls"}],"kind":"static_cycle_introduced"}],"family":"governance","id":"governance.static_cycle_introduced","must_reach":[],"review_expectation":"block","schema_version":3,"title":"Two direct formulas form a static cycle","topology":"pair"}
|
|
|
|
| 10 |
{"baseline_files":[{"bytes":5599,"path":"governance/hidden_sheet_revealed/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5594,"path":"governance/hidden_sheet_revealed/candidate.xlsx","sha256":"6f4d0cb90949de429d8d93d496d95c75e6adcb4d1abce1115d71bba5a3be3fa2"}],"case_path":"governance/hidden_sheet_revealed","coverage":["Visibility is an observable workbook control; cell content is not part of this assertion."],"coverage_expectations":[],"facts":[{"baseline_state":"hidden","candidate_state":"visible","kind":"sheet_visibility_changed","sheet":"ReviewControls"}],"family":"governance","id":"governance.hidden_sheet_revealed","must_reach":[],"review_expectation":"review","schema_version":3,"title":"A hidden review-control sheet is made visible","topology":"pair"}
|
| 11 |
{"baseline_files":[{"bytes":5966,"path":"governance/iterative_calculation_enabled/baseline.xlsx","sha256":"b0283ba959d38df4311da749ce16f5331b5d3c2f979b38db831ca86eb6f101d6"}],"candidate_files":[{"bytes":5967,"path":"governance/iterative_calculation_enabled/candidate.xlsx","sha256":"926cf02d3a4101e79707536abdee3ebf530052b53e4c110fbbde93b2798e8b97"}],"case_path":"governance/iterative_calculation_enabled","coverage":["The direct self-reference is intentional and remains unchanged. The fixture records calculation controls; it does not calculate the circular formula or claim a converged, cached, or business-correct result.","The validator checks the explicit iterate flag plus the shared iteration count and delta. It does not predict the number of recalculations, convergence, numerical precision, or Excel-client behavior.","The pair differs only in workbook calculation metadata; no worksheet value, formula text, or dependency edge is edited."],"coverage_expectations":[],"facts":[{"baseline_iterate":false,"candidate_iterate":true,"cell":"B2","formula":"=(B2+Inputs!$B$2)/2","iteration_count":100,"iteration_delta":0.001,"kind":"iterative_calculation_enabled","sheet":"Model"}],"family":"governance","id":"governance.iterative_calculation_enabled","must_reach":[{"source":{"cell":"B2","sheet":"Model"},"targets":[{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":3,"title":"An unchanged direct circular formula enables iterative calculation","topology":"pair"}
|
| 12 |
{"baseline_files":[{"bytes":5599,"path":"governance/manual_calculation_incomplete/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5618,"path":"governance/manual_calculation_incomplete/candidate.xlsx","sha256":"1a136225c99e8d98c4e7465f7544459a6188f4889606920b498177b8783c85e9"}],"case_path":"governance/manual_calculation_incomplete","coverage":["Calculation metadata is evidence of save state, not proof that any cached result is wrong."],"coverage_expectations":[],"facts":[{"kind":"manual_calculation_incomplete"}],"family":"governance","id":"governance.manual_calculation_incomplete","must_reach":[],"review_expectation":"block","schema_version":3,"title":"A formula workbook records incomplete manual calculation","topology":"pair"}
|
| 13 |
+
{"baseline_files":[{"bytes":7231,"path":"governance/office_web_addin_auto_show_enabled/baseline.xlsx","sha256":"4c101ee0b607ebd366a4d4edd302eb812836fee501727bee8c7d46431089362c"}],"candidate_files":[{"bytes":7230,"path":"governance/office_web_addin_auto_show_enabled/candidate.xlsx","sha256":"170c708c082422e3d0075b5fdbcd9a329a6729ce0be0c30851bfa60949951662"}],"case_path":"governance/office_web_addin_auto_show_enabled","coverage":["The pair changes only one Office.AutoShowTaskpaneWithDocument property value in xl/webextensions/webextension1.xml. It does not edit ordinary cells, formulas, calculation properties, task-pane layout, add-in identity, or any other package member.","The synthetic add-in reference uses a local FileSystem store name and has no manifest payload or external relationship. WCAB does not install, load, execute, or fetch an add-in or manifest, and it does not claim that any task pane opens.","The stable Inputs!B2-to-Model!B2-to-Dashboard!B4 formula path is workbook context only. It is not evidence that an add-in reads, writes, calculates, or displays any of those cells."],"coverage_expectations":[],"facts":[{"addin_id":"{33333333-3333-3333-3333-333333333333}","baseline_auto_show":false,"candidate_auto_show":true,"dashboard_cell":"B4","dashboard_formula":"=Model!$B$2","dashboard_sheet":"Dashboard","input_cell":"B2","input_sheet":"Inputs","input_value":10,"kind":"office_web_addin_auto_show_enabled","model_cell":"B2","model_formula":"=Inputs!$B$2*2","model_sheet":"Model","reference_id":"{44444444-4444-4444-4444-444444444444}","reference_version":"1.0.0.0","store":"wcab-review-assistant.xml","store_type":"Filesystem","taskpane_member":"xl/webextensions/taskpanes.xml","web_extension_member":"xl/webextensions/webextension1.xml"}],"family":"governance","id":"governance.office_web_addin_auto_show_enabled","must_reach":[],"review_expectation":"block","schema_version":3,"title":"An embedded Office Web Add-in requests task-pane auto-show","topology":"pair"}
|
| 14 |
{"baseline_files":[{"bytes":8610,"path":"governance/pivot_cache_refresh_on_open/baseline.xlsx","sha256":"1259f8800a185f3a730c2f03867273ccfea1f21955885aa1a5fe87b520fb9b4e"}],"candidate_files":[{"bytes":8610,"path":"governance/pivot_cache_refresh_on_open/candidate.xlsx","sha256":"b604ce0969033c9afb201c04d44833b1a3654a8705338661fbd749a9cdf28048"}],"case_path":"governance/pivot_cache_refresh_on_open","coverage":["The pair changes only raw pivotCacheDefinition/@refreshOnLoad. It does not edit source cells, stored PivotTable display cells, formula text, or calculation properties.","PivotTable cache refresh-on-open is stored control evidence. WCAB does not open the workbook in Excel, refresh a cache, calculate, or render the PivotTable, or claim a changed report result.","The validator reads relationship-backed raw OOXML, checks the cache/PivotTable binding and direct local dashboard edge, and treats that edge as a lower bound only if a client refresh changes the PivotTable display."],"coverage_expectations":[],"facts":[{"baseline_refresh_on_load":false,"cache_id":1,"candidate_refresh_on_load":true,"dashboard_cell":"B4","dashboard_formula":"=Report!$B$2","dashboard_sheet":"Dashboard","kind":"pivot_cache_refresh_on_load_changed","pivot_output_cell":"B2","pivot_ref":"A1:B2","pivot_sheet":"Report","source_ref":"A1:B5","source_sheet":"Source","source_type":"worksheet"}],"family":"governance","id":"governance.pivot_cache_refresh_on_open","must_reach":[{"source":{"cell":"B2","sheet":"Report"},"targets":[{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":3,"title":"A PivotTable cache starts refreshing when the workbook opens","topology":"pair"}
|
| 15 |
{"baseline_files":[{"bytes":6001,"path":"governance/precision_as_displayed_enabled/baseline.xlsx","sha256":"e1c190bdeb5063f2d81cab1ed9415a0307312835f95c5bd73f467bdeb7575b68"}],"candidate_files":[{"bytes":6000,"path":"governance/precision_as_displayed_enabled/candidate.xlsx","sha256":"98c5a672c8256c3ec1e3316d62d011275773d7fb8c121265f4673622528601ae"}],"case_path":"governance/precision_as_displayed_enabled","coverage":["The pair records the raw calcPr fullPrecision switch that corresponds to Excel's precision-as-displayed setting. WCAB does not emulate Excel's calculation engine or claim that a client applied the control.","Both generated packages retain the exact stored 10.005 input and its two-decimal number format. The validator does not claim that opening, calculating, or saving either workbook rounds a value or produces a particular formula result.","The pair differs only in workbook calculation metadata; no worksheet value, formula text, number format, or dependency edge is edited."],"coverage_expectations":[],"facts":[{"baseline_full_precision":true,"candidate_full_precision":false,"formula":"=Inputs!$B$2*2","formula_cell":"B2","formula_sheet":"Model","input_cell":"B2","input_sheet":"Inputs","input_value":10.005,"kind":"precision_as_displayed_enabled","number_format":"0.00"}],"family":"governance","id":"governance.precision_as_displayed_enabled","must_reach":[{"source":{"cell":"B2","sheet":"Inputs"},"targets":[{"cell":"B2","sheet":"Model"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":3,"title":"Precision-as-displayed calculation is enabled without a cell edit","topology":"pair"}
|
| 16 |
{"baseline_files":[{"bytes":5599,"path":"governance/static_cycle_introduced/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5596,"path":"governance/static_cycle_introduced/candidate.xlsx","sha256":"086d420690d81e6fd79146bf1e721fd28f71bdf292bf927566ffbc2ce08d7b5d"}],"case_path":"governance/static_cycle_introduced","coverage":["The cycle is direct and static; iterative calculation settings and dynamic references are out of scope."],"coverage_expectations":[],"facts":[{"cells":[{"cell":"D10","sheet":"Controls"},{"cell":"D11","sheet":"Controls"}],"kind":"static_cycle_introduced"}],"family":"governance","id":"governance.static_cycle_introduced","must_reach":[],"review_expectation":"block","schema_version":3,"title":"Two direct formulas form a static cycle","topology":"pair"}
|