@bilig/headless 0.10.10 → 0.10.12
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 +29 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -99,6 +99,12 @@ Repository:
|
|
|
99
99
|
- npm: <https://www.npmjs.com/package/@bilig/headless>
|
|
100
100
|
- runnable example:
|
|
101
101
|
[`examples/headless-workpaper`](../../examples/headless-workpaper)
|
|
102
|
+
- Node service recipe:
|
|
103
|
+
[`docs/node-service-workpaper-recipe.md`](../../docs/node-service-workpaper-recipe.md)
|
|
104
|
+
- CSV-shaped input recipe:
|
|
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)
|
|
102
108
|
- agent tool-calling recipe:
|
|
103
109
|
[`docs/agent-workpaper-tool-calling-recipe.md`](../../docs/agent-workpaper-tool-calling-recipe.md)
|
|
104
110
|
- public adoption kit:
|
|
@@ -111,6 +117,8 @@ Repository:
|
|
|
111
117
|
[`docs/xlsx-corpus-verifier-walkthrough.md`](../../docs/xlsx-corpus-verifier-walkthrough.md)
|
|
112
118
|
- HyperFormula comparison:
|
|
113
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)
|
|
114
122
|
- XLOOKUP exact fixture walkthrough:
|
|
115
123
|
[`docs/formula-edge-xlookup-exact-fixture.md`](../../docs/formula-edge-xlookup-exact-fixture.md)
|
|
116
124
|
- SUMIFS paired criteria fixture walkthrough:
|
|
@@ -219,6 +227,22 @@ persistence after a successful edit.
|
|
|
219
227
|
Repository CI also runs the same example against packed local runtime packages
|
|
220
228
|
through `pnpm workpaper:smoke:external`.
|
|
221
229
|
|
|
230
|
+
For a minimal service boundary with no framework dependency, see
|
|
231
|
+
[`docs/node-service-workpaper-recipe.md`](../../docs/node-service-workpaper-recipe.md).
|
|
232
|
+
It shows a built-in Node HTTP route that reads a computed summary, applies one
|
|
233
|
+
controlled input edit, and persists the WorkPaper document.
|
|
234
|
+
|
|
235
|
+
For simple tabular service payloads, see
|
|
236
|
+
[`docs/csv-shaped-workpaper-input-recipe.md`](../../docs/csv-shaped-workpaper-input-recipe.md).
|
|
237
|
+
It normalizes a small CSV-shaped fixture into the `WorkPaper.buildFromSheets()`
|
|
238
|
+
array shape and reads formula-backed summaries.
|
|
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
|
+
|
|
222
246
|
For a concise evaluator-facing summary with copy-paste npm commands, proof
|
|
223
247
|
links, shareable copy, and overclaim guardrails, use the root
|
|
224
248
|
[`Public Adoption Kit`](../../docs/public-adoption-kit.md).
|
|
@@ -449,6 +473,11 @@ pnpm workpaper:bench:competitive:check
|
|
|
449
473
|
pnpm run ci
|
|
450
474
|
```
|
|
451
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
|
+
|
|
452
481
|
Regenerate the competitive artifact only when intentionally updating benchmark
|
|
453
482
|
evidence:
|
|
454
483
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/headless",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.12",
|
|
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.12",
|
|
53
|
+
"@bilig/formula": "0.10.12",
|
|
54
|
+
"@bilig/protocol": "0.10.12"
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=24.0.0"
|