@bilig/workpaper 0.153.0 → 0.154.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.
Files changed (3) hide show
  1. package/README.md +43 -2
  2. package/package.json +4 -4
  3. package/server.json +2 -2
package/README.md CHANGED
@@ -26,6 +26,48 @@ Pick the door that matches the state you own:
26
26
  | Coding agent or MCP client | `npm exec --yes --package @bilig/workpaper@latest -- bilig-evaluate --door agent-mcp --json` | tool discovery, cell mutation, formula readback, JSON export, restart proof, and `verified: true`. |
27
27
  | New project | `npm create @bilig/workpaper@latest pricing-agent -- --agent` | a starter with `AGENTS.md`, MCP config, and `npm run agent:verify` wired to the same proof loop. |
28
28
 
29
+ ## What Success Looks Like
30
+
31
+ Run the agent proof without cloning the repo:
32
+
33
+ ```sh
34
+ npm exec --yes --package @bilig/workpaper@latest -- bilig-evaluate --door agent-mcp --scenario revenue-plan --json
35
+ ```
36
+
37
+ The useful output is not a write-call status. It is readback proof:
38
+
39
+ ```json
40
+ {
41
+ "schemaVersion": "bilig-evaluator.v1",
42
+ "door": "agent-mcp",
43
+ "verified": true,
44
+ "packageVersions": {
45
+ "@bilig/workpaper": "0.153.0"
46
+ },
47
+ "evidence": {
48
+ "scenario": "revenue-plan",
49
+ "editedCell": "Deals!C2",
50
+ "readbackRange": "Summary!B2:B8",
51
+ "after": {
52
+ "totalRevenue": 36900,
53
+ "westCustomers": 38
54
+ },
55
+ "checks": {
56
+ "totalRevenueRecalculated": true,
57
+ "sumifReadbackChanged": true,
58
+ "xlookupReadbackStable": true,
59
+ "filterSpillUpdated": true,
60
+ "persistedToDisk": true,
61
+ "restartReadbackMatchesAfter": true
62
+ }
63
+ }
64
+ }
65
+ ```
66
+
67
+ If that is the contract your service or agent needed, star the repo so you can
68
+ find it again: <https://github.com/proompteng/bilig/stargazers>. Watch releases
69
+ if this is close to production: <https://github.com/proompteng/bilig/subscription>.
70
+
29
71
  For a richer agent check, add `--scenario revenue-plan` to the `agent-mcp`
30
72
  evaluator. It proves `SUM`, `SUMIF`, `XLOOKUP`, `FILTER`, a named expression,
31
73
  JSON persistence, and restart readback.
@@ -36,8 +78,7 @@ That proves the formula fails closed with an adapter diagnostic, then verifies a
36
78
  local synthetic adapter readback. It does not call Google Sheets.
37
79
 
38
80
  If one of those matches your workflow, keep Bilig nearby:
39
- <https://github.com/proompteng/bilig>. Watch releases if this is close to a
40
- production dependency: <https://github.com/proompteng/bilig/subscription>.
81
+ <https://github.com/proompteng/bilig>.
41
82
 
42
83
  Framework examples live in the repo instead of this first screen. Start with
43
84
  the closest runtime:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bilig/workpaper",
3
- "version": "0.153.0",
3
+ "version": "0.154.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.153.0",
92
- "@bilig/xlsx-formula-recalc": "0.153.0",
93
- "bilig-workpaper": "0.153.0"
91
+ "@bilig/headless": "0.154.0",
92
+ "@bilig/xlsx-formula-recalc": "0.154.0",
93
+ "bilig-workpaper": "0.154.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.153.0",
6
+ "version": "0.154.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.153.0",
21
+ "version": "0.154.0",
22
22
  "transport": {
23
23
  "type": "stdio"
24
24
  }