@bilig/workpaper 0.103.0 → 0.107.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 +6 -6
- package/README.md +5 -0
- package/SKILL.md +5 -4
- package/package.json +3 -3
- package/server.json +2 -2
package/AGENTS.md
CHANGED
|
@@ -38,16 +38,16 @@ Do not claim success from a write call alone. The proof is computed readback plu
|
|
|
38
38
|
## Fast Commands
|
|
39
39
|
|
|
40
40
|
```sh
|
|
41
|
-
npm exec --package @bilig/workpaper@0.
|
|
42
|
-
npm exec --package @bilig/workpaper@0.
|
|
43
|
-
npm exec --package @bilig/workpaper@0.
|
|
44
|
-
npm exec --package @bilig/workpaper@0.
|
|
41
|
+
npm exec --package @bilig/workpaper@0.107.0 -- bilig-agent-challenge
|
|
42
|
+
npm exec --package @bilig/workpaper@0.107.0 -- bilig-mcp-challenge
|
|
43
|
+
npm exec --package @bilig/workpaper@0.107.0 -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
|
|
44
|
+
npm exec --package @bilig/workpaper@0.107.0 -- bilig-formula-clinic ./reduced.xlsx --cells "Summary!B7,Inputs!B2"
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
Claude Desktop users can install the released MCPB bundle from:
|
|
48
48
|
|
|
49
|
-
- https://github.com/proompteng/bilig/releases/download/libraries-v0.
|
|
50
|
-
- https://github.com/proompteng/bilig/releases/download/libraries-v0.
|
|
49
|
+
- https://github.com/proompteng/bilig/releases/download/libraries-v0.107.0/bilig-workpaper.mcpb
|
|
50
|
+
- https://github.com/proompteng/bilig/releases/download/libraries-v0.107.0/bilig-workpaper.mcpb.sha256
|
|
51
51
|
|
|
52
52
|
## Direct TypeScript
|
|
53
53
|
|
package/README.md
CHANGED
|
@@ -23,7 +23,9 @@ Pick the path that matches the workflow you are trying to unblock:
|
|
|
23
23
|
| ------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------- |
|
|
24
24
|
| Formula workbook logic inside a Node service, route, queue, or test | `npm create @bilig/workpaper@latest pricing-workpaper` | Inputs are written, formulas recalculate, JSON persists, restore matches readback, and `verified: true` is printed. |
|
|
25
25
|
| A coding agent or MCP client that needs spreadsheet operations | `npm create @bilig/workpaper@latest pricing-agent -- --agent` | The generated project includes an agent contract, MCP config, and `npm run agent:verify`. |
|
|
26
|
+
| Directus Flow operation for persisted calculated fields | `cd examples/directus-workpaper-flow-operation && npm install && npm run smoke` | The operation returns a Directus `patch` plus before/after/restore WorkPaper proof with `verified: true`. |
|
|
26
27
|
| n8n, Dify, or Flowise formula readback without spreadsheet UI automation | `npm exec --package @bilig/workpaper@latest -- bilig-n8n-formula-server --port 4321` | The workflow writes one input cell, reads dependent formula output, and returns a compact JSON proof. |
|
|
28
|
+
| Open WebUI needs MCP spreadsheet tools | `npm exec --package @bilig/workpaper@latest -- bilig-mcp-challenge --json` | Open WebUI can call the hosted Streamable HTTP endpoint or a local stdio server bridged through `mcpo`. |
|
|
27
29
|
| An existing `.xlsx` file with stale formula results after Node edits | `npx --package @bilig/xlsx-formula-recalc xlsx-recalc --demo --json` | The file-level path updates inputs and returns fresh formula values without Excel, LibreOffice, or a browser. |
|
|
28
30
|
|
|
29
31
|
## Use A WorkPaper In Node
|
|
@@ -106,12 +108,15 @@ npm exec --package @bilig/workpaper@latest -- bilig-n8n-formula-server --port 43
|
|
|
106
108
|
|
|
107
109
|
Start from the repo examples:
|
|
108
110
|
|
|
111
|
+
- `examples/directus-workpaper-flow-operation`
|
|
109
112
|
- `examples/n8n-workpaper-formula-readback/bilig-workpaper-formula-readback.n8n.json`
|
|
110
113
|
- `examples/dify-workpaper-formula-readback`
|
|
111
114
|
- `examples/flowise-workpaper-formula-readback/bilig-workpaper-formula-readback.flowise-tool.json`
|
|
112
115
|
|
|
113
116
|
Docs:
|
|
114
117
|
|
|
118
|
+
- <https://proompteng.github.io/bilig/directus-workpaper-flow-operation.html>
|
|
119
|
+
- <https://proompteng.github.io/bilig/open-webui-workpaper-mcp.html>
|
|
115
120
|
- <https://proompteng.github.io/bilig/n8n-workpaper-formula-readback.html>
|
|
116
121
|
- <https://proompteng.github.io/bilig/dify-workpaper-formula-readback.html>
|
|
117
122
|
- <https://proompteng.github.io/bilig/flowise-workpaper-formula-readback.html>
|
package/SKILL.md
CHANGED
|
@@ -42,7 +42,7 @@ Before wiring a client, an agent can prove the direct WorkPaper loop with:
|
|
|
42
42
|
```json
|
|
43
43
|
{
|
|
44
44
|
"command": "npm",
|
|
45
|
-
"args": ["exec", "--package", "@bilig/workpaper@0.
|
|
45
|
+
"args": ["exec", "--package", "@bilig/workpaper@0.107.0", "--", "bilig-agent-challenge"]
|
|
46
46
|
}
|
|
47
47
|
```
|
|
48
48
|
|
|
@@ -51,7 +51,7 @@ For the actual file-backed MCP path, run the package-owned challenge first:
|
|
|
51
51
|
```json
|
|
52
52
|
{
|
|
53
53
|
"command": "npm",
|
|
54
|
-
"args": ["exec", "--package", "@bilig/workpaper@0.
|
|
54
|
+
"args": ["exec", "--package", "@bilig/workpaper@0.107.0", "--", "bilig-mcp-challenge"]
|
|
55
55
|
}
|
|
56
56
|
```
|
|
57
57
|
|
|
@@ -61,7 +61,7 @@ For the actual file-backed MCP path, run the package-owned challenge first:
|
|
|
61
61
|
"args": [
|
|
62
62
|
"exec",
|
|
63
63
|
"--package",
|
|
64
|
-
"@bilig/workpaper@0.
|
|
64
|
+
"@bilig/workpaper@0.107.0",
|
|
65
65
|
"--",
|
|
66
66
|
"bilig-workpaper-mcp",
|
|
67
67
|
"--workpaper",
|
|
@@ -138,7 +138,7 @@ When the user has a reduced XLSX formula/import bug, generate a local report thr
|
|
|
138
138
|
"args": [
|
|
139
139
|
"exec",
|
|
140
140
|
"--package",
|
|
141
|
-
"@bilig/workpaper@0.
|
|
141
|
+
"@bilig/workpaper@0.107.0",
|
|
142
142
|
"--",
|
|
143
143
|
"bilig-formula-clinic",
|
|
144
144
|
"./reduced.xlsx",
|
|
@@ -170,6 +170,7 @@ If any proof step fails, report the blocker instead of claiming the workbook was
|
|
|
170
170
|
- Agent handbook: https://proompteng.github.io/bilig/headless-workpaper-agent-handbook.html
|
|
171
171
|
- Agent workbook challenge: https://proompteng.github.io/bilig/agent-workbook-challenge.html
|
|
172
172
|
- MCP server guide: https://proompteng.github.io/bilig/mcp-workpaper-tool-server.html
|
|
173
|
+
- Open WebUI MCP setup: https://proompteng.github.io/bilig/open-webui-workpaper-mcp.html
|
|
173
174
|
- XLSX formula clinic: https://proompteng.github.io/bilig/formula-bug-clinic.html
|
|
174
175
|
- Compatibility limits: https://proompteng.github.io/bilig/where-bilig-is-not-excel-compatible-yet.html
|
|
175
176
|
- Repository: https://github.com/proompteng/bilig
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/workpaper",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.107.0",
|
|
4
4
|
"description": "Scoped Bilig WorkPaper runtime and MCP server for Node.js services, agent tools, and server-side spreadsheet formulas.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-tools",
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
"build": "pnpm --dir ../.. --filter bilig-workpaper build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
85
85
|
},
|
|
86
86
|
"dependencies": {
|
|
87
|
-
"@bilig/headless": "0.
|
|
88
|
-
"bilig-workpaper": "0.
|
|
87
|
+
"@bilig/headless": "0.107.0",
|
|
88
|
+
"bilig-workpaper": "0.107.0"
|
|
89
89
|
},
|
|
90
90
|
"engines": {
|
|
91
91
|
"node": ">=22.0.0"
|
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.107.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.107.0",
|
|
22
22
|
"transport": {
|
|
23
23
|
"type": "stdio"
|
|
24
24
|
}
|