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 +7 -5
- package/SKILL.md +6 -4
- package/package.json +3 -3
package/AGENTS.md
CHANGED
|
@@ -37,7 +37,7 @@ npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door agent-m
|
|
|
37
37
|
npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door agent-mcp --scenario provider-backed --json
|
|
38
38
|
npm exec --package bilig-workpaper@latest -- bilig-mcp-challenge --json
|
|
39
39
|
npm exec --package bilig-workpaper@latest -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
|
|
40
|
-
npm exec --package bilig-workpaper@latest -- bilig-workpaper-mcp --from-xlsx ./pricing.xlsx
|
|
40
|
+
npm exec --package bilig-workpaper@latest -- bilig-workpaper-mcp --from-xlsx ./pricing.xlsx
|
|
41
41
|
|
|
42
42
|
For Node or TypeScript, import bilig-workpaper directly. Check the edit by
|
|
43
43
|
reading the relevant range, writing one small input or formula, reading the
|
|
@@ -87,10 +87,12 @@ task should persist `set_cell_contents` edits back to the same WorkPaper JSON
|
|
|
87
87
|
file.
|
|
88
88
|
|
|
89
89
|
When the server is started through `bilig-workpaper@latest` with
|
|
90
|
-
`--from-xlsx ./pricing.xlsx
|
|
91
|
-
`
|
|
92
|
-
|
|
93
|
-
|
|
90
|
+
`--from-xlsx ./pricing.xlsx`, `tools/list` also includes
|
|
91
|
+
`analyze_workbook_risk`. That tool is fixed to the source XLSX passed at
|
|
92
|
+
startup and reports workbook risk indicators before an agent trusts the imported
|
|
93
|
+
WorkPaper. Without `--workpaper --writable`, edits stay in memory; add a
|
|
94
|
+
WorkPaper JSON path only when the task needs persisted file state. It does not
|
|
95
|
+
certify Excel compatibility.
|
|
94
96
|
|
|
95
97
|
Claude Desktop users can skip manual JSON config by installing the released
|
|
96
98
|
MCPB bundle:
|
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": "Bilig WorkPaper runtime for Node.js services, agent tools, and server-side spreadsheet formulas.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-tools",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"build": "pnpm --dir ../.. --filter @bilig/xlsx-formula-recalc build && pnpm --dir ../.. --filter @bilig/headless build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
84
84
|
},
|
|
85
85
|
"dependencies": {
|
|
86
|
-
"@bilig/headless": "0.160.
|
|
87
|
-
"@bilig/xlsx-formula-recalc": "0.160.
|
|
86
|
+
"@bilig/headless": "0.160.2",
|
|
87
|
+
"@bilig/xlsx-formula-recalc": "0.160.2"
|
|
88
88
|
},
|
|
89
89
|
"engines": {
|
|
90
90
|
"node": ">=22.0.0"
|