@xelandernt/skilly 0.0.29 → 0.0.30
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
CHANGED
|
@@ -25,6 +25,7 @@ Manage [Agent Skills](https://agentskills.io/specification) from the command lin
|
|
|
25
25
|
- [Install Dependency Skills](#install-dependency-skills)
|
|
26
26
|
- [Install GitHub Skills](#install-github-skills)
|
|
27
27
|
- [Destinations](#destinations)
|
|
28
|
+
- [Configure Destinations](#configure-destinations)
|
|
28
29
|
- [GitHub Authentication](#github-authentication)
|
|
29
30
|
- [Python API](#python-api)
|
|
30
31
|
- [Development](#development)
|
|
@@ -35,8 +36,7 @@ Manage [Agent Skills](https://agentskills.io/specification) from the command lin
|
|
|
35
36
|
|
|
36
37
|
### Python
|
|
37
38
|
```shell
|
|
38
|
-
uvx skilly --help
|
|
39
|
-
pip install skilly # or install persistently
|
|
39
|
+
uvx skilly --help
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
### Node
|
|
@@ -79,6 +79,7 @@ uvx skilly update # Preview available updates
|
|
|
79
79
|
| `remove <name>` | Remove an installed skill by directory name |
|
|
80
80
|
| `skillsmp search <query>` | Search SkillsMP and install a selected result |
|
|
81
81
|
| `create` | Create a valid skill through a terminal wizard or explicit options |
|
|
82
|
+
| `configure` | Set which directories skilly manages via TUI or CLI flags |
|
|
82
83
|
|
|
83
84
|
Run `skilly <command> --help` for all options.
|
|
84
85
|
|
|
@@ -160,6 +161,39 @@ export SKILLY_DIRECTORY="$HOME/.config/skilly/skills"
|
|
|
160
161
|
|
|
161
162
|
`--directory` overrides all other destination options and `SKILLY_DIRECTORY`.
|
|
162
163
|
|
|
164
|
+
### Configure Destinations
|
|
165
|
+
|
|
166
|
+
`skilly configure` lets you choose which directories skilly should manage. Interactive terminals open a two-tab TUI (Global / Local). Non-interactive runs accept flags.
|
|
167
|
+
|
|
168
|
+
```shell
|
|
169
|
+
uvx skilly configure # Open the TUI
|
|
170
|
+
uvx skilly configure --show # Print current config as TOML
|
|
171
|
+
uvx skilly configure --reset # Restore defaults
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
Add or remove custom directories:
|
|
175
|
+
|
|
176
|
+
```shell
|
|
177
|
+
uvx skilly configure --add-global /opt/skills
|
|
178
|
+
uvx skilly configure --add-local .project/skills
|
|
179
|
+
uvx skilly configure --remove-global /opt/skills
|
|
180
|
+
uvx skilly configure --remove-local .project/skills
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
Enable or disable built-in destinations (valid keys: `agents_global`, `agents_local`, `claude_global`, `claude_local`, `codex_global`, `codex_local`, `copilot_global`, `copilot_local`):
|
|
184
|
+
|
|
185
|
+
```shell
|
|
186
|
+
uvx skilly configure --enable agents_global --disable copilot_global
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
Configuration is stored in `~/.skilly.toml`:
|
|
190
|
+
|
|
191
|
+
```toml
|
|
192
|
+
enabled_builtin = ["agents_global", "agents_local", ...]
|
|
193
|
+
custom_global_dirs = []
|
|
194
|
+
custom_local_dirs = []
|
|
195
|
+
```
|
|
196
|
+
|
|
163
197
|
### GitHub Authentication
|
|
164
198
|
|
|
165
199
|
Set a token for higher API rate limits (first available wins: `SKILLY_GITHUB_TOKEN`, `GITHUB_TOKEN`, `GH_TOKEN`):
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|