@bilig/headless 0.11.22 → 0.11.23
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 +18 -15
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -99,7 +99,9 @@ pnpm --filter @bilig/headless build
|
|
|
99
99
|
[`npm run subscription-mrr`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#subscription-mrr-forecast)
|
|
100
100
|
for churn, expansion, and ending MRR formulas, or
|
|
101
101
|
[`npm run quote-approval`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#quote-approval-threshold)
|
|
102
|
-
for formula-backed quote discount approvals
|
|
102
|
+
for formula-backed quote discount approvals, or
|
|
103
|
+
[`npm run fulfillment-capacity`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#fulfillment-capacity-plan)
|
|
104
|
+
for order volume, labor hours, and capacity gap formulas.
|
|
103
105
|
- Run the
|
|
104
106
|
[serverless WorkPaper API example](https://github.com/proompteng/bilig/tree/main/examples/serverless-workpaper-api)
|
|
105
107
|
when the workbook belongs behind an HTTP or agent-tool boundary.
|
|
@@ -122,20 +124,21 @@ pnpm --filter @bilig/headless build
|
|
|
122
124
|
The full example catalog lives in
|
|
123
125
|
[`examples/headless-workpaper/README.md`](https://github.com/proompteng/bilig/blob/main/examples/headless-workpaper/README.md).
|
|
124
126
|
|
|
125
|
-
| Need | Start with
|
|
126
|
-
| ------------------------------------ |
|
|
127
|
-
| Evaluate formulas from API records | `npm run json-records`
|
|
128
|
-
| Load records already saved on disk | `npm run json-file`
|
|
129
|
-
| Persist and restore a workbook | `npm run persistence`
|
|
130
|
-
| Verify an agent writeback | `npm run agent:verify`
|
|
131
|
-
| Wrap WorkPaper operations as tools | `npm run agent:tool-call`
|
|
132
|
-
| Flag budget variance rows | `npm run budget-variance`
|
|
133
|
-
| Check
|
|
134
|
-
|
|
|
135
|
-
|
|
|
136
|
-
|
|
|
137
|
-
|
|
|
138
|
-
|
|
|
127
|
+
| Need | Start with | Existing example |
|
|
128
|
+
| ------------------------------------ | ------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------- |
|
|
129
|
+
| Evaluate formulas from API records | `npm run json-records` | [JSON records input](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#json-records-input) |
|
|
130
|
+
| Load records already saved on disk | `npm run json-file` | [JSON file input](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#json-file-input) |
|
|
131
|
+
| Persist and restore a workbook | `npm run persistence` | [Persistence round trip](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#persistence-round-trip) |
|
|
132
|
+
| Verify an agent writeback | `npm run agent:verify` | [Agent writeback verification](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#agent-writeback-verification) |
|
|
133
|
+
| Wrap WorkPaper operations as tools | `npm run agent:tool-call` | [Agent tool call loop](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#agent-tool-call-loop) |
|
|
134
|
+
| Flag budget variance rows | `npm run budget-variance` | [Budget variance alerts](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#budget-variance-alerts) |
|
|
135
|
+
| Check fulfillment capacity | `npm run fulfillment-capacity` | [Fulfillment capacity plan](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#fulfillment-capacity-plan) |
|
|
136
|
+
| Check quote approval threshold | `npm run quote-approval` | [Quote approval threshold](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#quote-approval-threshold) |
|
|
137
|
+
| Forecast subscription MRR | `npm run subscription-mrr` | [Subscription MRR forecast](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#subscription-mrr-forecast) |
|
|
138
|
+
| Return workbook results over HTTP | `npm run http-json-summary` | [HTTP JSON summary](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#http-json-summary) |
|
|
139
|
+
| Calculate invoice totals | `npm run invoice-totals` | [Invoice totals](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#invoice-totals) |
|
|
140
|
+
| Inspect restored workbook shape | `npm run sheet-inspection` | [Sheet inspection](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#sheet-inspection) |
|
|
141
|
+
| Compare computed values and formulas | `npm run range-readback` | [Range readback](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#range-readback) |
|
|
139
142
|
|
|
140
143
|
## Production Status
|
|
141
144
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/headless",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.23",
|
|
4
4
|
"description": "Headless spreadsheet engine for Node.js formulas, workbook JSON persistence, and service-side spreadsheet automation.",
|
|
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.11.
|
|
70
|
-
"@bilig/formula": "0.11.
|
|
71
|
-
"@bilig/protocol": "0.11.
|
|
69
|
+
"@bilig/core": "0.11.23",
|
|
70
|
+
"@bilig/formula": "0.11.23",
|
|
71
|
+
"@bilig/protocol": "0.11.23"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=24.0.0"
|