bilig-workpaper 0.143.0 → 0.145.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 +2 -0
- package/SKILL.md +5 -3
- package/package.json +3 -3
package/AGENTS.md
CHANGED
|
@@ -31,6 +31,7 @@ source of truth.
|
|
|
31
31
|
|
|
32
32
|
For MCP, start with:
|
|
33
33
|
npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door agent-mcp --json
|
|
34
|
+
npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door agent-mcp --scenario provider-backed --json
|
|
34
35
|
npm exec --package bilig-workpaper@latest -- bilig-mcp-challenge --json
|
|
35
36
|
npm exec --package bilig-workpaper@latest -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
|
|
36
37
|
|
|
@@ -128,6 +129,7 @@ From a clean project, run the package-owned check:
|
|
|
128
129
|
```sh
|
|
129
130
|
npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door workpaper-service --json
|
|
130
131
|
npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door agent-mcp --json
|
|
132
|
+
npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door agent-mcp --scenario provider-backed --json
|
|
131
133
|
npm exec --yes --package @bilig/xlsx-formula-recalc@latest -- bilig-evaluate --door xlsx-cache --json
|
|
132
134
|
npm exec --package bilig-workpaper@latest -- bilig-agent-challenge --json
|
|
133
135
|
npm exec --package bilig-workpaper@latest -- bilig-mcp-challenge --json
|
package/SKILL.md
CHANGED
|
@@ -84,9 +84,11 @@ npx --yes skills@latest add proompteng/bilig --skill bilig-workpaper --list
|
|
|
84
84
|
}
|
|
85
85
|
```
|
|
86
86
|
|
|
87
|
-
Run `bilig-evaluate --door agent-mcp --json` first. If the
|
|
88
|
-
|
|
89
|
-
|
|
87
|
+
Run `bilig-evaluate --door agent-mcp --json` first. If the workbook contains
|
|
88
|
+
provider-backed formulas such as `IMPORTRANGE`, run
|
|
89
|
+
`bilig-evaluate --door agent-mcp --scenario provider-backed --json` to confirm
|
|
90
|
+
the adapter boundary. If the evaluator fails, run `bilig-mcp-challenge` and
|
|
91
|
+
treat its returned `tools` array as the source of truth for the currently published package. The core file-backed tools are:
|
|
90
92
|
|
|
91
93
|
- `list_sheets`
|
|
92
94
|
- `read_range`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bilig-workpaper",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.145.0",
|
|
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/headless build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
84
84
|
},
|
|
85
85
|
"dependencies": {
|
|
86
|
-
"@bilig/headless": "0.
|
|
87
|
-
"@bilig/xlsx-formula-recalc": "0.
|
|
86
|
+
"@bilig/headless": "0.145.0",
|
|
87
|
+
"@bilig/xlsx-formula-recalc": "0.145.0"
|
|
88
88
|
},
|
|
89
89
|
"engines": {
|
|
90
90
|
"node": ">=22.0.0"
|