@dgruzd/skills 1.4.3
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 +454 -0
- package/ThirdPartyNoticeText.txt +171 -0
- package/bin/cli.mjs +14 -0
- package/dist/THIRD-PARTY-LICENSES.md +458 -0
- package/dist/_chunks/libs/@clack/core.mjs +767 -0
- package/dist/_chunks/libs/@clack/prompts.mjs +334 -0
- package/dist/_chunks/libs/@kwsites/file-exists.mjs +785 -0
- package/dist/_chunks/libs/@kwsites/promise-deferred.mjs +52 -0
- package/dist/_chunks/libs/esprima.mjs +5338 -0
- package/dist/_chunks/libs/extend-shallow.mjs +34 -0
- package/dist/_chunks/libs/gray-matter.mjs +2717 -0
- package/dist/_chunks/libs/simple-git.mjs +3604 -0
- package/dist/_chunks/libs/xdg-basedir.mjs +14 -0
- package/dist/_chunks/rolldown-runtime.mjs +24 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.mjs +4558 -0
- package/package.json +113 -0
package/package.json
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dgruzd/skills",
|
|
3
|
+
"version": "1.4.3",
|
|
4
|
+
"description": "The open agent skills ecosystem (fork with GitLab update support)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"skills": "./bin/cli.mjs",
|
|
8
|
+
"add-skill": "./bin/cli.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"bin",
|
|
13
|
+
"README.md",
|
|
14
|
+
"ThirdPartyNoticeText.txt"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "npx tsx scripts/generate-licenses.ts && obuild",
|
|
18
|
+
"generate-licenses": "npx tsx scripts/generate-licenses.ts",
|
|
19
|
+
"dev": "node src/cli.ts",
|
|
20
|
+
"exec:test": "node scripts/execute-tests.ts",
|
|
21
|
+
"prepublishOnly": "npm run build",
|
|
22
|
+
"format": "prettier --write 'src/**/*.ts' 'scripts/**/*.ts'",
|
|
23
|
+
"format:check": "prettier --check 'src/**/*.ts' 'scripts/**/*.ts'",
|
|
24
|
+
"prepare": "husky",
|
|
25
|
+
"test": "vitest",
|
|
26
|
+
"type-check": "tsc --noEmit",
|
|
27
|
+
"publish:snapshot": "npm version prerelease --preid=snapshot --no-git-tag-version && npm publish --tag snapshot"
|
|
28
|
+
},
|
|
29
|
+
"lint-staged": {
|
|
30
|
+
"src/**/*.ts": "prettier --write",
|
|
31
|
+
"scripts/**/*.ts": "prettier --write",
|
|
32
|
+
"tests/**/*.ts": "prettier --write"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"cli",
|
|
36
|
+
"agent-skills",
|
|
37
|
+
"skills",
|
|
38
|
+
"ai-agents",
|
|
39
|
+
"amp",
|
|
40
|
+
"antigravity",
|
|
41
|
+
"augment",
|
|
42
|
+
"claude-code",
|
|
43
|
+
"openclaw",
|
|
44
|
+
"cline",
|
|
45
|
+
"codebuddy",
|
|
46
|
+
"codex",
|
|
47
|
+
"command-code",
|
|
48
|
+
"continue",
|
|
49
|
+
"cortex",
|
|
50
|
+
"crush",
|
|
51
|
+
"cursor",
|
|
52
|
+
"droid",
|
|
53
|
+
"gemini-cli",
|
|
54
|
+
"github-copilot",
|
|
55
|
+
"goose",
|
|
56
|
+
"junie",
|
|
57
|
+
"iflow-cli",
|
|
58
|
+
"kilo",
|
|
59
|
+
"kimi-cli",
|
|
60
|
+
"kiro-cli",
|
|
61
|
+
"kode",
|
|
62
|
+
"mcpjam",
|
|
63
|
+
"mistral-vibe",
|
|
64
|
+
"mux",
|
|
65
|
+
"opencode",
|
|
66
|
+
"openhands",
|
|
67
|
+
"pi",
|
|
68
|
+
"qoder",
|
|
69
|
+
"qwen-code",
|
|
70
|
+
"replit",
|
|
71
|
+
"roo",
|
|
72
|
+
"trae",
|
|
73
|
+
"trae-cn",
|
|
74
|
+
"windsurf",
|
|
75
|
+
"zencoder",
|
|
76
|
+
"neovate",
|
|
77
|
+
"pochi",
|
|
78
|
+
"adal",
|
|
79
|
+
"universal"
|
|
80
|
+
],
|
|
81
|
+
"repository": {
|
|
82
|
+
"type": "git",
|
|
83
|
+
"url": "git+https://github.com/dgruzd/skills.git"
|
|
84
|
+
},
|
|
85
|
+
"homepage": "https://github.com/dgruzd/skills#readme",
|
|
86
|
+
"bugs": {
|
|
87
|
+
"url": "https://github.com/dgruzd/skills/issues"
|
|
88
|
+
},
|
|
89
|
+
"author": "",
|
|
90
|
+
"license": "MIT",
|
|
91
|
+
"publishConfig": {
|
|
92
|
+
"access": "public"
|
|
93
|
+
},
|
|
94
|
+
"devDependencies": {
|
|
95
|
+
"@clack/prompts": "^0.11.0",
|
|
96
|
+
"@types/bun": "latest",
|
|
97
|
+
"@types/node": "^22.10.0",
|
|
98
|
+
"gray-matter": "^4.0.3",
|
|
99
|
+
"husky": "^9.1.7",
|
|
100
|
+
"lint-staged": "^16.2.7",
|
|
101
|
+
"obuild": "^0.4.22",
|
|
102
|
+
"picocolors": "^1.1.1",
|
|
103
|
+
"prettier": "^3.8.1",
|
|
104
|
+
"simple-git": "^3.27.0",
|
|
105
|
+
"typescript": "^5.9.3",
|
|
106
|
+
"vitest": "^4.0.17",
|
|
107
|
+
"xdg-basedir": "^5.1.0"
|
|
108
|
+
},
|
|
109
|
+
"engines": {
|
|
110
|
+
"node": ">=18"
|
|
111
|
+
},
|
|
112
|
+
"packageManager": "pnpm@10.17.1"
|
|
113
|
+
}
|