@webstew/agent-tools 0.1.0 → 0.1.2
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/bin/agent-tools +2 -2
- package/package.json +22 -7
package/bin/agent-tools
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#!/usr/bin/env
|
|
2
|
-
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
require('../dist/index.js')
|
package/package.json
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstew/agent-tools",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "MCP server exposing Webstew CMS, integrations, image, grader, and workspace tools to Claude Code via the local bridge.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"bin": {
|
|
8
|
-
"agent-tools": "
|
|
8
|
+
"agent-tools": "bin/agent-tools"
|
|
9
9
|
},
|
|
10
|
-
"files": [
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/",
|
|
12
|
+
"bin/",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
11
15
|
"scripts": {
|
|
12
|
-
"build": "tsc && node -
|
|
16
|
+
"build": "tsc && node scripts/fix-shebang.js dist/index.js",
|
|
13
17
|
"prepack": "npm run build",
|
|
14
18
|
"dev": "tsx src/index.ts"
|
|
15
19
|
},
|
|
@@ -20,8 +24,19 @@
|
|
|
20
24
|
"@types/node": "^20.11.16",
|
|
21
25
|
"typescript": "^5.3.3"
|
|
22
26
|
},
|
|
23
|
-
"engines": {
|
|
24
|
-
|
|
25
|
-
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/SGK112/ai-website-builder.git"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"webstew",
|
|
36
|
+
"mcp",
|
|
37
|
+
"claude",
|
|
38
|
+
"ai",
|
|
39
|
+
"tools"
|
|
40
|
+
],
|
|
26
41
|
"license": "MIT"
|
|
27
42
|
}
|