@xelandernt/skilly 0.0.26 → 0.0.28
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
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
[](https://github.com/facebook/pyrefly)
|
|
4
4
|
[](https://github.com/xelandernt/skilly/stargazers)
|
|
5
5
|
[](https://pepy.tech/projects/skilly)
|
|
6
|
-
[](https://github.com/xelandernt/skilly/blob/main/LICENSE)
|
|
7
8
|
# skilly
|
|
8
9
|
|
|
9
10
|
Manage [Agent Skills](https://agentskills.io/specification) from the command line
|
|
@@ -108,10 +109,10 @@ skills shipped by direct, development, and optional dependencies:
|
|
|
108
109
|
uvx skilly scan
|
|
109
110
|
```
|
|
110
111
|
|
|
111
|
-
|
|
112
|
+
Filter named groups and extras when needed:
|
|
112
113
|
|
|
113
114
|
```shell
|
|
114
|
-
uvx skilly scan --
|
|
115
|
+
uvx skilly scan --group dev --exclude-extra docs
|
|
115
116
|
```
|
|
116
117
|
|
|
117
118
|
### Install GitHub Skills
|
|
@@ -204,7 +205,10 @@ from skilly import ProjectSettings, Skill, SkillRepository
|
|
|
204
205
|
|
|
205
206
|
repository = SkillRepository(
|
|
206
207
|
directory=Path(".agents/skills"),
|
|
207
|
-
project=ProjectSettings(
|
|
208
|
+
project=ProjectSettings(
|
|
209
|
+
dependency_groups=("dev",),
|
|
210
|
+
optional_dependencies=("docs",),
|
|
211
|
+
),
|
|
208
212
|
)
|
|
209
213
|
|
|
210
214
|
created = repository.install(
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|