skilluse 0.7.0 → 0.9.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 +7 -3
- package/dist/cli.js +945 -414
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -19,8 +19,9 @@ curl -fsSL https://skilluse.dev/install.sh | bash
|
|
|
19
19
|
## Quick Start
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
# 1. Add a skill repository
|
|
22
|
+
# 1. Add a skill repository (supports GitHub URLs)
|
|
23
23
|
skilluse repo add owner/skill-repo
|
|
24
|
+
skilluse repo add https://github.com/owner/skill-repo
|
|
24
25
|
|
|
25
26
|
# 2. Install a skill
|
|
26
27
|
skilluse install code-review
|
|
@@ -41,7 +42,7 @@ skilluse install code-review
|
|
|
41
42
|
| Command | Description |
|
|
42
43
|
|---------|-------------|
|
|
43
44
|
| `skilluse repo list` | List configured repositories |
|
|
44
|
-
| `skilluse repo add <repo>` | Add a skill repository |
|
|
45
|
+
| `skilluse repo add <repo>` | Add a skill repository (supports URLs) |
|
|
45
46
|
| `skilluse repo remove <name>` | Remove a repository |
|
|
46
47
|
| `skilluse repo use <name>` | Set default repository |
|
|
47
48
|
| `skilluse repo edit <name>` | Edit repository settings |
|
|
@@ -50,11 +51,14 @@ skilluse install code-review
|
|
|
50
51
|
|
|
51
52
|
| Command | Description |
|
|
52
53
|
|---------|-------------|
|
|
54
|
+
| `skilluse search <keyword>` | Search for skills in default repo |
|
|
55
|
+
| `skilluse repo skills` | List all skills in default repo |
|
|
53
56
|
| `skilluse install <skill>` | Install from configured repo |
|
|
54
57
|
| `skilluse install <github-url>` | Install from GitHub URL |
|
|
55
58
|
| `skilluse install <skill> --global` | Install globally |
|
|
56
59
|
| `skilluse uninstall <skill>` | Remove installed skill |
|
|
57
|
-
| `skilluse upgrade [skill]` | Upgrade skill(s)
|
|
60
|
+
| `skilluse upgrade [skill]` | Upgrade skill(s) with interactive selection |
|
|
61
|
+
| `skilluse upgrade --yes` | Upgrade all skills without prompting |
|
|
58
62
|
| `skilluse list` | List installed skills |
|
|
59
63
|
| `skilluse list --outdated` | Show skills with updates |
|
|
60
64
|
|