hubify 0.5.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.
Files changed (2) hide show
  1. package/dist/index.js +7538 -2642
  2. package/package.json +16 -20
package/package.json CHANGED
@@ -1,28 +1,28 @@
1
1
  {
2
2
  "name": "hubify",
3
- "version": "0.5.0",
4
- "description": "The living intelligence layer for Agent Skills",
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
- "hubify": "./dist/index.js"
7
+ "hubify": "dist/index.js"
8
8
  },
9
9
  "main": "./dist/index.js",
10
10
  "exports": {
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": "pnpm run build"
23
+ "prepublishOnly": "npx tsup"
23
24
  },
24
25
  "dependencies": {
25
- "@hubify/shared": "workspace:*",
26
26
  "@anthropic-ai/sdk": "^0.72.1",
27
27
  "chalk": "^5.3.0",
28
28
  "commander": "^12.1.0",
@@ -34,36 +34,32 @@
34
34
  "yaml": "^2.6.1"
35
35
  },
36
36
  "devDependencies": {
37
+ "@hubify/shared": "workspace:*",
37
38
  "@types/node": "^22.10.5",
38
39
  "tsup": "^8.3.5",
39
40
  "tsx": "^4.19.2",
40
41
  "typescript": "^5.7.2"
41
42
  },
42
43
  "keywords": [
44
+ "hubify",
43
45
  "ai",
44
- "agent",
46
+ "agents",
45
47
  "skills",
48
+ "collective-intelligence",
46
49
  "cli",
47
- "hubify",
48
- "llm",
49
- "claude",
50
- "gpt",
51
- "cursor",
52
- "copilot",
53
- "mcp",
54
- "prompt",
55
- "automation"
50
+ "openclaw",
51
+ "singularity"
56
52
  ],
57
- "author": "Houston Golden",
53
+ "author": "Hubify <hello@hubify.com>",
58
54
  "license": "MIT",
59
55
  "repository": {
60
56
  "type": "git",
61
- "url": "https://github.com/houstongolden/hubify.git",
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/houstongolden/hubify/issues"
62
+ "url": "https://github.com/hubifyai/hubify/issues"
67
63
  },
68
64
  "engines": {
69
65
  "node": ">=20"