@bilig/headless 0.10.56 → 0.10.58
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 +9 -20
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -72,22 +72,25 @@ Supported scope:
|
|
|
72
72
|
|
|
73
73
|
## Install
|
|
74
74
|
|
|
75
|
-
Published package:
|
|
75
|
+
Published WorkPaper package:
|
|
76
76
|
|
|
77
77
|
```sh
|
|
78
78
|
pnpm add @bilig/headless
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
XLSX ingestion and export:
|
|
82
82
|
|
|
83
83
|
```sh
|
|
84
|
-
|
|
84
|
+
git clone https://github.com/proompteng/bilig.git
|
|
85
|
+
cd bilig
|
|
86
|
+
pnpm install
|
|
87
|
+
pnpm --filter @bilig/excel-import build
|
|
85
88
|
```
|
|
86
89
|
|
|
87
90
|
`@bilig/excel-import` lives in this monorepo, but its npm package name is still
|
|
88
|
-
being provisioned. Until that package is published on npm, use
|
|
89
|
-
|
|
90
|
-
|
|
91
|
+
being provisioned. Until that package is published on npm, use a repository
|
|
92
|
+
checkout for XLSX import/export work instead of adding `@bilig/excel-import` as
|
|
93
|
+
an external dependency.
|
|
91
94
|
|
|
92
95
|
Repository:
|
|
93
96
|
|
|
@@ -109,8 +112,6 @@ Repository:
|
|
|
109
112
|
[`docs/unsupported-formula-troubleshooting-recipe.md`](../../docs/unsupported-formula-troubleshooting-recipe.md)
|
|
110
113
|
- agent tool-calling recipe:
|
|
111
114
|
[`docs/agent-workpaper-tool-calling-recipe.md`](../../docs/agent-workpaper-tool-calling-recipe.md)
|
|
112
|
-
- public adoption kit:
|
|
113
|
-
[`docs/public-adoption-kit.md`](../../docs/public-adoption-kit.md)
|
|
114
115
|
- revenue-model article:
|
|
115
116
|
[`docs/building-a-revenue-model-with-headless-workpaper.md`](../../docs/building-a-revenue-model-with-headless-workpaper.md)
|
|
116
117
|
- compatibility boundaries:
|
|
@@ -127,14 +128,6 @@ Repository:
|
|
|
127
128
|
[`docs/formula-edge-sumifs-paired-criteria-fixture.md`](../../docs/formula-edge-sumifs-paired-criteria-fixture.md)
|
|
128
129
|
- GROUPBY spill fixture walkthrough:
|
|
129
130
|
[`docs/formula-edge-groupby-spill-fixture.md`](../../docs/formula-edge-groupby-spill-fixture.md)
|
|
130
|
-
- X reply growth playbook:
|
|
131
|
-
[`docs/x-reply-growth-playbook.md`](../../docs/x-reply-growth-playbook.md)
|
|
132
|
-
- Show HN launch pack:
|
|
133
|
-
[`docs/show-hn-launch-pack.md`](../../docs/show-hn-launch-pack.md)
|
|
134
|
-
- Community launch pack:
|
|
135
|
-
[`docs/community-launch-pack.md`](../../docs/community-launch-pack.md)
|
|
136
|
-
- Product Hunt launch assets:
|
|
137
|
-
[`docs/product-hunt-launch-assets.md`](../../docs/product-hunt-launch-assets.md)
|
|
138
131
|
- published DEV article:
|
|
139
132
|
<https://dev.to/gregkonush/why-agents-need-workbook-apis-instead-of-spreadsheet-screenshots-3d61>
|
|
140
133
|
- DEV article source:
|
|
@@ -273,10 +266,6 @@ It shows how to pair `getCellDisplayValue()` with
|
|
|
273
266
|
`getCellFormulaDiagnostics()` so Node services and agent tools can return
|
|
274
267
|
actionable errors instead of silently accepting unsupported formula inputs.
|
|
275
268
|
|
|
276
|
-
For a concise evaluator-facing summary with copy-paste npm commands, proof
|
|
277
|
-
links, shareable copy, and overclaim guardrails, use the root
|
|
278
|
-
[`Public Adoption Kit`](../../docs/public-adoption-kit.md).
|
|
279
|
-
|
|
280
269
|
For a focused persistence walkthrough, see
|
|
281
270
|
[`docs/persisting-formula-backed-workpaper-documents-in-node.md`](../../docs/persisting-formula-backed-workpaper-documents-in-node.md)
|
|
282
271
|
and run the example package:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/headless",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.58",
|
|
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",
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
"build": "rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@bilig/core": "0.10.
|
|
70
|
-
"@bilig/formula": "0.10.
|
|
71
|
-
"@bilig/protocol": "0.10.
|
|
69
|
+
"@bilig/core": "0.10.58",
|
|
70
|
+
"@bilig/formula": "0.10.58",
|
|
71
|
+
"@bilig/protocol": "0.10.58"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=24.0.0"
|