@uzolab/skillhub 0.12.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 +42 -0
- package/dist/bin.js +39881 -0
- package/package.json +37 -0
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# SkillHub
|
|
2
|
+
|
|
3
|
+
SkillHub is npm for agent skills: publish `SKILL.md` packages to
|
|
4
|
+
private registries your team owns, review changes like code, and sync the same
|
|
5
|
+
versions to every teammate's coding agents — without committing anything to
|
|
6
|
+
client repos.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```sh
|
|
11
|
+
npm i -g @uzolab/skillhub
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Or run it without installing anything:
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
npx @uzolab/skillhub --help
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Installing puts **two** commands on your PATH: `skillhub` and its short
|
|
21
|
+
alias `skh`. They are the same executable — use whichever you prefer.
|
|
22
|
+
|
|
23
|
+
## Quickstart
|
|
24
|
+
|
|
25
|
+
```sh
|
|
26
|
+
skillhub login # authenticate against the registry
|
|
27
|
+
skillhub init # onboard the current project
|
|
28
|
+
skillhub install <skill> # subscribe, and link it into your agent dirs
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Every command takes `--help`, and `--json` for a machine-readable envelope.
|
|
32
|
+
Run `skillhub doctor` if anything looks wrong.
|
|
33
|
+
|
|
34
|
+
## Documentation
|
|
35
|
+
|
|
36
|
+
Full documentation, including the command reference and self-hosting guide: https://docs.skillhub.fyi
|
|
37
|
+
|
|
38
|
+
## Requirements
|
|
39
|
+
|
|
40
|
+
Node.js 20 or newer. No other runtime dependency: the CLI ships as a single
|
|
41
|
+
bundled file. The OS keychain integration is an optional native module — when
|
|
42
|
+
it is unavailable, credentials fall back to a file in the config directory.
|