@bilig/headless 0.10.9 → 0.10.11

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.
Files changed (2) hide show
  1. package/README.md +28 -0
  2. 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
+ - agent tool-calling recipe:
107
+ [`docs/agent-workpaper-tool-calling-recipe.md`](../../docs/agent-workpaper-tool-calling-recipe.md)
102
108
  - public adoption kit:
103
109
  [`docs/public-adoption-kit.md`](../../docs/public-adoption-kit.md)
104
110
  - revenue-model article:
@@ -107,8 +113,14 @@ Repository:
107
113
  [`docs/where-bilig-is-not-excel-compatible-yet.md`](../../docs/where-bilig-is-not-excel-compatible-yet.md)
108
114
  - XLSX corpus verifier walkthrough:
109
115
  [`docs/xlsx-corpus-verifier-walkthrough.md`](../../docs/xlsx-corpus-verifier-walkthrough.md)
116
+ - HyperFormula comparison:
117
+ [`docs/hyperformula-alternative-headless-workpaper.md`](../../docs/hyperformula-alternative-headless-workpaper.md)
110
118
  - XLOOKUP exact fixture walkthrough:
111
119
  [`docs/formula-edge-xlookup-exact-fixture.md`](../../docs/formula-edge-xlookup-exact-fixture.md)
120
+ - SUMIFS paired criteria fixture walkthrough:
121
+ [`docs/formula-edge-sumifs-paired-criteria-fixture.md`](../../docs/formula-edge-sumifs-paired-criteria-fixture.md)
122
+ - GROUPBY spill fixture walkthrough:
123
+ [`docs/formula-edge-groupby-spill-fixture.md`](../../docs/formula-edge-groupby-spill-fixture.md)
112
124
  - X reply growth playbook:
113
125
  [`docs/x-reply-growth-playbook.md`](../../docs/x-reply-growth-playbook.md)
114
126
  - Show HN launch pack:
@@ -202,9 +214,25 @@ That demo records the exact assumption cells changed, verifies dependent formula
202
214
  readback, persists the workbook, restores it, and checks that formulas and
203
215
  outputs survived the round trip.
204
216
 
217
+ For a framework-neutral recipe that wraps WorkPaper operations as agent-callable
218
+ tools, see
219
+ [`docs/agent-workpaper-tool-calling-recipe.md`](../../docs/agent-workpaper-tool-calling-recipe.md).
220
+ It covers validated sheet/address parsing, computed before/after readback, and
221
+ persistence after a successful edit.
222
+
205
223
  Repository CI also runs the same example against packed local runtime packages
206
224
  through `pnpm workpaper:smoke:external`.
207
225
 
226
+ For a minimal service boundary with no framework dependency, see
227
+ [`docs/node-service-workpaper-recipe.md`](../../docs/node-service-workpaper-recipe.md).
228
+ It shows a built-in Node HTTP route that reads a computed summary, applies one
229
+ controlled input edit, and persists the WorkPaper document.
230
+
231
+ For simple tabular service payloads, see
232
+ [`docs/csv-shaped-workpaper-input-recipe.md`](../../docs/csv-shaped-workpaper-input-recipe.md).
233
+ It normalizes a small CSV-shaped fixture into the `WorkPaper.buildFromSheets()`
234
+ array shape and reads formula-backed summaries.
235
+
208
236
  For a concise evaluator-facing summary with copy-paste npm commands, proof
209
237
  links, shareable copy, and overclaim guardrails, use the root
210
238
  [`Public Adoption Kit`](../../docs/public-adoption-kit.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bilig/headless",
3
- "version": "0.10.9",
3
+ "version": "0.10.11",
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.9",
53
- "@bilig/formula": "0.10.9",
54
- "@bilig/protocol": "0.10.9"
52
+ "@bilig/core": "0.10.11",
53
+ "@bilig/formula": "0.10.11",
54
+ "@bilig/protocol": "0.10.11"
55
55
  },
56
56
  "engines": {
57
57
  "node": ">=24.0.0"