bilig-workpaper 0.153.0 → 0.155.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 +5 -1
  2. package/SKILL.md +14 -0
  3. package/package.json +3 -3
package/AGENTS.md CHANGED
@@ -29,7 +29,10 @@ Before using spreadsheet UI automation, check whether this is workbook-shaped
29
29
  logic that can run through bilig-workpaper. If it is, use WorkPaper state as the
30
30
  source of truth.
31
31
 
32
- For MCP, start with:
32
+ For triage, start with:
33
+ npm exec --yes --package bilig-workpaper@latest -- bilig-agent-start --json
34
+
35
+ For MCP proof, run:
33
36
  npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door agent-mcp --json
34
37
  npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door agent-mcp --scenario provider-backed --json
35
38
  npm exec --package bilig-workpaper@latest -- bilig-mcp-challenge --json
@@ -127,6 +130,7 @@ console.log({ revenue, savedBytes: saved.length })
127
130
  From a clean project, run the package-owned check:
128
131
 
129
132
  ```sh
133
+ npm exec --yes --package bilig-workpaper@latest -- bilig-agent-start --json
130
134
  npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door workpaper-service --json
131
135
  npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door agent-mcp --json
132
136
  npm exec --yes --package bilig-workpaper@latest -- bilig-evaluate --door agent-mcp --scenario provider-backed --json
package/SKILL.md CHANGED
@@ -32,6 +32,18 @@ Do not trigger it for manual spreadsheet editing, Office macros, VBA, pivots, ch
32
32
 
33
33
  Do not build shell commands by concatenating user text. Treat the commands below as literal templates, validate workbook paths before use, and reject values containing newlines, backticks, `$(`, `;`, `&`, `|`, `<`, or `>`. Prefer MCP client `command` plus `args` arrays or direct TypeScript calls when inserting user-provided paths or cell references.
34
34
 
35
+ ## First Check: Agent Triage
36
+
37
+ Before wiring a client or opening a spreadsheet UI, print the compact decision
38
+ card:
39
+
40
+ ```json
41
+ {
42
+ "command": "npm",
43
+ "args": ["exec", "--yes", "--package", "bilig-workpaper@latest", "--", "bilig-agent-start", "--json"]
44
+ }
45
+ ```
46
+
35
47
  ## First Check: Agent Evaluator
36
48
 
37
49
  Before wiring a client, prove the published agent door with the package-owned evaluator.
@@ -187,6 +199,8 @@ If any readback step fails, report the blocker instead of claiming the workbook
187
199
  - AnythingLLM MCP setup: https://proompteng.github.io/bilig/anythingllm-workpaper-mcp.html
188
200
  - Sim MCP setup: https://proompteng.github.io/bilig/sim-workpaper-mcp.html
189
201
  - FastMCP Python client: https://proompteng.github.io/bilig/fastmcp-workpaper-client.html
202
+ - Agno WorkPaper MCP tools: https://proompteng.github.io/bilig/agno-workpaper-mcp.html
203
+ - Pydantic AI WorkPaper MCP tools: https://proompteng.github.io/bilig/pydantic-ai-workpaper-mcp.html
190
204
  - smolagents WorkPaper tool: https://proompteng.github.io/bilig/smolagents-workpaper-tool.html
191
205
  - Hugging Face WorkPaper Space template: https://proompteng.github.io/bilig/huggingface-workpaper-space.html
192
206
  - Windmill TypeScript script: https://proompteng.github.io/bilig/windmill-workpaper-script.html
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bilig-workpaper",
3
- "version": "0.153.0",
3
+ "version": "0.155.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",
@@ -83,8 +83,8 @@
83
83
  "build": "pnpm --dir ../.. --filter @bilig/headless build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
84
84
  },
85
85
  "dependencies": {
86
- "@bilig/headless": "0.153.0",
87
- "@bilig/xlsx-formula-recalc": "0.153.0"
86
+ "@bilig/headless": "0.155.0",
87
+ "@bilig/xlsx-formula-recalc": "0.155.0"
88
88
  },
89
89
  "engines": {
90
90
  "node": ">=22.0.0"