@bilig/headless 0.10.9 → 0.10.10
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 +14 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -99,6 +99,8 @@ Repository:
|
|
|
99
99
|
- npm: <https://www.npmjs.com/package/@bilig/headless>
|
|
100
100
|
- runnable example:
|
|
101
101
|
[`examples/headless-workpaper`](../../examples/headless-workpaper)
|
|
102
|
+
- agent tool-calling recipe:
|
|
103
|
+
[`docs/agent-workpaper-tool-calling-recipe.md`](../../docs/agent-workpaper-tool-calling-recipe.md)
|
|
102
104
|
- public adoption kit:
|
|
103
105
|
[`docs/public-adoption-kit.md`](../../docs/public-adoption-kit.md)
|
|
104
106
|
- revenue-model article:
|
|
@@ -107,8 +109,14 @@ Repository:
|
|
|
107
109
|
[`docs/where-bilig-is-not-excel-compatible-yet.md`](../../docs/where-bilig-is-not-excel-compatible-yet.md)
|
|
108
110
|
- XLSX corpus verifier walkthrough:
|
|
109
111
|
[`docs/xlsx-corpus-verifier-walkthrough.md`](../../docs/xlsx-corpus-verifier-walkthrough.md)
|
|
112
|
+
- HyperFormula comparison:
|
|
113
|
+
[`docs/hyperformula-alternative-headless-workpaper.md`](../../docs/hyperformula-alternative-headless-workpaper.md)
|
|
110
114
|
- XLOOKUP exact fixture walkthrough:
|
|
111
115
|
[`docs/formula-edge-xlookup-exact-fixture.md`](../../docs/formula-edge-xlookup-exact-fixture.md)
|
|
116
|
+
- SUMIFS paired criteria fixture walkthrough:
|
|
117
|
+
[`docs/formula-edge-sumifs-paired-criteria-fixture.md`](../../docs/formula-edge-sumifs-paired-criteria-fixture.md)
|
|
118
|
+
- GROUPBY spill fixture walkthrough:
|
|
119
|
+
[`docs/formula-edge-groupby-spill-fixture.md`](../../docs/formula-edge-groupby-spill-fixture.md)
|
|
112
120
|
- X reply growth playbook:
|
|
113
121
|
[`docs/x-reply-growth-playbook.md`](../../docs/x-reply-growth-playbook.md)
|
|
114
122
|
- Show HN launch pack:
|
|
@@ -202,6 +210,12 @@ That demo records the exact assumption cells changed, verifies dependent formula
|
|
|
202
210
|
readback, persists the workbook, restores it, and checks that formulas and
|
|
203
211
|
outputs survived the round trip.
|
|
204
212
|
|
|
213
|
+
For a framework-neutral recipe that wraps WorkPaper operations as agent-callable
|
|
214
|
+
tools, see
|
|
215
|
+
[`docs/agent-workpaper-tool-calling-recipe.md`](../../docs/agent-workpaper-tool-calling-recipe.md).
|
|
216
|
+
It covers validated sheet/address parsing, computed before/after readback, and
|
|
217
|
+
persistence after a successful edit.
|
|
218
|
+
|
|
205
219
|
Repository CI also runs the same example against packed local runtime packages
|
|
206
220
|
through `pnpm workpaper:smoke:external`.
|
|
207
221
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/headless",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.10",
|
|
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.10",
|
|
53
|
+
"@bilig/formula": "0.10.10",
|
|
54
|
+
"@bilig/protocol": "0.10.10"
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=24.0.0"
|