@skillshub-labs/cli 0.1.18 → 0.1.19
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 +16 -2
- package/bin/skills-hub +193 -15
- package/data/official-presets/catalog.json +436 -0
- package/data/official-presets/policies/policy-azure-cloud.md +18 -0
- package/data/official-presets/policies/policy-cloudflare-edge.md +18 -0
- package/data/official-presets/policies/policy-fastapi-py.md +31 -0
- package/data/official-presets/policies/policy-fullstack-web.md +24 -0
- package/data/official-presets/policies/policy-go-service.md +31 -0
- package/data/official-presets/policies/policy-hf-ml.md +18 -0
- package/data/official-presets/policies/policy-langchain-apps.md +18 -0
- package/data/official-presets/policies/policy-literature-review.md +18 -0
- package/data/official-presets/policies/policy-monorepo-turbo.md +31 -0
- package/data/official-presets/policies/policy-nextjs-ts-strict.md +31 -0
- package/data/official-presets/policies/policy-node-api-ts.md +31 -0
- package/data/official-presets/policies/policy-python-api.md +18 -0
- package/data/official-presets/policies/policy-release-ci.md +18 -0
- package/data/official-presets/policies/policy-release-maintainer.md +31 -0
- package/data/official-presets/policies/policy-scientific-discovery.md +18 -0
- package/data/official-presets/policies/policy-scientific-python.md +31 -0
- package/data/official-presets/policies/policy-security-audit.md +18 -0
- package/data/official-presets/policies/policy-web-frontend.md +18 -0
- package/lib/core/kit-core.d.ts +14 -3
- package/lib/core/kit-core.mjs +327 -20
- package/lib/core/kit-types.ts +128 -3
- package/lib/services/kit-loadout-import.mjs +599 -0
- package/lib/services/kit-service.d.ts +90 -2
- package/lib/services/kit-service.mjs +665 -38
- package/package.json +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skillshub-labs/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
4
4
|
"description": "Unify your AI toolbox. A local hub to visualize, manage, and sync skills across Antigravity, Claude, Cursor, Trae, and other AI agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skills",
|
|
@@ -17,7 +17,13 @@
|
|
|
17
17
|
"type": "git",
|
|
18
18
|
"url": "https://github.com/PotatoDog1669/skills-hub.git"
|
|
19
19
|
},
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/PotatoDog1669/skills-hub/issues"
|
|
22
|
+
},
|
|
20
23
|
"homepage": "https://github.com/PotatoDog1669/skills-hub",
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18"
|
|
26
|
+
},
|
|
21
27
|
"publishConfig": {
|
|
22
28
|
"access": "public"
|
|
23
29
|
},
|
|
@@ -26,6 +32,7 @@
|
|
|
26
32
|
},
|
|
27
33
|
"files": [
|
|
28
34
|
"bin/skills-hub",
|
|
35
|
+
"data/official-presets",
|
|
29
36
|
"lib/core/provider-core.mjs",
|
|
30
37
|
"lib/core/provider-core.d.ts",
|
|
31
38
|
"lib/core/kit-core.mjs",
|
|
@@ -35,6 +42,7 @@
|
|
|
35
42
|
"lib/services/provider-service.d.ts",
|
|
36
43
|
"lib/services/kit-service.mjs",
|
|
37
44
|
"lib/services/kit-service.d.ts",
|
|
45
|
+
"lib/services/kit-loadout-import.mjs",
|
|
38
46
|
"README.md",
|
|
39
47
|
"LICENSE"
|
|
40
48
|
],
|