yourskills 0.1.3 → 0.1.4
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 +14 -7
- package/dist/main.js +6093 -4356
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,8 @@ Install the agent skills and bundles your team publishes, from the terminal.
|
|
|
6
6
|
commit your registry pins. The registry never sends skill files: they are fetched from
|
|
7
7
|
your own git host with your own credentials, so a private skill stays private.
|
|
8
8
|
|
|
9
|
-
Documentation lives at **[yourskills.store](https://yourskills.store)**.
|
|
9
|
+
Documentation lives at **[yourskills.store](https://yourskills.store)**. The package is
|
|
10
|
+
**[npmjs.com/package/yourskills](https://www.npmjs.com/package/yourskills)**.
|
|
10
11
|
|
|
11
12
|
## Install
|
|
12
13
|
|
|
@@ -29,21 +30,27 @@ yourskills login
|
|
|
29
30
|
```bash
|
|
30
31
|
yourskills # opens the command palette, if you would rather not memorise
|
|
31
32
|
yourskills search pull request # find something
|
|
32
|
-
yourskills
|
|
33
|
+
yourskills bundles # the bundles your team publishes
|
|
34
|
+
yourskills add backend-dev # install a bundle at its pinned commits
|
|
33
35
|
yourskills add create-pr # or one skill
|
|
34
36
|
```
|
|
35
37
|
|
|
38
|
+
One verb for both. A name is a skill or a bundle and your registry knows which, so you
|
|
39
|
+
only have to know what you want. `bundle:<name>` and `skill:<name>` force the kind, which
|
|
40
|
+
is worth typing in a script and nowhere else. `yourskills bundle <name>` is the old
|
|
41
|
+
spelling of `add <name>` and still works.
|
|
42
|
+
|
|
36
43
|
Installs are **global by default**, for every agent you have. Add `-p` to install into the
|
|
37
44
|
current project instead, which records them in a `yourskills.json` you commit. A teammate
|
|
38
45
|
who clones that repository runs `yourskills install` and gets the same skills at the same
|
|
39
46
|
commits.
|
|
40
47
|
|
|
41
48
|
```bash
|
|
42
|
-
yourskills installed
|
|
43
|
-
yourskills outdated
|
|
44
|
-
yourskills update
|
|
45
|
-
yourskills remove <skill
|
|
46
|
-
yourskills doctor
|
|
49
|
+
yourskills installed # what is on this machine, and at which commit
|
|
50
|
+
yourskills outdated # what your registry has moved on from
|
|
51
|
+
yourskills update # catch up
|
|
52
|
+
yourskills remove <name> # a skill, or a bundle and every skill it brought in
|
|
53
|
+
yourskills doctor # when something is wrong and you want to know what
|
|
47
54
|
```
|
|
48
55
|
|
|
49
56
|
## Hooks
|