@bilig/workpaper 0.119.6 → 0.122.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.
- package/AGENTS.md +10 -4
- package/package.json +3 -3
- package/server.json +2 -2
package/AGENTS.md
CHANGED
|
@@ -12,14 +12,20 @@ Use this file when an AI coding agent, MCP client, or tool host needs workbook f
|
|
|
12
12
|
5. Read `https://proompteng.github.io/bilig/skill.txt` when your agent supports skill manifests.
|
|
13
13
|
6. If your host can install skills from GitHub, run
|
|
14
14
|
`npx --yes skills@latest add proompteng/bilig --skill bilig-workpaper --list`.
|
|
15
|
-
7. If you are
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
7. If you are using GitHub Copilot or VS Code agent mode in a cloned checkout,
|
|
16
|
+
use `.github/copilot-instructions.md`,
|
|
17
|
+
`.github/prompts/bilig-workpaper-proof.prompt.md`, and
|
|
18
|
+
`.vscode/mcp.json`.
|
|
19
|
+
8. If you are inside a cloned Bilig repository with Claude Code, use the
|
|
20
|
+
project skill at `.claude/skills/bilig-workpaper/SKILL.md` or invoke the
|
|
21
|
+
explicit formula-proof command from
|
|
22
|
+
`.claude/commands/bilig-workpaper-proof.md`.
|
|
23
|
+
9. If you are using Cursor, Windsurf/Cascade, Cline, or Continue, use
|
|
18
24
|
`.cursor/rules/bilig-workpaper.mdc` or
|
|
19
25
|
`.windsurf/rules/bilig-workpaper.md`,
|
|
20
26
|
`.clinerules/bilig-workpaper.md`, or
|
|
21
27
|
`.continue/rules/bilig-workpaper.md`.
|
|
22
|
-
|
|
28
|
+
10. Start the MCP server or import `@bilig/workpaper` directly.
|
|
23
29
|
|
|
24
30
|
Remote MCP clients that support Streamable HTTP can smoke-test the stateless
|
|
25
31
|
demo endpoint at `https://bilig.proompteng.ai/mcp`. Directory scanners that inspect the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/workpaper",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.122.0",
|
|
4
4
|
"description": "Scoped Bilig WorkPaper runtime and MCP server for Node.js services, agent tools, and server-side spreadsheet formulas.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-tools",
|
|
@@ -89,8 +89,8 @@
|
|
|
89
89
|
"build": "pnpm --dir ../.. --filter bilig-workpaper build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
90
90
|
},
|
|
91
91
|
"dependencies": {
|
|
92
|
-
"@bilig/headless": "0.
|
|
93
|
-
"bilig-workpaper": "0.
|
|
92
|
+
"@bilig/headless": "0.122.0",
|
|
93
|
+
"bilig-workpaper": "0.122.0"
|
|
94
94
|
},
|
|
95
95
|
"devDependencies": {
|
|
96
96
|
"ai": "6.0.182",
|
package/server.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "io.github.proompteng/bilig-workpaper",
|
|
4
4
|
"title": "Bilig WorkPaper",
|
|
5
5
|
"description": "WorkPaper MCP tools, resources, and prompts for readback, edits, and JSON persistence.",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.122.0",
|
|
7
7
|
"repository": {
|
|
8
8
|
"url": "https://github.com/proompteng/bilig",
|
|
9
9
|
"source": "github"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
{
|
|
19
19
|
"registryType": "npm",
|
|
20
20
|
"identifier": "@bilig/workpaper",
|
|
21
|
-
"version": "0.
|
|
21
|
+
"version": "0.122.0",
|
|
22
22
|
"transport": {
|
|
23
23
|
"type": "stdio"
|
|
24
24
|
}
|