@bilig/headless 0.11.34 → 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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. 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, `30` open `good first issue` tickets, `5` GitHub Discussions, and
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),
@@ -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
- The `mcp` keyword points to this runnable local adapter: no hosted service, no
403
- API key, and no agent framework dependency.
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.11.34",
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.11.34",
83
- "@bilig/formula": "0.11.34",
84
- "@bilig/protocol": "0.11.34"
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"