@bilig/headless 0.11.35 → 0.12.0
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 +3 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -399,8 +399,9 @@ framework as an example dependency.
|
|
|
399
399
|
`npm run agent:mcp-tools` exposes the same operations through dependency-free
|
|
400
400
|
MCP-style `tools/list` and `tools/call` JSON-RPC responses with JSON Schema
|
|
401
401
|
inputs and structured formula readback.
|
|
402
|
-
|
|
403
|
-
|
|
402
|
+
`npm run agent:mcp-stdio` puts the same handlers behind newline-delimited
|
|
403
|
+
JSON-RPC over stdin/stdout. The `mcp` keyword points to these runnable local
|
|
404
|
+
adapters: no hosted service, no API key, and no agent framework dependency.
|
|
404
405
|
|
|
405
406
|
For a framework-neutral recipe that wraps WorkPaper operations as agent-callable
|
|
406
407
|
tools, see
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/headless",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
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.
|
|
83
|
-
"@bilig/formula": "0.
|
|
84
|
-
"@bilig/protocol": "0.
|
|
82
|
+
"@bilig/core": "0.12.0",
|
|
83
|
+
"@bilig/formula": "0.12.0",
|
|
84
|
+
"@bilig/protocol": "0.12.0"
|
|
85
85
|
},
|
|
86
86
|
"engines": {
|
|
87
87
|
"node": ">=24.0.0"
|