@bilig/headless 0.10.11 → 0.10.13
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 +15 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -103,6 +103,8 @@ Repository:
|
|
|
103
103
|
[`docs/node-service-workpaper-recipe.md`](../../docs/node-service-workpaper-recipe.md)
|
|
104
104
|
- CSV-shaped input recipe:
|
|
105
105
|
[`docs/csv-shaped-workpaper-input-recipe.md`](../../docs/csv-shaped-workpaper-input-recipe.md)
|
|
106
|
+
- unsupported formula troubleshooting:
|
|
107
|
+
[`docs/unsupported-formula-troubleshooting-recipe.md`](../../docs/unsupported-formula-troubleshooting-recipe.md)
|
|
106
108
|
- agent tool-calling recipe:
|
|
107
109
|
[`docs/agent-workpaper-tool-calling-recipe.md`](../../docs/agent-workpaper-tool-calling-recipe.md)
|
|
108
110
|
- public adoption kit:
|
|
@@ -115,6 +117,8 @@ Repository:
|
|
|
115
117
|
[`docs/xlsx-corpus-verifier-walkthrough.md`](../../docs/xlsx-corpus-verifier-walkthrough.md)
|
|
116
118
|
- HyperFormula comparison:
|
|
117
119
|
[`docs/hyperformula-alternative-headless-workpaper.md`](../../docs/hyperformula-alternative-headless-workpaper.md)
|
|
120
|
+
- local benchmark walkthrough:
|
|
121
|
+
[`docs/local-workpaper-benchmark-walkthrough.md`](../../docs/local-workpaper-benchmark-walkthrough.md)
|
|
118
122
|
- XLOOKUP exact fixture walkthrough:
|
|
119
123
|
[`docs/formula-edge-xlookup-exact-fixture.md`](../../docs/formula-edge-xlookup-exact-fixture.md)
|
|
120
124
|
- SUMIFS paired criteria fixture walkthrough:
|
|
@@ -233,6 +237,12 @@ For simple tabular service payloads, see
|
|
|
233
237
|
It normalizes a small CSV-shaped fixture into the `WorkPaper.buildFromSheets()`
|
|
234
238
|
array shape and reads formula-backed summaries.
|
|
235
239
|
|
|
240
|
+
For formula error handling, see
|
|
241
|
+
[`docs/unsupported-formula-troubleshooting-recipe.md`](../../docs/unsupported-formula-troubleshooting-recipe.md).
|
|
242
|
+
It shows how to pair `getCellDisplayValue()` with
|
|
243
|
+
`getCellFormulaDiagnostics()` so Node services and agent tools can return
|
|
244
|
+
actionable errors instead of silently accepting unsupported formula inputs.
|
|
245
|
+
|
|
236
246
|
For a concise evaluator-facing summary with copy-paste npm commands, proof
|
|
237
247
|
links, shareable copy, and overclaim guardrails, use the root
|
|
238
248
|
[`Public Adoption Kit`](../../docs/public-adoption-kit.md).
|
|
@@ -463,6 +473,11 @@ pnpm workpaper:bench:competitive:check
|
|
|
463
473
|
pnpm run ci
|
|
464
474
|
```
|
|
465
475
|
|
|
476
|
+
For a newcomer-friendly benchmark command walkthrough, see
|
|
477
|
+
[`docs/local-workpaper-benchmark-walkthrough.md`](../../docs/local-workpaper-benchmark-walkthrough.md).
|
|
478
|
+
It explains the committed artifact check, a reduced local smoke run, and the
|
|
479
|
+
scorecard fields to compare in benchmark diffs.
|
|
480
|
+
|
|
466
481
|
Regenerate the competitive artifact only when intentionally updating benchmark
|
|
467
482
|
evidence:
|
|
468
483
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/headless",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.13",
|
|
4
4
|
"description": "Headless spreadsheet engine and WorkPaper workbook facade for Node services, coding agents, and HyperFormula-style workflows.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"build": "rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@bilig/core": "0.10.
|
|
53
|
-
"@bilig/formula": "0.10.
|
|
54
|
-
"@bilig/protocol": "0.10.
|
|
52
|
+
"@bilig/core": "0.10.13",
|
|
53
|
+
"@bilig/formula": "0.10.13",
|
|
54
|
+
"@bilig/protocol": "0.10.13"
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=24.0.0"
|