@bilig/headless 0.9.4 → 0.9.6

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 +32 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -32,6 +32,9 @@ Current release posture:
32
32
  - The public benchmark evidence note explains the measured workload families,
33
33
  engine metadata, exclusions, and the current p95 nuance:
34
34
  [`docs/headless-workpaper-benchmark-evidence.md`](../../docs/headless-workpaper-benchmark-evidence.md).
35
+ - The shareable benchmark explainer states what the scorecard proves and what
36
+ it does not:
37
+ [`docs/what-workpaper-benchmark-proves.md`](../../docs/what-workpaper-benchmark-proves.md).
35
38
  - Recently fixed and hardened P1 risks are covered by regression tests:
36
39
  - `updateConfig()` now applies `useColumnIndex` correctly when a rebuild-only
37
40
  config key changes in the same update.
@@ -76,11 +79,30 @@ Repository:
76
79
 
77
80
  - Website: <https://proompteng.github.io/bilig/>
78
81
  - GitHub: <https://github.com/proompteng/bilig>
82
+ - Star or bookmark: <https://github.com/proompteng/bilig/stargazers>
83
+ - Good first issues:
84
+ <https://github.com/proompteng/bilig/blob/main/docs/starter-issues.md>
79
85
  - npm: <https://www.npmjs.com/package/@bilig/headless>
80
86
  - runnable example:
81
87
  [`examples/headless-workpaper`](../../examples/headless-workpaper)
82
88
  - public adoption kit:
83
89
  [`docs/public-adoption-kit.md`](../../docs/public-adoption-kit.md)
90
+ - revenue-model article:
91
+ [`docs/building-a-revenue-model-with-headless-workpaper.md`](../../docs/building-a-revenue-model-with-headless-workpaper.md)
92
+ - compatibility boundaries:
93
+ [`docs/where-bilig-is-not-excel-compatible-yet.md`](../../docs/where-bilig-is-not-excel-compatible-yet.md)
94
+ - XLSX corpus verifier walkthrough:
95
+ [`docs/xlsx-corpus-verifier-walkthrough.md`](../../docs/xlsx-corpus-verifier-walkthrough.md)
96
+ - XLOOKUP exact fixture walkthrough:
97
+ [`docs/formula-edge-xlookup-exact-fixture.md`](../../docs/formula-edge-xlookup-exact-fixture.md)
98
+ - X reply growth playbook:
99
+ [`docs/x-reply-growth-playbook.md`](../../docs/x-reply-growth-playbook.md)
100
+ - Show HN launch pack:
101
+ [`docs/show-hn-launch-pack.md`](../../docs/show-hn-launch-pack.md)
102
+ - Community launch pack:
103
+ [`docs/community-launch-pack.md`](../../docs/community-launch-pack.md)
104
+ - DEV-ready article:
105
+ [`docs/dev-to-workbook-apis-post.md`](../../docs/dev-to-workbook-apis-post.md)
84
106
 
85
107
  Inside this monorepo:
86
108
 
@@ -163,6 +185,16 @@ For a concise evaluator-facing summary with copy-paste npm commands, proof
163
185
  links, shareable copy, and overclaim guardrails, use the root
164
186
  [`Public Adoption Kit`](../../docs/public-adoption-kit.md).
165
187
 
188
+ For a focused persistence walkthrough, see
189
+ [`docs/persisting-formula-backed-workpaper-documents-in-node.md`](../../docs/persisting-formula-backed-workpaper-documents-in-node.md)
190
+ and run the example package:
191
+
192
+ ```sh
193
+ cd examples/headless-workpaper
194
+ npm install
195
+ npm run persistence
196
+ ```
197
+
166
198
  ## Core Concepts
167
199
 
168
200
  - `WorkPaper` is the top-level workbook object. Create it with
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bilig/headless",
3
- "version": "0.9.4",
3
+ "version": "0.9.6",
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.9.4",
53
- "@bilig/formula": "0.9.4",
54
- "@bilig/protocol": "0.9.4"
52
+ "@bilig/core": "0.9.6",
53
+ "@bilig/formula": "0.9.6",
54
+ "@bilig/protocol": "0.9.6"
55
55
  },
56
56
  "engines": {
57
57
  "node": ">=24.0.0"