@bilig/workpaper 0.130.7 → 0.131.1

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 CHANGED
@@ -56,6 +56,9 @@ Do not claim success from a write call alone. The proof is computed readback plu
56
56
  ## Fast Commands
57
57
 
58
58
  ```sh
59
+ npm exec --yes --package @bilig/workpaper@latest -- bilig-evaluate --door workpaper-service --json
60
+ npm exec --yes --package @bilig/workpaper@latest -- bilig-evaluate --door agent-mcp --json
61
+ npm exec --yes --package @bilig/xlsx-formula-recalc@latest -- bilig-evaluate --door xlsx-cache --json
59
62
  npm exec --package @bilig/workpaper@latest -- bilig-agent-challenge --json
60
63
  npm exec --package @bilig/workpaper@latest -- bilig-mcp-challenge --json
61
64
  npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
package/README.md CHANGED
@@ -150,15 +150,21 @@ rewriting formula sheets.
150
150
 
151
151
  ## Prove The Agent Loop Without Cloning
152
152
 
153
- The package ships proof commands for coding agents and service evaluators:
153
+ The package ships one evaluator front door plus the narrow proof commands for
154
+ coding agents and service evaluators:
154
155
 
155
156
  ```sh
157
+ npm exec --package @bilig/workpaper@latest -- bilig-evaluate --door workpaper-service --json
158
+ npm exec --package @bilig/workpaper@latest -- bilig-evaluate --door agent-mcp --json
156
159
  npm exec --package @bilig/workpaper@latest -- bilig-agent-challenge --json
157
160
  npm exec --package @bilig/workpaper@latest -- bilig-mcp-challenge --json
158
161
  npm exec --package @bilig/workpaper@latest -- bilig-n8n-formula-server --port 4321
159
162
  npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
160
163
  ```
161
164
 
165
+ `bilig-evaluate` prints a `bilig-evaluator.v1` object with `door`, `evidence`,
166
+ `verified`, `limitations`, and the underlying source proof.
167
+
162
168
  The challenge commands edit one input, recalculate dependent formulas, export
163
169
  WorkPaper JSON, restore it, and print a `verified: true` proof object.
164
170
 
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ const { runBiligEvaluatorCli } = await import('@bilig/xlsx-formula-recalc/evaluator')
3
+
4
+ process.exitCode = runBiligEvaluatorCli(process.argv.slice(2))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bilig/workpaper",
3
- "version": "0.130.7",
3
+ "version": "0.131.1",
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",
@@ -43,6 +43,7 @@
43
43
  },
44
44
  "bin": {
45
45
  "bilig-agent-challenge": "./bin/bilig-agent-challenge.js",
46
+ "bilig-evaluate": "./bin/bilig-evaluate.js",
46
47
  "bilig-formula-clinic": "./bin/bilig-formula-clinic.js",
47
48
  "bilig-mcp-challenge": "./bin/bilig-mcp-challenge.js",
48
49
  "bilig-n8n-formula-server": "./bin/bilig-n8n-formula-server.js",
@@ -90,8 +91,9 @@
90
91
  "build": "pnpm --dir ../.. --filter bilig-workpaper build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
91
92
  },
92
93
  "dependencies": {
93
- "@bilig/headless": "0.130.7",
94
- "bilig-workpaper": "0.130.7"
94
+ "@bilig/headless": "0.131.1",
95
+ "@bilig/xlsx-formula-recalc": "0.131.1",
96
+ "bilig-workpaper": "0.131.1"
95
97
  },
96
98
  "devDependencies": {
97
99
  "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.130.7",
6
+ "version": "0.131.1",
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.130.7",
21
+ "version": "0.131.1",
22
22
  "transport": {
23
23
  "type": "stdio"
24
24
  }