@buiducnhat/agent-skills 0.5.13 → 0.6.0
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 +20 -22
- package/README.vi.md +19 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# agent-skills
|
|
2
2
|
|
|
3
|
-
Install standardized AI agent workflow skills and
|
|
3
|
+
Install standardized AI agent workflow skills and shared rules-file content into any repository with a single command.
|
|
4
4
|
|
|
5
|
-
Supports **
|
|
5
|
+
Supports **40 AI coding agents** including Claude Code, Cursor, Windsurf, Copilot, Cline, Roo Code, and more.
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -15,9 +15,9 @@ Supports **39 AI coding agents** including Claude Code, Cursor, Windsurf, Copilo
|
|
|
15
15
|
Running the installer:
|
|
16
16
|
|
|
17
17
|
1. Lets you **select which agents** to configure (auto-detects already-installed agents)
|
|
18
|
-
2.
|
|
19
|
-
3.
|
|
20
|
-
4.
|
|
18
|
+
2. Lets you choose whether the skills are installed as **symlinks** or **copied files**
|
|
19
|
+
3. Installs workflow skills into each agent's skills directory via the [Vercel skills CLI](https://github.com/vercel-labs/skills)
|
|
20
|
+
4. Injects **shared agent instructions** (`AGENTS.md`) into each agent's rules file using idempotent markers
|
|
21
21
|
|
|
22
22
|
## Installation
|
|
23
23
|
|
|
@@ -69,7 +69,6 @@ Installs skills to your home directory (`~/<agent>/skills/`) so they are availab
|
|
|
69
69
|
◇ Installation complete!
|
|
70
70
|
│
|
|
71
71
|
│ What was set up:
|
|
72
|
-
│ .claude/ - Claude Code settings
|
|
73
72
|
│ CLAUDE.md - updated
|
|
74
73
|
│
|
|
75
74
|
│ Agent configurations updated for:
|
|
@@ -89,21 +88,20 @@ Installs skills to your home directory (`~/<agent>/skills/`) so they are availab
|
|
|
89
88
|
| `-h, --help` | Show help |
|
|
90
89
|
| `-v, --version` | Show version |
|
|
91
90
|
|
|
92
|
-
##
|
|
91
|
+
## Repository workflow skills
|
|
93
92
|
|
|
94
|
-
|
|
93
|
+
This repository currently defines eight first-party workflow skills:
|
|
95
94
|
|
|
96
|
-
| Skill | Description
|
|
97
|
-
| ----------------- |
|
|
98
|
-
| `ask` | Ask clarifying questions to gather requirements and context
|
|
99
|
-
| `
|
|
100
|
-
| `
|
|
101
|
-
| `
|
|
102
|
-
| `
|
|
103
|
-
| `
|
|
104
|
-
| `quick-implement` | Rapid implementation for
|
|
105
|
-
| `
|
|
106
|
-
| `write-plan` | Create detailed implementation plans with phases and tasks |
|
|
95
|
+
| Skill | Description |
|
|
96
|
+
| ----------------- | -------------------------------------------------------------------- |
|
|
97
|
+
| `ask` | Ask clarifying questions to gather requirements and context |
|
|
98
|
+
| `as-fix` | Diagnose and resolve bugs with root-cause analysis and verification |
|
|
99
|
+
| `as-review` | Review uncommitted changes with codebase context and severity levels |
|
|
100
|
+
| `brainstorm` | Explore ideas and break down complex problems before planning |
|
|
101
|
+
| `docs` | Initialize (`--init`) or update (`--update`) project documentation |
|
|
102
|
+
| `execute-plan` | Execute written plans systematically with checkpoints |
|
|
103
|
+
| `quick-implement` | Rapid implementation for small, well-scoped changes |
|
|
104
|
+
| `write-plan` | Create detailed implementation plans with phases and tasks |
|
|
107
105
|
|
|
108
106
|
### Recommended workflow sequences
|
|
109
107
|
|
|
@@ -190,13 +188,13 @@ Use for small, well-scoped changes where a formal plan would be overhead.
|
|
|
190
188
|
#### Bug fixes
|
|
191
189
|
|
|
192
190
|
```
|
|
193
|
-
fix
|
|
191
|
+
as-fix
|
|
194
192
|
```
|
|
195
193
|
|
|
196
194
|
Use when you have a concrete error, failing test, or unexpected behavior to diagnose.
|
|
197
195
|
|
|
198
196
|
```
|
|
199
|
-
/fix TypeError: Cannot read properties of undefined at checkout.ts:42
|
|
197
|
+
/as-fix TypeError: Cannot read properties of undefined at checkout.ts:42
|
|
200
198
|
|
|
201
199
|
# For simple bugs: agent diagnoses, applies fix, verifies
|
|
202
200
|
# For complex bugs: agent stops and routes to write-plan
|
|
@@ -205,7 +203,7 @@ Use when you have a concrete error, failing test, or unexpected behavior to diag
|
|
|
205
203
|
## Supported agents
|
|
206
204
|
|
|
207
205
|
<details>
|
|
208
|
-
<summary>View all
|
|
206
|
+
<summary>View all 40 supported agents</summary>
|
|
209
207
|
|
|
210
208
|
AdaL, Amp, Antigravity, Augment, Claude Code, Cline, CodeBuddy, Codex, Command Code, Continue, Cortex Code, Crush, Cursor, Droid, Gemini CLI, GitHub Copilot, Goose, iFlow CLI, Junie, Kilo Code, Kimi Code CLI, Kiro CLI, Kode, MCPJam, Mistral Vibe, Mux, Neovate, OpenClaw, OpenCode, OpenHands, Pi, Pochi, Qoder, Qwen Code, Replit, Roo Code, Trae, Trae CN, Windsurf, Zencoder
|
|
211
209
|
|
package/README.vi.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# agent-skills
|
|
2
2
|
|
|
3
|
-
Cài đặt các workflow skill chuẩn hóa cho AI agent và
|
|
3
|
+
Cài đặt các workflow skill chuẩn hóa cho AI agent và nội dung rules dùng chung vào bất kỳ repository nào chỉ với một lệnh duy nhất.
|
|
4
4
|
|
|
5
|
-
Hỗ trợ **
|
|
5
|
+
Hỗ trợ **40 AI coding agent** bao gồm Claude Code, Cursor, Windsurf, Copilot, Cline, Roo Code và nhiều hơn nữa.
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -15,9 +15,9 @@ Hỗ trợ **39 AI coding agent** bao gồm Claude Code, Cursor, Windsurf, Copil
|
|
|
15
15
|
Khi chạy trình cài đặt:
|
|
16
16
|
|
|
17
17
|
1. Cho phép **chọn agent** cần cấu hình (tự động phát hiện các agent đã cài)
|
|
18
|
-
2.
|
|
19
|
-
3.
|
|
20
|
-
4.
|
|
18
|
+
2. Cho phép chọn cài skill bằng **symlink** hoặc **copy**
|
|
19
|
+
3. Cài đặt workflow skill vào thư mục skills của từng agent thông qua [Vercel skills CLI](https://github.com/vercel-labs/skills)
|
|
20
|
+
4. Chèn **hướng dẫn dùng chung cho agent** (`AGENTS.md`) vào file rules của từng agent bằng marker idempotent
|
|
21
21
|
|
|
22
22
|
## Cài đặt
|
|
23
23
|
|
|
@@ -69,7 +69,6 @@ Cài đặt skill vào thư mục home (`~/<agent>/skills/`) để dùng đượ
|
|
|
69
69
|
◇ Installation complete!
|
|
70
70
|
│
|
|
71
71
|
│ What was set up:
|
|
72
|
-
│ .claude/ - Claude Code settings
|
|
73
72
|
│ CLAUDE.md - updated
|
|
74
73
|
│
|
|
75
74
|
│ Agent configurations updated for:
|
|
@@ -89,26 +88,31 @@ Cài đặt skill vào thư mục home (`~/<agent>/skills/`) để dùng đượ
|
|
|
89
88
|
| `-h, --help` | Hiển thị trợ giúp |
|
|
90
89
|
| `-v, --version` | Hiển thị phiên bản |
|
|
91
90
|
|
|
92
|
-
## Workflow skill
|
|
91
|
+
## Workflow skill của repository
|
|
93
92
|
|
|
94
|
-
|
|
93
|
+
Repository này hiện định nghĩa 8 workflow skill first-party:
|
|
95
94
|
|
|
96
95
|
| Skill | Mô tả |
|
|
97
96
|
| ----------------- | -------------------------------------------------------------------- |
|
|
98
97
|
| `ask` | Đặt câu hỏi làm rõ để thu thập yêu cầu và ngữ cảnh |
|
|
99
|
-
| `
|
|
98
|
+
| `as-fix` | Chẩn đoán và sửa lỗi với phân tích nguyên nhân gốc và bước xác minh |
|
|
99
|
+
| `as-review` | Review thay đổi chưa commit với ngữ cảnh codebase và mức độ ưu tiên |
|
|
100
100
|
| `brainstorm` | Khám phá ý tưởng và phân tích vấn đề phức tạp trước khi lên kế hoạch |
|
|
101
101
|
| `docs` | Khởi tạo (`--init`) hoặc cập nhật (`--update`) tài liệu project |
|
|
102
102
|
| `execute-plan` | Thực thi kế hoạch đã viết theo từng giai đoạn với các điểm kiểm tra |
|
|
103
|
-
| `
|
|
104
|
-
| `quick-implement` | Triển khai nhanh cho các task nhỏ hoặc sửa lỗi đơn giản |
|
|
105
|
-
| `review` | Review các thay đổi chưa commit với ngữ cảnh codebase |
|
|
103
|
+
| `quick-implement` | Triển khai nhanh cho các thay đổi nhỏ, phạm vi rõ ràng |
|
|
106
104
|
| `write-plan` | Tạo kế hoạch triển khai chi tiết theo từng giai đoạn |
|
|
107
105
|
|
|
108
106
|
### Chuỗi workflow khuyến nghị
|
|
109
107
|
|
|
110
108
|
---
|
|
111
109
|
|
|
110
|
+
#### Khởi tạo tài liệu
|
|
111
|
+
|
|
112
|
+
```
|
|
113
|
+
/docs --init # hoặc /docs --update để cập nhật tài liệu hiện có
|
|
114
|
+
```
|
|
115
|
+
|
|
112
116
|
#### Tác vụ phức tạp hoặc chưa rõ ràng
|
|
113
117
|
|
|
114
118
|
```
|
|
@@ -184,13 +188,13 @@ Dùng cho các thay đổi nhỏ, phạm vi rõ ràng mà không cần kế ho
|
|
|
184
188
|
#### Sửa lỗi
|
|
185
189
|
|
|
186
190
|
```
|
|
187
|
-
fix
|
|
191
|
+
as-fix
|
|
188
192
|
```
|
|
189
193
|
|
|
190
194
|
Dùng khi có lỗi cụ thể, test thất bại hoặc hành vi không mong muốn cần chẩn đoán.
|
|
191
195
|
|
|
192
196
|
```
|
|
193
|
-
/fix TypeError: Cannot read properties of undefined at checkout.ts:42
|
|
197
|
+
/as-fix TypeError: Cannot read properties of undefined at checkout.ts:42
|
|
194
198
|
|
|
195
199
|
# Lỗi đơn giản: agent chẩn đoán, áp dụng fix, kiểm tra
|
|
196
200
|
# Lỗi phức tạp: agent dừng lại và chuyển sang write-plan
|
|
@@ -199,7 +203,7 @@ Dùng khi có lỗi cụ thể, test thất bại hoặc hành vi không mong mu
|
|
|
199
203
|
## Agent được hỗ trợ
|
|
200
204
|
|
|
201
205
|
<details>
|
|
202
|
-
<summary>Xem tất cả
|
|
206
|
+
<summary>Xem tất cả 40 agent được hỗ trợ</summary>
|
|
203
207
|
|
|
204
208
|
AdaL, Amp, Antigravity, Augment, Claude Code, Cline, CodeBuddy, Codex, Command Code, Continue, Cortex Code, Crush, Cursor, Droid, Gemini CLI, GitHub Copilot, Goose, iFlow CLI, Junie, Kilo Code, Kimi Code CLI, Kiro CLI, Kode, MCPJam, Mistral Vibe, Mux, Neovate, OpenClaw, OpenCode, OpenHands, Pi, Pochi, Qoder, Qwen Code, Replit, Roo Code, Trae, Trae CN, Windsurf, Zencoder
|
|
205
209
|
|