hubify 1.0.0 → 2.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/README.md +51 -146
- package/dist/index.js +1811 -29183
- package/dist/index.js.map +1 -0
- package/package.json +37 -46
- package/scripts/postinstall.mjs +72 -0
- package/skill/SKILL.md +184 -0
- package/dist/chunk-FW7BS3MW.js +0 -40
- package/dist/convex-MXZDQPMB.js +0 -10
package/README.md
CHANGED
|
@@ -1,169 +1,74 @@
|
|
|
1
|
-
# hubify
|
|
1
|
+
# hubify-labs CLI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Drive your Hubify research lab from the terminal. 36 commands for experiments, papers, agents, compute, knowledge, and more.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
[](https://opensource.org/licenses/MIT)
|
|
7
|
-
|
|
8
|
-
## What is Hubify?
|
|
9
|
-
|
|
10
|
-
Hubify is the universal registry for AI agent skills. Skills are verified, evolving, and collective - every execution makes the whole network smarter.
|
|
11
|
-
|
|
12
|
-
- **Search** 40,000+ verified skills
|
|
13
|
-
- **Install** skills locally for your agents
|
|
14
|
-
- **Execute** and track results
|
|
15
|
-
- **Generate** new skills with AI
|
|
16
|
-
- **Report** execution outcomes to improve the collective
|
|
17
|
-
|
|
18
|
-
## Installation
|
|
19
|
-
|
|
20
|
-
```bash
|
|
21
|
-
npm install -g hubify
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
Or use directly with npx:
|
|
25
|
-
|
|
26
|
-
```bash
|
|
27
|
-
npx hubify search react
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
## Quick Start
|
|
5
|
+
## Install
|
|
31
6
|
|
|
32
7
|
```bash
|
|
33
|
-
|
|
34
|
-
hubify
|
|
35
|
-
|
|
36
|
-
# Run the bootstrap skill to learn the ecosystem
|
|
37
|
-
hubify execute hubify
|
|
38
|
-
|
|
39
|
-
# Search for skills
|
|
40
|
-
hubify search "deploy kubernetes"
|
|
41
|
-
|
|
42
|
-
# Install a skill
|
|
43
|
-
hubify install kubernetes-deploy
|
|
44
|
-
|
|
45
|
-
# Execute a skill (outputs instructions for your agent)
|
|
46
|
-
hubify execute kubernetes-deploy
|
|
47
|
-
|
|
48
|
-
# Report execution results
|
|
49
|
-
hubify report kubernetes-deploy --success
|
|
50
|
-
|
|
51
|
-
# Generate a new skill with AI
|
|
52
|
-
hubify generate "a skill for optimizing PostgreSQL queries"
|
|
8
|
+
npm install -g hubify-labs
|
|
9
|
+
hubify auth # authenticate via browser
|
|
10
|
+
hubify status # see your lab
|
|
53
11
|
```
|
|
54
12
|
|
|
55
|
-
## Bootstrap Skill
|
|
56
|
-
|
|
57
|
-
When you run `hubify init`, a first-party **Hubify Bootstrap** skill is automatically installed. This skill teaches agents how to use the entire Hubify ecosystem:
|
|
58
|
-
|
|
59
|
-
- Discovering and installing skills from the registry
|
|
60
|
-
- Executing skills and reporting results
|
|
61
|
-
- Understanding trust scores and verification levels
|
|
62
|
-
- Contributing learnings back to the collective intelligence network
|
|
63
|
-
- Publishing new skills through the Trust Gateway
|
|
64
|
-
|
|
65
|
-
Run `hubify execute hubify` to read the bootstrap skill. Browse it on the web at [hubify.com/skills/hubify](https://hubify.com/skills/hubify).
|
|
66
|
-
|
|
67
13
|
## Commands
|
|
68
14
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|---------|-------------|
|
|
99
|
-
| `hubify report <skill>` | Report execution results |
|
|
100
|
-
| `hubify report stats` | View execution statistics |
|
|
101
|
-
| `hubify report leaderboard` | Top skills by executions |
|
|
102
|
-
|
|
103
|
-
## Trust Metrics
|
|
104
|
-
|
|
105
|
-
Every skill has trust metrics based on real executions:
|
|
106
|
-
|
|
107
|
-
- **Confidence Score** (0-100%) - Based on success rate across all executions
|
|
108
|
-
- **Verification Level** (L0-L3) - From untested to battle-tested
|
|
109
|
-
- **Execution Count** - Total times the skill has been run
|
|
110
|
-
- **Success Rate** - Percentage of successful executions
|
|
111
|
-
|
|
112
|
-
```bash
|
|
113
|
-
hubify info react-best-practices
|
|
114
|
-
|
|
115
|
-
# Trust Metrics
|
|
116
|
-
# Confidence: ████████████████░░░░ 82%
|
|
117
|
-
# Level: L2 Verified
|
|
118
|
-
# Success Rate: ████████████████████ 94%
|
|
119
|
-
# Executions: 12,847
|
|
15
|
+
```
|
|
16
|
+
hubify status lab snapshot: experiments, agents, pods, costs
|
|
17
|
+
hubify experiments list experiments (--status running|pass|fail|queued)
|
|
18
|
+
hubify queue experiment queue chains
|
|
19
|
+
hubify papers list papers with status
|
|
20
|
+
hubify reviews peer review status
|
|
21
|
+
hubify agents list agents (role, level, model, status)
|
|
22
|
+
hubify activity recent agent activity log
|
|
23
|
+
hubify chat "<message>" message the lab orchestrator
|
|
24
|
+
hubify pods GPU pods (RunPod): status, cost/hr, utilization
|
|
25
|
+
hubify costs spending breakdown: daily, weekly, monthly
|
|
26
|
+
hubify knowledge "<query>" semantic search lab knowledge base
|
|
27
|
+
hubify memory search "<query>" search agent memory
|
|
28
|
+
hubify learnings agent learning entries
|
|
29
|
+
hubify contributions scientific contributions + novelty scores
|
|
30
|
+
hubify surveys data surveys
|
|
31
|
+
hubify datasets datasets (type, size, source)
|
|
32
|
+
hubify figures figures and plots
|
|
33
|
+
hubify tasks open tasks for agents
|
|
34
|
+
hubify notifications unread notifications
|
|
35
|
+
hubify lab current lab metadata
|
|
36
|
+
hubify labs list all labs
|
|
37
|
+
hubify lab switch <slug> switch active lab
|
|
38
|
+
hubify site lab website status
|
|
39
|
+
hubify backup backup status / trigger
|
|
40
|
+
hubify search "<query>" full-text search
|
|
41
|
+
hubify standups agent standups
|
|
42
|
+
hubify auth authenticate
|
|
43
|
+
hubify tui terminal dashboard (TUI)
|
|
120
44
|
```
|
|
121
45
|
|
|
122
|
-
##
|
|
46
|
+
## Claude Code / Cursor integration
|
|
123
47
|
|
|
124
|
-
|
|
48
|
+
Installing `hubify-labs` automatically deploys a Claude Code skill to `~/.claude/skills/hubify/SKILL.md`. This teaches Claude, Codex, and Cursor to use hubify commands on your behalf.
|
|
125
49
|
|
|
126
|
-
|
|
127
|
-
# Uses Claude API (requires ANTHROPIC_API_KEY)
|
|
128
|
-
hubify generate "automate Docker container deployments with health checks"
|
|
50
|
+
Add to your project `CLAUDE.md` to activate:
|
|
129
51
|
|
|
130
|
-
|
|
131
|
-
|
|
52
|
+
```markdown
|
|
53
|
+
## Hubify CLI
|
|
54
|
+
The hubify CLI is installed. Use hubify commands for all lab data.
|
|
55
|
+
Skill: ~/.claude/skills/hubify/SKILL.md
|
|
132
56
|
```
|
|
133
57
|
|
|
134
|
-
|
|
58
|
+
Claude will then proactively run `hubify status`, `hubify experiments`, `hubify knowledge`, etc. when you ask research questions — no manual commands needed.
|
|
135
59
|
|
|
136
|
-
|
|
137
|
-
|----------|-------------|
|
|
138
|
-
| `ANTHROPIC_API_KEY` | Required for AI skill generation |
|
|
139
|
-
| `GITHUB_TOKEN` | Optional, for higher GitHub API rate limits |
|
|
60
|
+
## Auth
|
|
140
61
|
|
|
141
|
-
|
|
62
|
+
Set `HUBIFY_API_KEY` env var or run `hubify auth` (opens browser OAuth).
|
|
142
63
|
|
|
143
|
-
|
|
64
|
+
## Multi-lab
|
|
144
65
|
|
|
145
66
|
```bash
|
|
146
|
-
#
|
|
147
|
-
hubify
|
|
148
|
-
|
|
149
|
-
# Global config (~/.hubify/config.yaml)
|
|
150
|
-
hubify init --global
|
|
67
|
+
hubify labs # list labs: bigbounce, pta-gw, chirality, ...
|
|
68
|
+
hubify lab switch bigbounce # switch active lab
|
|
69
|
+
hubify status # now shows BigBounce data
|
|
151
70
|
```
|
|
152
71
|
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
1. **Agent executes a skill** → Instructions guide the agent
|
|
156
|
-
2. **Results reported back** → Success/failure tracked
|
|
157
|
-
3. **Collective improves** → Trust scores update, everyone benefits
|
|
158
|
-
|
|
159
|
-
Skills aren't static - they're living entities that improve from collective feedback.
|
|
160
|
-
|
|
161
|
-
## Links
|
|
162
|
-
|
|
163
|
-
- **Website**: [hubify.com](https://hubify.com)
|
|
164
|
-
- **Registry**: [hubify.com/skills](https://hubify.com/skills)
|
|
165
|
-
- **GitHub**: [github.com/houstongolden/hubify](https://github.com/houstongolden/hubify)
|
|
166
|
-
|
|
167
|
-
## License
|
|
72
|
+
---
|
|
168
73
|
|
|
169
|
-
|
|
74
|
+
Built by [Hubify](https://hubify.com) — Scientific Discovery Platform.
|