@bilig/headless 0.10.10 → 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.
- package/README.md +14 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -99,6 +99,10 @@ 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)
|
|
102
106
|
- agent tool-calling recipe:
|
|
103
107
|
[`docs/agent-workpaper-tool-calling-recipe.md`](../../docs/agent-workpaper-tool-calling-recipe.md)
|
|
104
108
|
- public adoption kit:
|
|
@@ -219,6 +223,16 @@ persistence after a successful edit.
|
|
|
219
223
|
Repository CI also runs the same example against packed local runtime packages
|
|
220
224
|
through `pnpm workpaper:smoke:external`.
|
|
221
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
|
+
|
|
222
236
|
For a concise evaluator-facing summary with copy-paste npm commands, proof
|
|
223
237
|
links, shareable copy, and overclaim guardrails, use the root
|
|
224
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.
|
|
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.
|
|
53
|
-
"@bilig/formula": "0.10.
|
|
54
|
-
"@bilig/protocol": "0.10.
|
|
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"
|