@xelandernt/skilly 0.0.25 → 0.0.26
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
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
[](https://www.npmjs.com/package/@xelandernt/skilly)
|
|
3
|
+
[](https://github.com/facebook/pyrefly)
|
|
4
|
+
[](https://github.com/xelandernt/skilly/stargazers)
|
|
5
|
+
[](https://pepy.tech/projects/skilly)
|
|
6
|
+
[](https://pypi.python.org/pypi/skilly)
|
|
1
7
|
# skilly
|
|
2
8
|
|
|
3
9
|
Manage [Agent Skills](https://agentskills.io/specification) from the command line
|
|
@@ -8,14 +14,26 @@ Python dependencies, and keeps managed skills up to date.
|
|
|
8
14
|
|
|
9
15
|
## Installation
|
|
10
16
|
|
|
11
|
-
Run
|
|
12
|
-
|
|
17
|
+
Run with `uvx`:
|
|
13
18
|
```shell
|
|
14
19
|
uvx skilly --help
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Run with `npx`:
|
|
24
|
+
```shell
|
|
15
25
|
npx @xelandernt/skilly --help
|
|
16
26
|
```
|
|
17
27
|
|
|
18
|
-
|
|
28
|
+
Install the native CLI with Homebrew from this repository's tap:
|
|
29
|
+
|
|
30
|
+
```shell
|
|
31
|
+
brew tap xelandernt/skilly https://github.com/xelandernt/skilly
|
|
32
|
+
brew install xelandernt/skilly/skilly
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Homebrew installs the CLI only. Install the Python package when you need the
|
|
36
|
+
import surface as well:
|
|
19
37
|
|
|
20
38
|
```shell
|
|
21
39
|
pip install skilly
|
|
@@ -124,11 +142,44 @@ Management commands accept the same destination options:
|
|
|
124
142
|
|
|
125
143
|
Without destination options, `skilly` uses `.agents/skills`.
|
|
126
144
|
|
|
145
|
+
Set `SKILLY_DIRECTORY` to change that default without passing `--directory`
|
|
146
|
+
every time:
|
|
147
|
+
|
|
148
|
+
```shell
|
|
149
|
+
export SKILLY_DIRECTORY="$HOME/.config/skilly/skills"
|
|
150
|
+
skilly list
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
`--directory`, `--local`, `--global`, `--claude`, `--codex`, and `--copilot`
|
|
154
|
+
override `SKILLY_DIRECTORY` when provided explicitly.
|
|
155
|
+
|
|
127
156
|
```shell
|
|
128
157
|
uvx skilly download https://github.com/example/project --global --codex
|
|
129
158
|
uvx skilly list --local --claude
|
|
130
159
|
```
|
|
131
160
|
|
|
161
|
+
#### Destination Mapping
|
|
162
|
+
|
|
163
|
+
`skilly` resolves destination paths before use. Relative paths become absolute
|
|
164
|
+
from the current working directory, and `--directory "~/.copilot"` expands `~`
|
|
165
|
+
to your home directory.
|
|
166
|
+
|
|
167
|
+
| Flags | Resolved destination |
|
|
168
|
+
|----------------------|---------------------------------------------------------------------------|
|
|
169
|
+
| _none_ | `SKILLY_DIRECTORY` when set, otherwise `.agents/skills` |
|
|
170
|
+
| `--local` | `.agents/skills` |
|
|
171
|
+
| `--global` | `~/.agents/skills` |
|
|
172
|
+
| `--claude` | `.claude/skills` |
|
|
173
|
+
| `--claude --global` | `~/.claude/skills` |
|
|
174
|
+
| `--codex` | `.codex/skills` |
|
|
175
|
+
| `--codex --global` | `~/.codex/skills` |
|
|
176
|
+
| `--copilot` | `.github/skills` |
|
|
177
|
+
| `--copilot --global` | `~/.copilot/skills` |
|
|
178
|
+
| `--directory <path>` | Exactly that directory, after `~` expansion and absolute-path resolution. |
|
|
179
|
+
|
|
180
|
+
`--directory` overrides `--local`, `--global`, `--claude`, `--codex`, and
|
|
181
|
+
`--copilot`.
|
|
182
|
+
|
|
132
183
|
### GitHub Authentication
|
|
133
184
|
|
|
134
185
|
Authenticated requests have higher GitHub API rate limits. Use the first
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|