@bilig/workpaper 0.149.0 → 0.151.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 +11 -10
- package/package.json +4 -4
- package/server.json +2 -2
package/AGENTS.md
CHANGED
|
@@ -4,28 +4,29 @@ Use this file when an AI coding agent, MCP client, or tool host needs workbook f
|
|
|
4
4
|
|
|
5
5
|
## Discovery Order
|
|
6
6
|
|
|
7
|
-
1. Read `https://proompteng.github.io/bilig/
|
|
8
|
-
2. Read `https://proompteng.github.io/bilig/llms
|
|
9
|
-
3.
|
|
10
|
-
4.
|
|
7
|
+
1. Read `https://proompteng.github.io/bilig/agent-start.txt` for the one-command WorkPaper readback contract.
|
|
8
|
+
2. Read `https://proompteng.github.io/bilig/llms.txt` for the compact map.
|
|
9
|
+
3. Read `https://proompteng.github.io/bilig/llms-full.txt` when you need enough context to implement a workflow without searching the whole site.
|
|
10
|
+
4. Use `https://proompteng.github.io/bilig/agent-adoption-kit.html` when you need the shortest no-key install, MCP proof, and workbook task.
|
|
11
|
+
5. If your host can install skills from a well-known endpoint, run
|
|
11
12
|
`npx --yes skills@latest add https://bilig.proompteng.ai --list`.
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
6. Read `https://bilig.proompteng.ai/.well-known/agent-skills/bilig-workpaper/SKILL.txt` when your agent supports skill manifests.
|
|
14
|
+
7. If your host can install skills from GitHub, run
|
|
14
15
|
`npx --yes skills@latest add proompteng/bilig --skill bilig-workpaper --list`.
|
|
15
|
-
|
|
16
|
+
8. If you are using GitHub Copilot or VS Code agent mode in a cloned checkout,
|
|
16
17
|
use `.github/copilot-instructions.md`,
|
|
17
18
|
`.github/prompts/bilig-workpaper-proof.prompt.md`, and
|
|
18
19
|
`.vscode/mcp.json`.
|
|
19
|
-
|
|
20
|
+
9. If you are inside a cloned Bilig repository with Claude Code, use the
|
|
20
21
|
project skill at `.claude/skills/bilig-workpaper/SKILL.md` or invoke the
|
|
21
22
|
explicit formula-proof command from
|
|
22
23
|
`.claude/commands/bilig-workpaper-proof.md`.
|
|
23
|
-
|
|
24
|
+
10. If you are using Cursor, Windsurf/Cascade, Cline, or Continue, use
|
|
24
25
|
`.cursor/rules/bilig-workpaper.mdc` or
|
|
25
26
|
`.windsurf/rules/bilig-workpaper.md`,
|
|
26
27
|
`.clinerules/bilig-workpaper.md`, or
|
|
27
28
|
`.continue/rules/bilig-workpaper.md`.
|
|
28
|
-
|
|
29
|
+
11. Start the MCP server or import `@bilig/workpaper` directly.
|
|
29
30
|
|
|
30
31
|
Remote MCP clients that support Streamable HTTP can smoke-test the stateless
|
|
31
32
|
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.151.0",
|
|
4
4
|
"description": "WorkPaper API, CLI evaluator, and MCP server for headless spreadsheet formulas in Node.js services and agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-tools",
|
|
@@ -88,9 +88,9 @@
|
|
|
88
88
|
"build": "pnpm --dir ../.. --filter bilig-workpaper build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
89
89
|
},
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@bilig/headless": "0.
|
|
92
|
-
"@bilig/xlsx-formula-recalc": "0.
|
|
93
|
-
"bilig-workpaper": "0.
|
|
91
|
+
"@bilig/headless": "0.151.0",
|
|
92
|
+
"@bilig/xlsx-formula-recalc": "0.151.0",
|
|
93
|
+
"bilig-workpaper": "0.151.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.151.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.151.0",
|
|
22
22
|
"transport": {
|
|
23
23
|
"type": "stdio"
|
|
24
24
|
}
|