bilig-workpaper 0.107.8 → 0.119.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/AGENTS.md +8 -7
  2. package/SKILL.md +32 -16
  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.107.8 -- bilig-mcp-challenge
30
- npm exec --package bilig-workpaper@0.107.8 -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
29
+ npm exec --package bilig-workpaper@latest -- bilig-mcp-challenge
30
+ npm exec --package bilig-workpaper@latest -- 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.107.8 -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
60
+ npm exec --package bilig-workpaper@latest -- bilig-workpaper-mcp --workpaper ./pricing.workpaper.json --init-demo-workpaper --writable
61
61
  ```
62
62
 
63
63
  Expected file-backed tools:
@@ -66,6 +66,7 @@ Expected file-backed tools:
66
66
  - `read_range`
67
67
  - `read_cell`
68
68
  - `set_cell_contents`
69
+ - `set_cell_contents_and_readback`
69
70
  - `get_cell_display_value`
70
71
  - `export_workpaper_document`
71
72
  - `validate_formula`
@@ -78,8 +79,8 @@ file.
78
79
  Claude Desktop users can skip manual JSON config by installing the released
79
80
  MCPB bundle:
80
81
 
81
- - https://github.com/proompteng/bilig/releases/download/libraries-v0.107.8/bilig-workpaper.mcpb
82
- - https://github.com/proompteng/bilig/releases/download/libraries-v0.107.8/bilig-workpaper.mcpb.sha256
82
+ - https://github.com/proompteng/bilig/releases/latest/download/bilig-workpaper.mcpb
83
+ - https://github.com/proompteng/bilig/releases/latest/download/bilig-workpaper.mcpb.sha256
83
84
 
84
85
  ## Direct TypeScript entrypoint
85
86
 
@@ -120,8 +121,8 @@ console.log({ revenue, savedBytes: saved.length })
120
121
  From a clean project, run the package-owned challenge:
121
122
 
122
123
  ```sh
123
- npm exec --package bilig-workpaper@0.107.8 -- bilig-agent-challenge
124
- npm exec --package bilig-workpaper@0.107.8 -- bilig-mcp-challenge
124
+ npm exec --package bilig-workpaper@latest -- bilig-agent-challenge
125
+ npm exec --package bilig-workpaper@latest -- bilig-mcp-challenge
125
126
  ```
126
127
 
127
128
  `bilig-agent-challenge` proves the direct WorkPaper API loop.
package/SKILL.md CHANGED
@@ -39,12 +39,19 @@ highest-traffic evaluator path because it meets developers where they already
39
39
  search: npm, ExcelJS, SheetJS, xlsx-populate, and StackOverflow formula
40
40
  recalculation problems.
41
41
 
42
+ If the host supports installable skills, first check that the public skill
43
+ package is discoverable:
44
+
45
+ ```sh
46
+ npx --yes skills@latest add proompteng/bilig --skill bilig-workpaper --list
47
+ ```
48
+
42
49
  Start by proving the direct WorkPaper loop:
43
50
 
44
51
  ```json
45
52
  {
46
53
  "command": "npm",
47
- "args": ["exec", "--package", "bilig-workpaper@0.107.8", "--", "bilig-agent-challenge"]
54
+ "args": ["exec", "--package", "bilig-workpaper@latest", "--", "bilig-agent-challenge"]
48
55
  }
49
56
  ```
50
57
 
@@ -53,7 +60,7 @@ Use MCP only when the host specifically needs an MCP client boundary. For that p
53
60
  ```json
54
61
  {
55
62
  "command": "npm",
56
- "args": ["exec", "--package", "bilig-workpaper@0.107.8", "--", "bilig-mcp-challenge"]
63
+ "args": ["exec", "--package", "bilig-workpaper@latest", "--", "bilig-mcp-challenge"]
57
64
  }
58
65
  ```
59
66
 
@@ -63,7 +70,7 @@ Use MCP only when the host specifically needs an MCP client boundary. For that p
63
70
  "args": [
64
71
  "exec",
65
72
  "--package",
66
- "bilig-workpaper@0.107.8",
73
+ "bilig-workpaper@latest",
67
74
  "--",
68
75
  "bilig-workpaper-mcp",
69
76
  "--workpaper",
@@ -74,7 +81,8 @@ Use MCP only when the host specifically needs an MCP client boundary. For that p
74
81
  }
75
82
  ```
76
83
 
77
- The useful file-backed tools are:
84
+ Run `bilig-mcp-challenge` and treat its returned `tools` array as the source
85
+ of truth for the currently published package. The core file-backed tools are:
78
86
 
