@bilig/workpaper 0.140.1 → 0.142.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 CHANGED
@@ -181,6 +181,7 @@ npm exec --package @bilig/workpaper@latest -- bilig-agent-challenge --json
181
181
  npm exec --package @bilig/workpaper@latest -- bilig-mcp-challenge --json
182
182
  npm exec --package @bilig/workpaper@latest -- bilig-n8n-formula-server --port 4321
183
183
  npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
184
+ npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --from-xlsx ./pricing.xlsx --workpaper ./.bilig/pricing.workpaper.json --writable
184
185
  ```
185
186
 
186
187
  `bilig-evaluate` prints a `bilig-evaluator.v1` object with `door`, `evidence`,
@@ -188,6 +189,8 @@ npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --workpaper ./
188
189
 
189
190
  The challenge commands edit one input, recalculate dependent formulas, export
190
191
  WorkPaper JSON, restore it, and print a `verified: true` proof object.
192
+ Use `--from-xlsx` when the agent already has an XLSX file: Bilig imports it once
193
+ into persisted WorkPaper JSON, then starts the same file-backed MCP server.
191
194
 
192
195
  ## Agent Adoption Kit
193
196
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bilig/workpaper",
3
- "version": "0.140.1",
3
+ "version": "0.142.0",
4
4
  "description": "WorkPaper API, CLI evaluator, and MCP server for headless spreadsheet formulas in Node.js services and agents.",
5
5
  "keywords": [
6
6
  "agent-tools",
@@ -88,9 +88,9 @@
88
88
  "build": "pnpm --dir ../.. --filter bilig-workpaper build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
89
89
  },
90
90
  "dependencies": {
91
- "@bilig/headless": "0.140.1",
92
- "@bilig/xlsx-formula-recalc": "0.140.1",
93
- "bilig-workpaper": "0.140.1"
91
+ "@bilig/headless": "0.142.0",
92
+ "@bilig/xlsx-formula-recalc": "0.142.0",
93
+ "bilig-workpaper": "0.142.0"
94
94
  },
95
95
  "devDependencies": {
96
96
  "ai": "6.0.182",
package/server.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "io.github.proompteng/bilig-workpaper",
4
4
  "title": "Bilig WorkPaper",
5
5
  "description": "WorkPaper MCP tools, resources, and prompts for readback, edits, and JSON persistence.",
6
- "version": "0.140.1",
6
+ "version": "0.142.0",
7
7
  "repository": {
8
8
  "url": "https://github.com/proompteng/bilig",
9
9
  "source": "github"
@@ -18,7 +18,7 @@
18
18
  {
19
19
  "registryType": "npm",
20
20
  "identifier": "@bilig/workpaper",
21
- "version": "0.140.1",
21
+ "version": "0.142.0",
22
22
  "transport": {
23
23
  "type": "stdio"
24
24
  }