@bilig/workpaper 0.160.1 → 0.160.2
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 +1 -1
- package/README.md +6 -4
- package/SKILL.md +6 -4
- package/package.json +4 -4
- package/server.json +2 -2
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
|
|
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
|
|
254
|
-
That XLSX-backed MCP path also lists
|
|
255
|
-
fixed to the source workbook passed at
|
|
256
|
-
indicators before an agent trusts the imported
|
|
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
|
|
116
|
-
`
|
|
117
|
-
|
|
118
|
-
|
|
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.
|
|
3
|
+
"version": "0.160.2",
|
|
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.
|
|
93
|
-
"@bilig/xlsx-formula-recalc": "0.160.
|
|
94
|
-
"bilig-workpaper": "0.160.
|
|
92
|
+
"@bilig/headless": "0.160.2",
|
|
93
|
+
"@bilig/xlsx-formula-recalc": "0.160.2",
|
|
94
|
+
"bilig-workpaper": "0.160.2"
|
|
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.
|
|
6
|
+
"version": "0.160.2",
|
|
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.
|
|
21
|
+
"version": "0.160.2",
|
|
22
22
|
"transport": {
|
|
23
23
|
"type": "stdio"
|
|
24
24
|
}
|