@thinkwell/acp 0.5.3 → 0.5.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/dist/skill-server.d.ts +1 -1
- package/dist/skill-server.js +1 -1
- package/dist/skill.d.ts +1 -1
- package/package.json +3 -3
package/dist/skill-server.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* - read_skill_file: reads a file from a stored skill's basePath
|
|
8
8
|
*
|
|
9
9
|
* These tools are registered as standard MCP tools but are intended to be
|
|
10
|
-
* hidden from the prompt (via
|
|
10
|
+
* hidden from the prompt (via Plan's defineTool pattern).
|
|
11
11
|
*/
|
|
12
12
|
import type { McpServer } from "./mcp-server.js";
|
|
13
13
|
import type { VirtualSkill, StoredSkill } from "./skill.js";
|
package/dist/skill-server.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* - read_skill_file: reads a file from a stored skill's basePath
|
|
8
8
|
*
|
|
9
9
|
* These tools are registered as standard MCP tools but are intended to be
|
|
10
|
-
* hidden from the prompt (via
|
|
10
|
+
* hidden from the prompt (via Plan's defineTool pattern).
|
|
11
11
|
*/
|
|
12
12
|
import { readFile } from "node:fs/promises";
|
|
13
13
|
import { resolve, relative, isAbsolute } from "node:path";
|
package/dist/skill.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
/**
|
|
8
8
|
* A tool bundled with a virtual skill.
|
|
9
|
-
* Same trust model as
|
|
9
|
+
* Same trust model as Plan's .tool() -- user-authored handler functions.
|
|
10
10
|
*
|
|
11
11
|
* Unlike top-level .tool() registrations, skill tools are not registered as
|
|
12
12
|
* individual MCP tools with formal schemas. Instead, the skill body documents
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thinkwell/acp",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "TypeScript implementation of ACP (Agent Client Protocol) extensions for Thinkwell",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@agentclientprotocol/sdk": "^0.4.0",
|
|
29
29
|
"uuid": "^11.0.3",
|
|
30
|
-
"@thinkwell/conductor": "0.5.
|
|
31
|
-
"@thinkwell/protocol": "0.5.
|
|
30
|
+
"@thinkwell/conductor": "0.5.4",
|
|
31
|
+
"@thinkwell/protocol": "0.5.4"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/node": "^24.10.4",
|