bilig-workpaper 0.119.2 → 0.119.4
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 +3 -3
- package/SKILL.md +3 -2
- 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
|
@@ -43,6 +43,7 @@ If the host supports installable skills, first check that the public skill
|
|
|
43
43
|
package is discoverable:
|
|
44
44
|
|
|
45
45
|
```sh
|
|
46
|
+
npx --yes skills@latest add https://proompteng.github.io/bilig --list
|
|
46
47
|
npx --yes skills@latest add proompteng/bilig --skill bilig-workpaper --list
|
|
47
48
|
```
|
|
48
49
|
|
|
@@ -51,7 +52,7 @@ Start by proving the direct WorkPaper loop:
|
|
|
51
52
|
```json
|
|
52
53
|
{
|
|
53
54
|
"command": "npm",
|
|
54
|
-
"args": ["exec", "--package", "bilig-workpaper@latest", "--", "bilig-agent-challenge"]
|
|
55
|
+
"args": ["exec", "--package", "bilig-workpaper@latest", "--", "bilig-agent-challenge", "--json"]
|
|
55
56
|
}
|
|
56
57
|
```
|
|
57
58
|
|
|
@@ -60,7 +61,7 @@ Use MCP only when the host specifically needs an MCP client boundary. For that p
|
|
|
60
61
|
```json
|
|
61
62
|
{
|
|
62
63
|
"command": "npm",
|
|
63
|
-
"args": ["exec", "--package", "bilig-workpaper@latest", "--", "bilig-mcp-challenge"]
|
|
64
|
+
"args": ["exec", "--package", "bilig-workpaper@latest", "--", "bilig-mcp-challenge", "--json"]
|
|
64
65
|
}
|
|
65
66
|
```
|
|
66
67
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bilig-workpaper",
|
|
3
|
-
"version": "0.119.
|
|
3
|
+
"version": "0.119.4",
|
|
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.
|
|
84
|
+
"@bilig/headless": "0.119.4"
|
|
85
85
|
},
|
|
86
86
|
"engines": {
|
|
87
87
|
"node": ">=22.0.0"
|