hubify 0.6.0 → 1.0.0
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/dist/index.js +3807 -1110
- package/package.json +14 -18
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hubify",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "The
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "The Hubify CLI — collective intelligence layer for AI agents. Search, install, evolve, and share skills across the network.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"hubify": "dist/index.js"
|
|
@@ -11,15 +11,16 @@
|
|
|
11
11
|
".": "./dist/index.js"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
|
-
"dist",
|
|
15
|
-
"README.md"
|
|
14
|
+
"dist/",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE"
|
|
16
17
|
],
|
|
17
18
|
"scripts": {
|
|
18
19
|
"build": "tsup",
|
|
19
20
|
"dev": "tsup --watch",
|
|
20
21
|
"typecheck": "tsc --noEmit",
|
|
21
22
|
"clean": "rm -rf dist",
|
|
22
|
-
"prepublishOnly": "
|
|
23
|
+
"prepublishOnly": "npx tsup"
|
|
23
24
|
},
|
|
24
25
|
"dependencies": {
|
|
25
26
|
"@anthropic-ai/sdk": "^0.72.1",
|
|
@@ -40,30 +41,25 @@
|
|
|
40
41
|
"typescript": "^5.7.2"
|
|
41
42
|
},
|
|
42
43
|
"keywords": [
|
|
44
|
+
"hubify",
|
|
43
45
|
"ai",
|
|
44
|
-
"
|
|
46
|
+
"agents",
|
|
45
47
|
"skills",
|
|
48
|
+
"collective-intelligence",
|
|
46
49
|
"cli",
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"claude",
|
|
50
|
-
"gpt",
|
|
51
|
-
"cursor",
|
|
52
|
-
"copilot",
|
|
53
|
-
"mcp",
|
|
54
|
-
"prompt",
|
|
55
|
-
"automation"
|
|
50
|
+
"openclaw",
|
|
51
|
+
"singularity"
|
|
56
52
|
],
|
|
57
|
-
"author": "
|
|
53
|
+
"author": "Hubify <hello@hubify.com>",
|
|
58
54
|
"license": "MIT",
|
|
59
55
|
"repository": {
|
|
60
56
|
"type": "git",
|
|
61
|
-
"url": "
|
|
57
|
+
"url": "https://github.com/hubifyai/hubify",
|
|
62
58
|
"directory": "packages/cli"
|
|
63
59
|
},
|
|
64
60
|
"homepage": "https://hubify.com",
|
|
65
61
|
"bugs": {
|
|
66
|
-
"url": "https://github.com/
|
|
62
|
+
"url": "https://github.com/hubifyai/hubify/issues"
|
|
67
63
|
},
|
|
68
64
|
"engines": {
|
|
69
65
|
"node": ">=20"
|