@bilig/xlsx-formula-recalc 0.131.1 → 0.131.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -76,17 +76,19 @@ Expected shape:
|
|
|
76
76
|
}
|
|
77
77
|
```
|
|
78
78
|
|
|
79
|
-
The JSON
|
|
80
|
-
discussion links.
|
|
79
|
+
The JSON contains proof fields only. It does not include star, release-watch,
|
|
80
|
+
or discussion links.
|
|
81
81
|
|
|
82
82
|
If a coding agent needs to edit workbook state instead of only inspecting XLSX
|
|
83
|
-
bytes, do not automate Excel or a browser grid. Run the
|
|
83
|
+
bytes, do not automate Excel or a browser grid. Run the agent evaluator:
|
|
84
84
|
|
|
85
85
|
```sh
|
|
86
|
-
npm exec --package @bilig/workpaper@latest -- bilig-mcp
|
|
86
|
+
npm exec --yes --package @bilig/workpaper@latest -- bilig-evaluate --door agent-mcp --json
|
|
87
87
|
```
|
|
88
88
|
|
|
89
|
-
|
|
89
|
+
Use `bilig-mcp-challenge --json` only when debugging the lower-level MCP
|
|
90
|
+
transcript. The [agent MCP evaluator](https://proompteng.github.io/bilig/eval-agent-mcp.html)
|
|
91
|
+
shows the same no-key proof path.
|
|
90
92
|
|
|
91
93
|
Use `cacheStatusSummary` and per-formula `cacheStatus` to separate confirmed
|
|
92
94
|
stale caches from missing cached values or formulas without a comparable
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/xlsx-formula-recalc",
|
|
3
|
-
"version": "0.131.
|
|
3
|
+
"version": "0.131.3",
|
|
4
4
|
"description": "Diagnose stale cached XLSX formula values and recalculate XLSX formulas in Node.js without Excel, LibreOffice, or browser automation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bilig",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"smoke": "node ./dist/cli.js --help"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
|
-
"xlsx-formula-recalc": "0.131.
|
|
81
|
+
"xlsx-formula-recalc": "0.131.3"
|
|
82
82
|
},
|
|
83
83
|
"engines": {
|
|
84
84
|
"node": ">=22.0.0"
|