add-skill-lazy 1.0.30
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/README.md +269 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2557 -0
- package/package.json +90 -0
package/package.json
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "add-skill-lazy",
|
|
3
|
+
"version": "1.0.30",
|
|
4
|
+
"description": "Search Install agent skills onto coding agents (OpenCode, Claude Code, Codex, Cursor)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"add-skill": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsup src/index.ts --format esm --dts --clean",
|
|
15
|
+
"dev": "tsx src/index.ts",
|
|
16
|
+
"test": "tsx scripts/execute-tests.ts",
|
|
17
|
+
"prepublishOnly": "npm run build",
|
|
18
|
+
"format": "prettier --write 'src/**/*.ts' 'scripts/**/*.ts' 'tests/**/*.ts'",
|
|
19
|
+
"format:check": "prettier --check 'src/**/*.ts' 'scripts/**/*.ts' 'tests/**/*.ts'",
|
|
20
|
+
"prepare": "husky"
|
|
21
|
+
},
|
|
22
|
+
"lint-staged": {
|
|
23
|
+
"src/**/*.ts": "prettier --write",
|
|
24
|
+
"scripts/**/*.ts": "prettier --write",
|
|
25
|
+
"tests/**/*.ts": "prettier --write"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"cli",
|
|
29
|
+
"agent-skills",
|
|
30
|
+
"skills",
|
|
31
|
+
"ai-agents",
|
|
32
|
+
"amp",
|
|
33
|
+
"antigravity",
|
|
34
|
+
"claude-code",
|
|
35
|
+
"clawdbot",
|
|
36
|
+
"cline",
|
|
37
|
+
"codex",
|
|
38
|
+
"command-code",
|
|
39
|
+
"cursor",
|
|
40
|
+
"droid",
|
|
41
|
+
"gemini-cli",
|
|
42
|
+
"github-copilot",
|
|
43
|
+
"goose",
|
|
44
|
+
"kilo",
|
|
45
|
+
"kiro-cli",
|
|
46
|
+
"mcpjam",
|
|
47
|
+
"opencode",
|
|
48
|
+
"openhands",
|
|
49
|
+
"pi",
|
|
50
|
+
"qoder",
|
|
51
|
+
"qwen-code",
|
|
52
|
+
"roo",
|
|
53
|
+
"trae",
|
|
54
|
+
"windsurf",
|
|
55
|
+
"zencoder",
|
|
56
|
+
"neovate"
|
|
57
|
+
],
|
|
58
|
+
"repository": {
|
|
59
|
+
"type": "git",
|
|
60
|
+
"url": "git+https://github.com/rpfilomeno/add-skill-lazy.git"
|
|
61
|
+
},
|
|
62
|
+
"homepage": "https://github.com/rpfilomeno/add-skill-lazy#readme",
|
|
63
|
+
"bugs": {
|
|
64
|
+
"url": "https://github.com/rpfilomeno/add-skill-lazy/issues"
|
|
65
|
+
},
|
|
66
|
+
"author": "",
|
|
67
|
+
"license": "MIT",
|
|
68
|
+
"dependencies": {
|
|
69
|
+
"@clack/prompts": "^0.9.1",
|
|
70
|
+
"chalk": "^5.4.1",
|
|
71
|
+
"commander": "^13.1.0",
|
|
72
|
+
"gray-matter": "^4.0.3",
|
|
73
|
+
"patchright": "^1.57.0",
|
|
74
|
+
"python-shell": "^5.0.0",
|
|
75
|
+
"simple-git": "^3.27.0"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@types/node": "^22.19.7",
|
|
79
|
+
"husky": "^9.1.7",
|
|
80
|
+
"lint-staged": "^16.2.7",
|
|
81
|
+
"prettier": "^3.8.1",
|
|
82
|
+
"tsup": "^8.3.5",
|
|
83
|
+
"tsx": "^4.19.2",
|
|
84
|
+
"typescript": "^5.7.2"
|
|
85
|
+
},
|
|
86
|
+
"engines": {
|
|
87
|
+
"node": ">=18"
|
|
88
|
+
},
|
|
89
|
+
"packageManager": "pnpm@10.17.1"
|
|
90
|
+
}
|