@bilig/workpaper 0.160.1 → 0.161.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/AGENTS.md CHANGED
@@ -71,7 +71,7 @@ npm exec --yes --package @bilig/xlsx-formula-recalc@latest -- bilig-evaluate --d
71
71
  npm exec --package @bilig/workpaper@latest -- bilig-agent-challenge --json
72
72
  npm exec --package @bilig/workpaper@latest -- bilig-mcp-challenge --json
73
73
  npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
74
- npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --from-xlsx ./pricing.xlsx --workpaper ./.bilig/pricing.workpaper.json --writable
74
+ npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --from-xlsx ./pricing.xlsx
75
75
  npm exec --package @bilig/workpaper@latest -- bilig-formula-clinic ./reduced.xlsx --cells "Summary!B7,Inputs!B2"
76
76
  ```
77
77
 
package/README.md CHANGED
@@ -241,6 +241,7 @@ npm exec --package @bilig/workpaper@latest -- bilig-agent-challenge --json
241
241
  npm exec --package @bilig/workpaper@latest -- bilig-mcp-challenge --json
242
242
  npm exec --package @bilig/workpaper@latest -- bilig-n8n-formula-server --port 4321
243
243
  npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
244
+ npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --from-xlsx ./pricing.xlsx
244
245
  npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --from-xlsx ./pricing.xlsx --workpaper ./.bilig/pricing.workpaper.json --writable
245
246
  ```
246
247
 
@@ -250,10 +251,11 @@ npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --from-xlsx ./
250
251
  The challenge commands edit one input, recalculate dependent formulas, export
251
252
  WorkPaper JSON, restore it, and print a `verified: true` proof object.
252
253
  Use `--from-xlsx` when the agent already has an XLSX file: Bilig imports it once
253
- into persisted WorkPaper JSON, then starts the same file-backed MCP server.
254
- That XLSX-backed MCP path also lists `analyze_workbook_risk`, a read-only tool
255
- fixed to the source workbook passed at startup. It reports workbook risk
256
- indicators before an agent trusts the imported WorkPaper and does not certify Excel compatibility.
254
+ into an in-memory MCP server by default, or into persisted WorkPaper JSON when
255
+ `--workpaper --writable` is also supplied. That XLSX-backed MCP path also lists
256
+ `analyze_workbook_risk`, a read-only tool fixed to the source workbook passed at
257
+ startup. It reports workbook risk indicators before an agent trusts the imported
258
+ WorkPaper and does not certify Excel compatibility.
257
259
 
258
260
  ## Agent Adoption Kit
259
261
 
package/SKILL.md CHANGED
@@ -112,10 +112,12 @@ treat its returned `tools` array as the source of truth for the currently publis
112
112
  - `validate_formula`
113
113
 
114
114
  When the server is started through `@bilig/workpaper@latest` with
115
- `--from-xlsx ./pricing.xlsx --workpaper ./.bilig/pricing.workpaper.json`,
116
- `tools/list` also includes `analyze_workbook_risk`. That tool is fixed to
117
- the source XLSX passed at startup and reports workbook risk indicators before an
118
- agent trusts the imported WorkPaper. It does not certify Excel compatibility.
115
+ `--from-xlsx ./pricing.xlsx`, `tools/list` also includes
116
+ `analyze_workbook_risk`. That tool is fixed to the source XLSX passed at
117
+ startup and reports workbook risk indicators before an agent trusts the imported
118
+ WorkPaper. Without `--workpaper --writable`, edits stay in memory; add a
119
+ WorkPaper JSON path only when the task needs persisted file state. It does not
120
+ certify Excel compatibility.
119
121
 
120
122
  After a write, always read the dependent output cell and export the WorkPaper
121
123
  document. If the listed tool set includes `set_cell_contents_and_readback`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bilig/workpaper",
3
- "version": "0.160.1",
3
+ "version": "0.161.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",
@@ -89,9 +89,9 @@
89
89
  "build": "pnpm --dir ../.. --filter bilig-workpaper build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
90
90
  },
91
91
  "dependencies": {
92
- "@bilig/headless": "0.160.1",
93
- "@bilig/xlsx-formula-recalc": "0.160.1",
94
- "bilig-workpaper": "0.160.1"
92
+ "@bilig/headless": "0.161.0",
93
+ "@bilig/xlsx-formula-recalc": "0.161.0",
94
+ "bilig-workpaper": "0.161.0"
95
95
  },
96
96
  "devDependencies": {
97
97
  "ai": "6.0.195",
package/server.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "io.github.proompteng/bilig-workpaper",
4
4
  "title": "Bilig WorkPaper",
5
5
  "description": "Formula readback, input edits, JSON persistence, and workbook risk preflight for agents.",
6
- "version": "0.160.1",
6
+ "version": "0.161.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.160.1",
21
+ "version": "0.161.0",
22
22
  "transport": {
23
23
  "type": "stdio"
24
24
  }