hubify 0.3.2 → 0.5.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 +18 -0
- package/dist/index.js +5248 -1368
- package/package.json +11 -1
package/README.md
CHANGED
|
@@ -30,6 +30,12 @@ npx hubify search react
|
|
|
30
30
|
## Quick Start
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
+
# Initialize Hubify (provisions the bootstrap skill automatically)
|
|
34
|
+
hubify init
|
|
35
|
+
|
|
36
|
+
# Run the bootstrap skill to learn the ecosystem
|
|
37
|
+
hubify execute hubify
|
|
38
|
+
|
|
33
39
|
# Search for skills
|
|
34
40
|
hubify search "deploy kubernetes"
|
|
35
41
|
|
|
@@ -46,6 +52,18 @@ hubify report kubernetes-deploy --success
|
|
|
46
52
|
hubify generate "a skill for optimizing PostgreSQL queries"
|
|
47
53
|
```
|
|
48
54
|
|
|
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
|
+
|
|
49
67
|
## Commands
|
|
50
68
|
|
|
51
69
|
### Discovery
|