@bilig/workpaper 0.40.28 → 0.40.30
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/SKILL.md +4 -4
- package/package.json +3 -3
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.40.
|
|
42
|
-
npm exec --package @bilig/workpaper@0.40.
|
|
43
|
-
npm exec --package @bilig/workpaper@0.40.
|
|
44
|
-
npm exec --package @bilig/workpaper@0.40.
|
|
41
|
+
npm exec --package @bilig/workpaper@0.40.30 -- bilig-agent-challenge
|
|
42
|
+
npm exec --package @bilig/workpaper@0.40.30 -- bilig-mcp-challenge
|
|
43
|
+
npm exec --package @bilig/workpaper@0.40.30 -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
|
|
44
|
+
npm exec --package @bilig/workpaper@0.40.30 -- 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.40.
|
|
50
|
-
- https://github.com/proompteng/bilig/releases/download/libraries-v0.40.
|
|
49
|
+
- https://github.com/proompteng/bilig/releases/download/libraries-v0.40.30/bilig-workpaper.mcpb
|
|
50
|
+
- https://github.com/proompteng/bilig/releases/download/libraries-v0.40.30/bilig-workpaper.mcpb.sha256
|
|
51
51
|
|
|
52
52
|
## Direct TypeScript
|
|
53
53
|
|
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.40.
|
|
45
|
+
"args": ["exec", "--package", "@bilig/workpaper@0.40.30", "--", "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.40.
|
|
54
|
+
"args": ["exec", "--package", "@bilig/workpaper@0.40.30", "--", "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.40.
|
|
64
|
+
"@bilig/workpaper@0.40.30",
|
|
65
65
|
"--",
|
|
66
66
|
"bilig-workpaper-mcp",
|
|
67
67
|
"--workpaper",
|
|
@@ -135,7 +135,7 @@ When the user has a reduced XLSX formula/import bug, generate a local report thr
|
|
|
135
135
|
```json
|
|
136
136
|
{
|
|
137
137
|
"command": "npm",
|
|
138
|
-
"args": ["exec", "--package", "@bilig/workpaper@0.40.
|
|
138
|
+
"args": ["exec", "--package", "@bilig/workpaper@0.40.30", "--", "bilig-formula-clinic", "./reduced.xlsx", "--cells", "Summary!B7,Inputs!B2"]
|
|
139
139
|
}
|
|
140
140
|
```
|
|
141
141
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/workpaper",
|
|
3
|
-
"version": "0.40.
|
|
3
|
+
"version": "0.40.30",
|
|
4
4
|
"description": "Scoped Bilig WorkPaper runtime for Node.js services, agent tools, and server-side spreadsheet formulas.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-tools",
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
"build": "pnpm --dir ../.. --filter bilig-workpaper build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@bilig/headless": "0.40.
|
|
74
|
-
"bilig-workpaper": "0.40.
|
|
73
|
+
"@bilig/headless": "0.40.30",
|
|
74
|
+
"bilig-workpaper": "0.40.30"
|
|
75
75
|
},
|
|
76
76
|
"engines": {
|
|
77
77
|
"node": ">=22.0.0"
|