@bilig/workpaper 0.119.3 → 0.119.5
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 +12 -2
- package/README.md +17 -0
- package/SKILL.md +1 -0
- package/package.json +3 -3
- package/server.json +2 -2
package/AGENTS.md
CHANGED
|
@@ -6,8 +6,18 @@ Use this file when an AI coding agent, MCP client, or tool host needs workbook f
|
|
|
6
6
|
|
|
7
7
|
1. Read `https://proompteng.github.io/bilig/llms.txt` for the compact map.
|
|
8
8
|
2. Read `https://proompteng.github.io/bilig/llms-full.txt` when you need enough context to implement a workflow without searching the whole site.
|
|
9
|
-
3.
|
|
10
|
-
4.
|
|
9
|
+
3. Use `https://proompteng.github.io/bilig/agent-adoption-kit.html` when you need the shortest no-key install, MCP proof, and paste-ready workbook task.
|
|
10
|
+
4. Read `https://proompteng.github.io/bilig/skill.txt` when your agent supports skill manifests.
|
|
11
|
+
5. If your host can install skills from GitHub, run
|
|
12
|
+
`npx --yes skills@latest add proompteng/bilig --skill bilig-workpaper --list`.
|
|
13
|
+
6. If you are inside a cloned Bilig repository with Claude Code, use the
|
|
14
|
+
project skill at `.claude/skills/bilig-workpaper/SKILL.md`.
|
|
15
|
+
7. If you are using Cursor, Windsurf/Cascade, Cline, or Continue, use
|
|
16
|
+
`.cursor/rules/bilig-workpaper.mdc` or
|
|
17
|
+
`.windsurf/rules/bilig-workpaper.md`,
|
|
18
|
+
`.clinerules/bilig-workpaper.md`, or
|
|
19
|
+
`.continue/rules/bilig-workpaper.md`.
|
|
20
|
+
8. Start the MCP server or import `@bilig/workpaper` directly.
|
|
11
21
|
|
|
12
22
|
Remote MCP clients that support Streamable HTTP can smoke-test the stateless
|
|
13
23
|
demo endpoint at `https://bilig.proompteng.ai/mcp`. Directory scanners that inspect the
|
package/README.md
CHANGED
|
@@ -162,6 +162,23 @@ npm exec --package @bilig/workpaper@latest -- bilig-workpaper-mcp --workpaper ./
|
|
|
162
162
|
The challenge commands edit one input, recalculate dependent formulas, export
|
|
163
163
|
WorkPaper JSON, restore it, and print a `verified: true` proof object.
|
|
164
164
|
|
|
165
|
+
## Agent Adoption Kit
|
|
166
|
+
|
|
167
|
+
When another coding agent is about to solve a spreadsheet task by opening Excel,
|
|
168
|
+
LibreOffice, Google Sheets, or a screenshot grid, hand it the adoption kit
|
|
169
|
+
instead:
|
|
170
|
+
|
|
171
|
+
```sh
|
|
172
|
+
npx --yes skills@latest add proompteng/bilig --skill bilig-workpaper --list
|
|
173
|
+
npm exec --package @bilig/workpaper@latest -- bilig-mcp-challenge --json
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
The kit gives the agent one path: install the instructions, run the no-key MCP
|
|
177
|
+
proof, paste a workbook edit task, and require computed readback plus persisted
|
|
178
|
+
state before reporting success.
|
|
179
|
+
|
|
180
|
+
Docs: <https://proompteng.github.io/bilig/agent-adoption-kit.html>
|
|
181
|
+
|
|
165
182
|
## Agent Workflow Builders
|
|
166
183
|
|
|
167
184
|
Use the local formula-readback server when an agent workflow platform should
|
package/SKILL.md
CHANGED
|
@@ -41,6 +41,7 @@ If the host supports installable skills, first check that the public skill
|
|
|
41
41
|
package is discoverable:
|
|
42
42
|
|
|
43
43
|
```sh
|
|
44
|
+
npx --yes skills@latest add https://bilig.proompteng.ai --list
|
|
44
45
|
npx --yes skills@latest add proompteng/bilig --skill bilig-workpaper --list
|
|
45
46
|
```
|
|
46
47
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/workpaper",
|
|
3
|
-
"version": "0.119.
|
|
3
|
+
"version": "0.119.5",
|
|
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.119.
|
|
93
|
-
"bilig-workpaper": "0.119.
|
|
92
|
+
"@bilig/headless": "0.119.5",
|
|
93
|
+
"bilig-workpaper": "0.119.5"
|
|
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.119.
|
|
6
|
+
"version": "0.119.5",
|
|
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.119.
|
|
21
|
+
"version": "0.119.5",
|
|
22
22
|
"transport": {
|
|
23
23
|
"type": "stdio"
|
|
24
24
|
}
|