-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.07 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "autoskill",
"version": "1.0.0",
"description": "MCP server that automatically reviews completed tasks and helps AI agents build a reusable personal skills library",
"main": "dist/index.js",
"type": "module",
"bin": {
"autoskill": "dist/cli.js"
},
"scripts": {
"build": "tsc && npm run copy-skills",
"copy-skills": "node -e \"const fs=require('fs');const p=require('path');function copyDir(src,dst){if(!fs.existsSync(dst))fs.mkdirSync(dst,{recursive:true});fs.readdirSync(src,{withFileTypes:true}).forEach(e=>{const s=p.join(src,e.name);const d=p.join(dst,e.name);if(e.isDirectory()){copyDir(s,d);}else if(e.name.endsWith('.md')){fs.copyFileSync(s,d);}});}copyDir('src/builtin-skills','dist/builtin-skills');\"",
"dev": "tsc --watch",
"start": "node dist/index.js"
},
"keywords": [
"mcp",
"ai",
"agent",
"skills",
"automation"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.15.0",
"typescript": "^5.8.0"
}
}