bilig-workpaper 0.119.1 → 0.119.3

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 +3 -3
  2. package/SKILL.md +2 -2
  3. package/package.json +2 -2
package/AGENTS.md CHANGED
@@ -26,7 +26,7 @@ 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@latest -- bilig-mcp-challenge
29
+ npm exec --package bilig-workpaper@latest -- bilig-mcp-challenge --json
30
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
@@ -121,8 +121,8 @@ console.log({ revenue, savedBytes: saved.length })
121
121
  From a clean project, run the package-owned challenge:
122
122
 
123
123
  ```sh
124
- npm exec --package bilig-workpaper@latest -- bilig-agent-challenge
125
- npm exec --package bilig-workpaper@latest -- bilig-mcp-challenge
124
+ npm exec --package bilig-workpaper@latest -- bilig-agent-challenge --json
125
+ npm exec --package bilig-workpaper@latest -- bilig-mcp-challenge --json
126
126
  ```
127
127
 
128
128
  `bilig-agent-challenge` proves the direct WorkPaper API loop.
package/SKILL.md CHANGED
@@ -51,7 +51,7 @@ Start by proving the direct WorkPaper loop:
51
51
  ```json
52
52
  {
53
53
  "command": "npm",
54
- "args": ["exec", "--package", "bilig-workpaper@latest", "--", "bilig-agent-challenge"]
54
+ "args": ["exec", "--package", "bilig-workpaper@latest", "--", "bilig-agent-challenge", "--json"]
55
55
  }
56
56
  ```
57
57
 
@@ -60,7 +60,7 @@ Use MCP only when the host specifically needs an MCP client boundary. For that p
60
60
  ```json
61
61
  {
62
62
  "command": "npm",
63
- "args": ["exec", "--package", "bilig-workpaper@latest", "--", "bilig-mcp-challenge"]
63
+ "args": ["exec", "--package", "bilig-workpaper@latest", "--", "bilig-mcp-challenge", "--json"]
64
64
  }
65
65
  ```
66
66
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bilig-workpaper",
3
- "version": "0.119.1",
3
+ "version": "0.119.3",
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.119.1"
84
+ "@bilig/headless": "0.119.3"
85
85
  },
86
86
  "engines": {
87
87
  "node": ">=22.0.0"