bilig-workpaper 0.130.6 → 0.131.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 +4 -0
- package/README.md +6 -0
- package/bin/bilig-evaluate.js +4 -0
- package/package.json +4 -2
package/AGENTS.md
CHANGED
|
@@ -30,6 +30,7 @@ logic that can run through bilig-workpaper. If it is, use WorkPaper state as the
|
|
|
30
30
|
source of truth.
|
|
31
31
|
|
|
32
32
|
For MCP, start with:
|
|
33
|
+
npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door agent-mcp --json
|
|
33
34
|
npm exec --package bilig-workpaper@latest -- bilig-mcp-challenge --json
|
|
34
35
|
npm exec --package bilig-workpaper@latest -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
|
|
35
36
|
|
|
@@ -125,6 +126,9 @@ console.log({ revenue, savedBytes: saved.length })
|
|
|
125
126
|
From a clean project, run the package-owned check:
|
|
126
127
|
|
|
127
128
|
```sh
|
|
129
|
+
npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door workpaper-service --json
|
|
130
|
+
npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door agent-mcp --json
|
|
131
|
+
npm exec --yes --package @bilig/xlsx-formula-recalc@latest -- bilig-evaluate --door xlsx-cache --json
|
|
128
132
|
npm exec --package bilig-workpaper@latest -- bilig-agent-challenge --json
|
|
129
133
|
npm exec --package bilig-workpaper@latest -- bilig-mcp-challenge --json
|
|
130
134
|
```
|
package/README.md
CHANGED
|
@@ -65,11 +65,17 @@ import { createWorkPaperMcpServer } from 'bilig-workpaper/mcp'
|
|
|
65
65
|
For package-owned proof commands, use:
|
|
66
66
|
|
|
67
67
|
```sh
|
|
68
|
+
npm exec --package bilig-workpaper -- bilig-evaluate --door workpaper-service --json
|
|
69
|
+
npm exec --package bilig-workpaper -- bilig-evaluate --door agent-mcp --json
|
|
68
70
|
npm exec --package bilig-workpaper -- bilig-agent-challenge
|
|
69
71
|
npm exec --package bilig-workpaper -- bilig-mcp-challenge
|
|
70
72
|
npm exec --package bilig-workpaper -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
|
|
71
73
|
```
|
|
72
74
|
|
|
75
|
+
`bilig-evaluate` prints the shared `bilig-evaluator.v1` proof shape; the
|
|
76
|
+
challenge commands remain available for callers that already know the direct
|
|
77
|
+
WorkPaper or MCP path they need.
|
|
78
|
+
|
|
73
79
|
For a runnable starter project, use `npm create @bilig/workpaper`.
|
|
74
80
|
|
|
75
81
|
## Scope
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bilig-workpaper",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.131.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",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"bin": {
|
|
44
44
|
"bilig-agent-challenge": "./bin/bilig-agent-challenge.js",
|
|
45
|
+
"bilig-evaluate": "./bin/bilig-evaluate.js",
|
|
45
46
|
"bilig-formula-clinic": "./bin/bilig-formula-clinic.js",
|
|
46
47
|
"bilig-mcp-challenge": "./bin/bilig-mcp-challenge.js",
|
|
47
48
|
"bilig-workpaper-mcp": "./bin/bilig-workpaper-mcp.js"
|
|
@@ -82,7 +83,8 @@
|
|
|
82
83
|
"build": "pnpm --dir ../.. --filter @bilig/headless build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
83
84
|
},
|
|
84
85
|
"dependencies": {
|
|
85
|
-
"@bilig/headless": "0.
|
|
86
|
+
"@bilig/headless": "0.131.0",
|
|
87
|
+
"@bilig/xlsx-formula-recalc": "0.131.0"
|
|
86
88
|
},
|
|
87
89
|
"engines": {
|
|
88
90
|
"node": ">=22.0.0"
|