vskill 0.1.32 → 0.1.33
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 +56 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,6 +8,62 @@ npx vskill install remotion-dev/skills/remotion-best-practices # specific skil
|
|
|
8
8
|
npx vskill install remotion-best-practices # registry lookup
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
## Claude Code Plugin
|
|
12
|
+
|
|
13
|
+
This repo is a **Claude Code plugin** — 74 expert skills across frontend, backend, infra, ML, mobile, testing, and more. Plugin prefix: **`vs`**.
|
|
14
|
+
|
|
15
|
+
### Install
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# From GitHub (recommended)
|
|
19
|
+
npx vskill install --repo anton-abyzov/vskill --plugin vs
|
|
20
|
+
|
|
21
|
+
# From a local clone
|
|
22
|
+
git clone https://github.com/anton-abyzov/vskill.git
|
|
23
|
+
npx vskill install --plugin-dir ./vskill --plugin vs
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### Prefix
|
|
27
|
+
|
|
28
|
+
When installed as a **plugin**, skills are namespaced under `vs:`:
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
/vs:frontend-nextjs
|
|
32
|
+
/vs:backend-nodejs
|
|
33
|
+
/vs:ml-rag
|
|
34
|
+
/vs:testing-e2e
|
|
35
|
+
/vs:scout
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
When installed as **standalone skills** (without the plugin), no prefix:
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
/frontend-nextjs
|
|
42
|
+
/backend-nodejs
|
|
43
|
+
/ml-rag
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### Skills (74)
|
|
47
|
+
|
|
48
|
+
| Domain | Skills |
|
|
49
|
+
|--------|--------|
|
|
50
|
+
| frontend | `frontend`, `frontend-architect`, `frontend-design`, `frontend-design-system`, `frontend-nextjs`, `frontend-figma`, `frontend-code-explorer`, `frontend-i18n` |
|
|
51
|
+
| backend | `backend-nodejs`, `backend-python`, `backend-dotnet`, `backend-go`, `backend-rust`, `backend-java-spring`, `backend-graphql`, `backend-db-optimizer` |
|
|
52
|
+
| infra | `infra-terraform`, `infra-aws`, `infra-azure`, `infra-gcp`, `infra-github-actions`, `infra-devops`, `infra-devsecops`, `infra-secrets`, `infra-observability`, `infra-opentelemetry` |
|
|
53
|
+
| mobile | `mobile-react-native`, `mobile-expo`, `mobile-flutter`, `mobile-swiftui`, `mobile-jetpack`, `mobile-capacitor`, `mobile-deep-linking`, `mobile-testing`, `mobile-appstore` |
|
|
54
|
+
| ml | `ml-engineer`, `ml-mlops`, `ml-data-scientist`, `ml-fine-tuning`, `ml-rag`, `ml-langchain`, `ml-huggingface`, `ml-edge`, `ml-specialist` |
|
|
55
|
+
| testing | `testing-unit`, `testing-e2e`, `testing-performance`, `testing-accessibility`, `testing-mutation`, `testing-qa` |
|
|
56
|
+
| k8s | `k8s-manifests`, `k8s-helm`, `k8s-gitops`, `k8s-security` |
|
|
57
|
+
| payments | `payments`, `payments-billing`, `payments-pci` |
|
|
58
|
+
| cost | `cost-cloud-pricing`, `cost-optimization`, `cost-aws` |
|
|
59
|
+
| kafka | `kafka-architect`, `kafka-ops` |
|
|
60
|
+
| kafka-streams | `kafka-streams-topology` |
|
|
61
|
+
| confluent | `confluent-kafka-connect`, `confluent-ksqldb`, `confluent-schema-registry` |
|
|
62
|
+
| docs | `docs-docusaurus`, `docs-technical-writing`, `docs-brainstorming` |
|
|
63
|
+
| n8n | `n8n-kafka` |
|
|
64
|
+
| security | `security`, `security-patterns`, `security-simplifier` |
|
|
65
|
+
| scout | `scout` |
|
|
66
|
+
|
|
11
67
|
## Why?
|
|
12
68
|
|
|
13
69
|
- **36.82% of AI skills have security flaws** ([Snyk ToxicSkills](https://snyk.io/blog/toxicskills-malicious-ai-agent-skills-clawhub/))
|