@buiducnhat/agent-skills 0.6.3 → 0.7.1
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 +9 -0
- package/README.vi.md +9 -0
- package/dist/index.js +1384 -1312
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -53,6 +53,14 @@ npx @buiducnhat/agent-skills --global
|
|
|
53
53
|
|
|
54
54
|
Installs skills to your home directory (`~/<agent>/skills/`) so they are available across all projects.
|
|
55
55
|
|
|
56
|
+
### Target specific agents
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
npx @buiducnhat/agent-skills -a claude-code -a cursor
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Installs skills only for the listed agents. Repeat `-a` or pass multiple agent IDs after one flag.
|
|
63
|
+
|
|
56
64
|
## Interactive walkthrough
|
|
57
65
|
|
|
58
66
|
```
|
|
@@ -82,6 +90,7 @@ Installs skills to your home directory (`~/<agent>/skills/`) so they are availab
|
|
|
82
90
|
|
|
83
91
|
| Flag | Description |
|
|
84
92
|
| ------------------- | ------------------------------------------------ |
|
|
93
|
+
| `-a, --agent` | Target one or more specific agents |
|
|
85
94
|
| `--non-interactive` | Skip prompts; install all skills to all agents |
|
|
86
95
|
| `--copy` | Copy skill files instead of symlinking |
|
|
87
96
|
| `-g, --global` | Install to `~/` instead of the current directory |
|
package/README.vi.md
CHANGED
|
@@ -53,6 +53,14 @@ npx @buiducnhat/agent-skills --global
|
|
|
53
53
|
|
|
54
54
|
Cài đặt skill vào thư mục home (`~/<agent>/skills/`) để dùng được trên tất cả các project.
|
|
55
55
|
|
|
56
|
+
### Chọn agent cụ thể
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
npx @buiducnhat/agent-skills -a claude-code -a cursor
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Chỉ cài skill cho các agent đã liệt kê. Có thể lặp lại `-a` hoặc truyền nhiều agent sau một lần dùng cờ.
|
|
63
|
+
|
|
56
64
|
## Hướng dẫn tương tác
|
|
57
65
|
|
|
58
66
|
```
|
|
@@ -82,6 +90,7 @@ Cài đặt skill vào thư mục home (`~/<agent>/skills/`) để dùng đượ
|
|
|
82
90
|
|
|
83
91
|
| Flag | Mô tả |
|
|
84
92
|
| ------------------- | ---------------------------------------------------------- |
|
|
93
|
+
| `-a, --agent` | Chỉ định một hoặc nhiều agent cụ thể |
|
|
85
94
|
| `--non-interactive` | Bỏ qua các bước hỏi; cài đặt tất cả skill cho tất cả agent |
|
|
86
95
|
| `--copy` | Sao chép file skill thay vì tạo symlink |
|
|
87
96
|
| `-g, --global` | Cài vào `~/` thay vì thư mục hiện tại |
|