hubify 0.1.2 → 0.2.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.
@@ -0,0 +1,29 @@
1
+ # .hubify.yaml - managed by Hubify
2
+ hubify_version: "0.1.0"
3
+ skill_id: "skillssh-vercel-labs-vercel-deployment"
4
+ registry: "https://registry.hubify.com"
5
+
6
+ source:
7
+ origin: "imported"
8
+ imported_from: "skills.sh"
9
+ original_url: "https://skills.sh/vercel-labs/vercel-deployment"
10
+
11
+ trust:
12
+ confidence: 0.0
13
+ executions: 0
14
+ success_rate: 0.0
15
+ verification_level: 0
16
+ verified: false
17
+ trend: "stable"
18
+
19
+ classification:
20
+ category: "devops"
21
+ complexity: "basic"
22
+ platforms: ["claude-code", "cursor"]
23
+ tags: ["vercel", "deployment", "edge", "preview", "production"]
24
+
25
+ lineage:
26
+ - version: "1.0.0"
27
+ date: "2026-02-05T09:48:03.224Z"
28
+ author: "vercel-labs"
29
+ note: "Imported from Skills.sh agent skills directory"
@@ -0,0 +1,52 @@
1
+ ---
2
+ name: vercel-deployment
3
+ description: Deploy and manage applications on Vercel. Project setup, environment variables, domains, and edge configuration.
4
+ license: MIT
5
+ compatibility: ">=1.0.0"
6
+ metadata:
7
+ author: vercel-labs
8
+ version: "1.0.0"
9
+ category: devops
10
+ tags: ["vercel", "deployment", "edge", "preview", "production"]
11
+ source: skills.sh
12
+ ---
13
+
14
+ # Vercel Deployment
15
+
16
+ Deploy and manage applications on Vercel. Project setup, environment variables, domains, and edge configuration.
17
+
18
+ ## Installation
19
+
20
+ ```bash
21
+ npx skills add vercel-labs/vercel-deployment
22
+ ```
23
+
24
+ ## Use Cases
25
+
26
+ - Deploy to Vercel
27
+ - Configure environments
28
+ - Set up preview deployments
29
+
30
+ ## Tool Calls
31
+
32
+ This skill typically uses the following tools:
33
+ - `Bash`
34
+ - `Read`
35
+ - `Edit`
36
+
37
+ ## Integrations
38
+
39
+ - Vercel
40
+ - Next.js
41
+
42
+ ## Complexity
43
+
44
+ **Level:** Basic
45
+
46
+ ## Platforms
47
+
48
+ Supported on: claude-code, cursor
49
+
50
+ ---
51
+
52
+ *Imported from Skills.sh - The Agent Skills Directory*
@@ -0,0 +1,15 @@
1
+
2
+ > hubify@0.1.0 build /Users/houstongolden/Desktop/CODE_2026/hubifyskills/packages/cli
3
+ > tsup
4
+
5
+ CLI Building entry: src/index.ts
6
+ CLI Using tsconfig: tsconfig.json
7
+ CLI tsup v8.5.1
8
+ CLI Using tsup config: /Users/houstongolden/Desktop/CODE_2026/hubifyskills/packages/cli/tsup.config.ts
9
+ CLI Target: node20
10
+ CLI Cleaning output folder
11
+ ESM Build start
12
+ ESM dist/chunk-FW7BS3MW.js 900.00 B
13
+ ESM dist/convex-MXZDQPMB.js 125.00 B
14
+ ESM dist/index.js 758.57 KB
15
+ ESM ⚡️ Build success in 65ms
@@ -0,0 +1,4 @@
1
+
2
+ > hubify@0.1.0 typecheck /Users/houstongolden/Desktop/CODE_2026/hubifyskills/packages/cli
3
+ > tsc --noEmit
4
+
@@ -0,0 +1,40 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __export = (target, all) => {
3
+ for (var name in all)
4
+ __defProp(target, name, { get: all[name], enumerable: true });
5
+ };
6
+
7
+ // src/lib/convex.ts
8
+ import { ConvexHttpClient } from "convex/browser";
9
+ var CONVEX_URL = process.env.CONVEX_URL || "https://dapper-mockingbird-619.convex.cloud";
10
+ var client = null;
11
+ function getClient() {
12
+ if (!client) {
13
+ client = new ConvexHttpClient(CONVEX_URL);
14
+ }
15
+ return client;
16
+ }
17
+ function createApiProxy(path = []) {
18
+ return new Proxy(() => {
19
+ }, {
20
+ get(_target, prop) {
21
+ return createApiProxy([...path, prop]);
22
+ },
23
+ apply() {
24
+ return path.join(":");
25
+ }
26
+ });
27
+ }
28
+ function toFunctionName(ref) {
29
+ if (typeof ref === "string") return ref;
30
+ if (typeof ref === "function") return ref();
31
+ return String(ref);
32
+ }
33
+ var api = createApiProxy();
34
+
35
+ export {
36
+ __export,
37
+ getClient,
38
+ toFunctionName,
39
+ api
40
+ };
@@ -0,0 +1,10 @@
1
+ import {
2
+ api,
3
+ getClient,
4
+ toFunctionName
5
+ } from "./chunk-FW7BS3MW.js";
6
+ export {
7
+ api,
8
+ getClient,
9
+ toFunctionName
10
+ };