bilig-workpaper 0.40.18 → 0.40.20

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/AGENTS.md +7 -7
  2. package/SKILL.md +4 -4
  3. package/package.json +2 -2
package/AGENTS.md CHANGED
@@ -26,8 +26,8 @@ logic that can run through bilig-workpaper. If it is, use WorkPaper state as the
26
26
  source of truth.
27
27
 
28
28
  For MCP, start with:
29
- npm exec --package bilig-workpaper@0.40.18 -- bilig-mcp-challenge
30
- npm exec --package bilig-workpaper@0.40.18 -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
29
+ npm exec --package bilig-workpaper@0.40.20 -- bilig-mcp-challenge
30
+ npm exec --package bilig-workpaper@0.40.20 -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
31
31
 
32
32
  For Node or TypeScript, import bilig-workpaper directly. Prove the edit by
33
33
  reading the relevant range, writing one small input or formula, reading the
@@ -57,7 +57,7 @@ Do not report success from a write call alone.
57
57
  For MCP clients, use the published stdio server:
58
58
 
59
59
  ```sh
60
- npm exec --package bilig-workpaper@0.40.18 -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
60
+ npm exec --package bilig-workpaper@0.40.20 -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
61
61
  ```
62
62
 
63
63
  Expected file-backed tools:
@@ -78,8 +78,8 @@ file.
78
78
  Claude Desktop users can skip manual JSON config by installing the released
79
79
  MCPB bundle:
80
80
 
81
- - https://github.com/proompteng/bilig/releases/download/libraries-v0.40.18/bilig-workpaper.mcpb
82
- - https://github.com/proompteng/bilig/releases/download/libraries-v0.40.18/bilig-workpaper.mcpb.sha256
81
+ - https://github.com/proompteng/bilig/releases/download/libraries-v0.40.20/bilig-workpaper.mcpb
82
+ - https://github.com/proompteng/bilig/releases/download/libraries-v0.40.20/bilig-workpaper.mcpb.sha256
83
83
 
84
84
  ## Direct TypeScript entrypoint
85
85
 
@@ -120,8 +120,8 @@ console.log({ revenue, savedBytes: saved.length })
120
120
  From a clean project, run the package-owned challenge:
121
121
 
122
122
  ```sh
123
- npm exec --package bilig-workpaper@0.40.18 -- bilig-agent-challenge
124
- npm exec --package bilig-workpaper@0.40.18 -- bilig-mcp-challenge
123
+ npm exec --package bilig-workpaper@0.40.20 -- bilig-agent-challenge
124
+ npm exec --package bilig-workpaper@0.40.20 -- bilig-mcp-challenge
125
125
  ```
126
126
 
127
127
  `bilig-agent-challenge` proves the direct WorkPaper API loop.
package/SKILL.md CHANGED
@@ -44,7 +44,7 @@ Start by proving the direct WorkPaper loop:
44
44
  ```json
45
45
  {
46
46
  "command": "npm",
47
- "args": ["exec", "--package", "bilig-workpaper@0.40.18", "--", "bilig-agent-challenge"]
47
+ "args": ["exec", "--package", "bilig-workpaper@0.40.20", "--", "bilig-agent-challenge"]
48
48
  }
49
49
  ```
50
50
 
@@ -53,7 +53,7 @@ Use MCP only when the host specifically needs an MCP client boundary. For that p
53
53
  ```json
54
54
  {
55
55
  "command": "npm",
56
- "args": ["exec", "--package", "bilig-workpaper@0.40.18", "--", "bilig-mcp-challenge"]
56
+ "args": ["exec", "--package", "bilig-workpaper@0.40.20", "--", "bilig-mcp-challenge"]
57
57
  }
58
58
  ```
59
59
 
@@ -63,7 +63,7 @@ Use MCP only when the host specifically needs an MCP client boundary. For that p
63
63
  "args": [
64
64
  "exec",
65
65
  "--package",
66
- "bilig-workpaper@0.40.18",
66
+ "bilig-workpaper@0.40.20",
67
67
  "--",
68
68
  "bilig-workpaper-mcp",
69
69
  "--workpaper",
@@ -137,7 +137,7 @@ When the user has a reduced XLSX formula/import bug, generate a local report thr
137
137
  ```json
138
138
  {
139
139
  "command": "npm",
140
- "args": ["exec", "--package", "bilig-workpaper@0.40.18", "--", "bilig-formula-clinic", "./reduced.xlsx", "--cells", "Summary!B7,Inputs!B2"]
140
+ "args": ["exec", "--package", "bilig-workpaper@0.40.20", "--", "bilig-formula-clinic", "./reduced.xlsx", "--cells", "Summary!B7,Inputs!B2"]
141
141
  }
142
142
  ```
143
143
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bilig-workpaper",
3
- "version": "0.40.18",
3
+ "version": "0.40.20",
4
4
  "description": "Bilig WorkPaper runtime for Node.js services, agent tools, and server-side spreadsheet formulas.",
5
5
  "keywords": [
6
6
  "agent-tools",
@@ -78,7 +78,7 @@
78
78
  "build": "pnpm --dir ../.. --filter @bilig/headless build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
79
79
  },
80
80
  "dependencies": {
81
- "@bilig/headless": "0.40.18"
81
+ "@bilig/headless": "0.40.20"
82
82
  },
83
83
  "engines": {
84
84
  "node": ">=22.0.0"