79
87
  - `list_sheets`
80
88
  - `read_range`
@@ -84,7 +92,11 @@ The useful file-backed tools are:
84
92
  - `export_workpaper_document`
85
93
  - `validate_formula`
86
94
 
87
- After a write, always read the dependent output cell and export the WorkPaper document.
95
+ After a write, always read the dependent output cell and export the WorkPaper
96
+ document. If the listed tool set includes `set_cell_contents_and_readback`,
97
+ prefer it for stateless clients because the edit and dependent readback happen
98
+ in one tool call. If it is absent, call `set_cell_contents`, then `read_cell`
99
+ or `read_range`, then `export_workpaper_document`.
88
100
 
89
101
  For remote MCP clients, use the stateless demo endpoint when the client supports
90
102
  Streamable HTTP:
@@ -137,16 +149,7 @@ When the user has a reduced XLSX formula/import bug, generate a local report thr
137
149
  ```json
138
150
  {
139
151
  "command": "npm",
140
- "args": [
141
- "exec",
142
- "--package",
143
- "bilig-workpaper@0.107.8",
144
- "--",
145
- "bilig-formula-clinic",
146
- "./reduced.xlsx",
147
- "--cells",
148
- "Summary!B7,Inputs!B2"
149
- ]
152
+ "args": ["exec", "--package", "bilig-workpaper@latest", "--", "bilig-formula-clinic", "./reduced.xlsx", "--cells", "Summary!B7,Inputs!B2"]
150
153
  }
151
154
  ```
152
155
 
@@ -172,9 +175,22 @@ If any proof step fails, report the blocker instead of claiming the workbook was
172
175
  - Agent handbook: https://proompteng.github.io/bilig/headless-workpaper-agent-handbook.html
173
176
  - Agent workbook challenge: https://proompteng.github.io/bilig/agent-workbook-challenge.html
174
177
  - MCP server guide: https://proompteng.github.io/bilig/mcp-workpaper-tool-server.html
175
- - Open WebUI MCP setup: https://proompteng.github.io/bilig/open-webui-workpaper-mcp.html
178
+ - Open WebUI tool setup: https://proompteng.github.io/bilig/open-webui-workpaper-mcp.html
176
179
  - LobeHub MCP setup: https://proompteng.github.io/bilig/lobehub-workpaper-mcp.html
177
180
  - AnythingLLM MCP setup: https://proompteng.github.io/bilig/anythingllm-workpaper-mcp.html
181
+ - Sim MCP setup: https://proompteng.github.io/bilig/sim-workpaper-mcp.html
182
+ - FastMCP Python client: https://proompteng.github.io/bilig/fastmcp-workpaper-client.html
183
+ - smolagents WorkPaper tool: https://proompteng.github.io/bilig/smolagents-workpaper-tool.html
184
+ - Windmill TypeScript script: https://proompteng.github.io/bilig/windmill-workpaper-script.html
185
+ - Trigger.dev task: https://proompteng.github.io/bilig/triggerdev-workpaper-task.html
186
+ - Inngest step: https://proompteng.github.io/bilig/inngest-workpaper-step.html
187
+ - Airbyte validation: https://proompteng.github.io/bilig/airbyte-workpaper-validation.html
188
+ - Meltano utility: https://proompteng.github.io/bilig/meltano-workpaper-utility.html
189
+ - Temporal Activity: https://proompteng.github.io/bilig/temporal-workpaper-activity.html
190
+ - Airflow DAG: https://proompteng.github.io/bilig/airflow-workpaper-dag.html
191
+ - Dagster asset: https://proompteng.github.io/bilig/dagster-workpaper-asset.html
192
+ - Kestra Node flow: https://proompteng.github.io/bilig/kestra-workpaper-flow.html
193
+ - Prefect flow: https://proompteng.github.io/bilig/prefect-workpaper-flow.html
178
194
  - XLSX formula clinic: https://proompteng.github.io/bilig/formula-bug-clinic.html
179
195
  - Compatibility limits: https://proompteng.github.io/bilig/where-bilig-is-not-excel-compatible-yet.html
180
196
  - Repository: https://github.com/proompteng/bilig
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bilig-workpaper",
3
- "version": "0.107.8",
3
+ "version": "0.119.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",
@@ -81,7 +81,7 @@
81
81
  "build": "pnpm --dir ../.. --filter @bilig/headless build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
82
82
  },
83
83
  "dependencies": {
84
- "@bilig/headless": "0.107.8"
84
+ "@bilig/headless": "0.119.0"
85
85
  },
86
86
  "engines": {
87
87
  "node": ">=22.0.0"