@bilig/headless 0.11.33 → 0.11.35
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 +12 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ validated WorkPaper model once data is in workbook form.
|
|
|
23
23
|
- Live growth snapshot:
|
|
24
24
|
<https://proompteng.github.io/bilig/community-growth-snapshot.html>
|
|
25
25
|
- Latest checked-in snapshot: `24` GitHub stars, `13,427` npm downloads in the
|
|
26
|
-
last week, `
|
|
26
|
+
last week, `32` open `good first issue` tickets, `7` GitHub Discussions, and
|
|
27
27
|
`393` recent repository views.
|
|
28
28
|
- Benchmark evidence:
|
|
29
29
|
[`46/46` comparable WorkPaper mean wins](https://github.com/proompteng/bilig/blob/main/docs/what-workpaper-benchmark-proves.md),
|
|
@@ -106,6 +106,10 @@ Pick the path that matches the job:
|
|
|
106
106
|
[`npm run agent:framework-adapters`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#agent-framework-adapters).
|
|
107
107
|
- Map WorkPaper tools to Vercel AI SDK and LangChain:
|
|
108
108
|
[framework adapter guide](https://proompteng.github.io/bilig/vercel-ai-sdk-langchain-spreadsheet-tool.html).
|
|
109
|
+
- Expose WorkPaper through an MCP-style tool server shape:
|
|
110
|
+
[`npm run agent:mcp-tools`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#mcp-tool-server-shape)
|
|
111
|
+
and the
|
|
112
|
+
[MCP spreadsheet tool server guide](https://proompteng.github.io/bilig/mcp-workpaper-tool-server.html).
|
|
109
113
|
- Put WorkPaper behind HTTP:
|
|
110
114
|
[`examples/serverless-workpaper-api`](https://github.com/proompteng/bilig/tree/main/examples/serverless-workpaper-api).
|
|
111
115
|
- Compare engines before adopting:
|
|
@@ -137,6 +141,7 @@ The full example catalog lives in
|
|
|
137
141
|
| Verify an agent writeback | `npm run agent:verify` | [Agent writeback verification](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#agent-writeback-verification) |
|
|
138
142
|
| 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) |
|
|
139
143
|
| Adapt tools to agent frameworks | `npm run agent:framework-adapters` | [Agent framework adapters](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#agent-framework-adapters) |
|
|
144
|
+
| Expose MCP-style tools | `npm run agent:mcp-tools` | [MCP tool server shape](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#mcp-tool-server-shape) |
|
|
140
145
|
| Flag budget variance rows | `npm run budget-variance` | [Budget variance alerts](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#budget-variance-alerts) |
|
|
141
146
|
| Check fulfillment capacity | `npm run fulfillment-capacity` | [Fulfillment capacity plan](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#fulfillment-capacity-plan) |
|
|
142
147
|
| Check quote approval threshold | `npm run quote-approval` | [Quote approval threshold](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#quote-approval-threshold) |
|
|
@@ -391,6 +396,12 @@ persistence bytes, and restored readback equality.
|
|
|
391
396
|
into Vercel AI SDK and LangChain-style tool objects without adding either
|
|
392
397
|
framework as an example dependency.
|
|
393
398
|
|
|
399
|
+
`npm run agent:mcp-tools` exposes the same operations through dependency-free
|
|
400
|
+
MCP-style `tools/list` and `tools/call` JSON-RPC responses with JSON Schema
|
|
401
|
+
inputs and structured formula readback.
|
|
402
|
+
The `mcp` keyword points to this runnable local adapter: no hosted service, no
|
|
403
|
+
API key, and no agent framework dependency.
|
|
404
|
+
|
|
394
405
|
For a framework-neutral recipe that wraps WorkPaper operations as agent-callable
|
|
395
406
|
tools, see
|
|
396
407
|
[`docs/agent-workpaper-tool-calling-recipe.md`](https://github.com/proompteng/bilig/blob/main/docs/agent-workpaper-tool-calling-recipe.md).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/headless",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.35",
|
|
4
4
|
"description": "Headless spreadsheet engine for Node.js formulas, agent tools, workbook JSON persistence, and service-side spreadsheet automation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -79,9 +79,9 @@
|
|
|
79
79
|
"build": "rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
|
-
"@bilig/core": "0.11.
|
|
83
|
-
"@bilig/formula": "0.11.
|
|
84
|
-
"@bilig/protocol": "0.11.
|
|
82
|
+
"@bilig/core": "0.11.35",
|
|
83
|
+
"@bilig/formula": "0.11.35",
|
|
84
|
+
"@bilig/protocol": "0.11.35"
|
|
85
85
|
},
|
|
86
86
|
"engines": {
|
|
87
87
|
"node": ">=24.0.0"
|