@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 +1 -0
- package/README.md +6 -0
- package/SKILL.md +5 -3
- package/package.json +4 -4
- package/server.json +2 -2
package/AGENTS.md
CHANGED
|
@@ -58,6 +58,7 @@ Do not claim success from a write call alone. The proof is computed readback plu
|
|
|
58
58
|
```sh
|
|
59
59
|
npm exec --yes --package @bilig/workpaper@latest -- bilig-evaluate --door workpaper-service --json
|
|
60
60
|
npm exec --yes --package @bilig/workpaper@latest -- bilig-evaluate --door agent-mcp --json
|
|
61
|
+
npm exec --yes --package @bilig/workpaper@latest -- bilig-evaluate --door agent-mcp --scenario provider-backed --json
|
|
61
62
|
npm exec --yes --package @bilig/xlsx-formula-recalc@latest -- bilig-evaluate --door xlsx-cache --json
|
|
62
63
|
npm exec --package @bilig/workpaper@latest -- bilig-agent-challenge --json
|
|
63
64
|
npm exec --package @bilig/workpaper@latest -- bilig-mcp-challenge --json
|
package/README.md
CHANGED
|
@@ -30,6 +30,11 @@ For a richer agent check, add `--scenario revenue-plan` to the `agent-mcp`
|
|
|
30
30
|
evaluator. It proves `SUM`, `SUMIF`, `XLOOKUP`, `FILTER`, a named expression,
|
|
31
31
|
JSON persistence, and restart readback.
|
|
32
32
|
|
|
33
|
+
If the workbook has provider-backed formulas such as `IMPORTRANGE`, run
|
|
34
|
+
`npm exec --yes --package @bilig/workpaper@latest -- bilig-evaluate --door agent-mcp --scenario provider-backed --json`.
|
|
35
|
+
That proves the formula fails closed with an adapter diagnostic, then verifies a
|
|
36
|
+
local synthetic adapter readback. It does not call Google Sheets.
|
|
37
|
+
|
|
33
38
|
If one of those matches your workflow, keep Bilig nearby:
|
|
34
39
|
<https://github.com/proompteng/bilig>. Watch releases if this is close to a
|
|
35
40
|
production dependency: <https://github.com/proompteng/bilig/subscription>.
|
|
@@ -181,6 +186,7 @@ The package ships evaluator and direct proof commands:
|
|
|
181
186
|
```sh
|
|
182
187
|
npm exec --package @bilig/workpaper@latest -- bilig-evaluate --door workpaper-service --json
|
|
183
188
|
npm exec --package @bilig/workpaper@latest -- bilig-evaluate --door agent-mcp --json
|
|
189
|
+
npm exec --package @bilig/workpaper@latest -- bilig-evaluate --door agent-mcp --scenario provider-backed --json
|
|
184
190
|
npm exec --package @bilig/workpaper@latest -- bilig-agent-challenge --json
|
|
185
191
|
npm exec --package @bilig/workpaper@latest -- bilig-mcp-challenge --json
|
|
186
192
|
npm exec --package @bilig/workpaper@latest -- bilig-n8n-formula-server --port 4321
|
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": "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.
|
|
92
|
-
"@bilig/xlsx-formula-recalc": "0.
|
|
93
|
-
"bilig-workpaper": "0.
|
|
91
|
+
"@bilig/headless": "0.145.0",
|
|
92
|
+
"@bilig/xlsx-formula-recalc": "0.145.0",
|
|
93
|
+
"bilig-workpaper": "0.145.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.
|
|
6
|
+
"version": "0.145.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.
|
|
21
|
+
"version": "0.145.0",
|
|
22
22
|
"transport": {
|
|
23
23
|
"type": "stdio"
|
|
24
24
|
}
|