@neyugn/agent-kits 0.1.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/LICENSE +21 -0
- package/README.md +514 -0
- package/README.vi.md +410 -0
- package/README.zh.md +410 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +422 -0
- package/kits/coder/ARCHITECTURE.md +289 -0
- package/kits/coder/agents/ai-engineer.md +344 -0
- package/kits/coder/agents/backend-specialist.md +270 -0
- package/kits/coder/agents/cloud-architect.md +363 -0
- package/kits/coder/agents/code-reviewer.md +284 -0
- package/kits/coder/agents/data-engineer.md +401 -0
- package/kits/coder/agents/database-specialist.md +251 -0
- package/kits/coder/agents/debugger.md +209 -0
- package/kits/coder/agents/devops-engineer.md +281 -0
- package/kits/coder/agents/documentation-writer.md +296 -0
- package/kits/coder/agents/frontend-specialist.md +298 -0
- package/kits/coder/agents/i18n-specialist.md +348 -0
- package/kits/coder/agents/integration-specialist.md +314 -0
- package/kits/coder/agents/mobile-developer.md +271 -0
- package/kits/coder/agents/multi-tenant-architect.md +281 -0
- package/kits/coder/agents/orchestrator.md +263 -0
- package/kits/coder/agents/performance-analyst.md +327 -0
- package/kits/coder/agents/project-planner.md +277 -0
- package/kits/coder/agents/queue-specialist.md +282 -0
- package/kits/coder/agents/realtime-specialist.md +267 -0
- package/kits/coder/agents/security-auditor.md +253 -0
- package/kits/coder/agents/test-engineer.md +315 -0
- package/kits/coder/agents/ux-researcher.md +388 -0
- package/kits/coder/rules/.cursorrules +287 -0
- package/kits/coder/rules/CLAUDE.md +287 -0
- package/kits/coder/rules/CODEX.md +287 -0
- package/kits/coder/rules/GEMINI.md +287 -0
- package/kits/coder/scripts/checklist.py +318 -0
- package/kits/coder/scripts/kit_status.py +292 -0
- package/kits/coder/scripts/skills_manager.py +243 -0
- package/kits/coder/scripts/verify_all.py +391 -0
- package/kits/coder/skills/accessibility-patterns/SKILL.md +372 -0
- package/kits/coder/skills/accessibility-patterns/scripts/a11y_checker.py +211 -0
- package/kits/coder/skills/ai-rag-patterns/SKILL.md +444 -0
- package/kits/coder/skills/api-patterns/SKILL.md +316 -0
- package/kits/coder/skills/api-patterns/assets/.gitkeep +1 -0
- package/kits/coder/skills/api-patterns/references/deep-dive.md +21 -0
- package/kits/coder/skills/api-patterns/scripts/api_validator.py +253 -0
- package/kits/coder/skills/api-patterns/scripts/validate.py +56 -0
- package/kits/coder/skills/auth-patterns/SKILL.md +267 -0
- package/kits/coder/skills/aws-patterns/SKILL.md +576 -0
- package/kits/coder/skills/brainstorming/SKILL.md +370 -0
- package/kits/coder/skills/brainstorming/assets/.gitkeep +1 -0
- package/kits/coder/skills/brainstorming/references/deep-dive.md +21 -0
- package/kits/coder/skills/brainstorming/scripts/validate.py +56 -0
- package/kits/coder/skills/clean-code/SKILL.md +240 -0
- package/kits/coder/skills/clean-code/assets/.gitkeep +1 -0
- package/kits/coder/skills/clean-code/references/deep-dive.md +21 -0
- package/kits/coder/skills/clean-code/scripts/lint_runner.py +186 -0
- package/kits/coder/skills/clean-code/scripts/validate.py +56 -0
- package/kits/coder/skills/database-design/SKILL.md +255 -0
- package/kits/coder/skills/database-design/assets/.gitkeep +1 -0
- package/kits/coder/skills/database-design/references/deep-dive.md +21 -0
- package/kits/coder/skills/database-design/scripts/schema_validator.py +272 -0
- package/kits/coder/skills/database-design/scripts/validate.py +56 -0
- package/kits/coder/skills/docker-patterns/SKILL.md +240 -0
- package/kits/coder/skills/documentation-templates/SKILL.md +441 -0
- package/kits/coder/skills/e2e-testing/SKILL.md +457 -0
- package/kits/coder/skills/flutter-patterns/SKILL.md +330 -0
- package/kits/coder/skills/frontend-design/SKILL.md +127 -0
- package/kits/coder/skills/github-actions/SKILL.md +349 -0
- package/kits/coder/skills/gitlab-ci-patterns/SKILL.md +466 -0
- package/kits/coder/skills/graphql-patterns/SKILL.md +558 -0
- package/kits/coder/skills/i18n-localization/SKILL.md +345 -0
- package/kits/coder/skills/i18n-localization/scripts/i18n_checker.py +267 -0
- package/kits/coder/skills/kubernetes-patterns/SKILL.md +357 -0
- package/kits/coder/skills/mermaid-diagrams/SKILL.md +351 -0
- package/kits/coder/skills/mobile-design/SKILL.md +305 -0
- package/kits/coder/skills/monitoring-observability/SKILL.md +458 -0
- package/kits/coder/skills/multi-tenancy/SKILL.md +317 -0
- package/kits/coder/skills/multi-tenancy/assets/.gitkeep +1 -0
- package/kits/coder/skills/multi-tenancy/references/deep-dive.md +21 -0
- package/kits/coder/skills/multi-tenancy/scripts/validate.py +56 -0
- package/kits/coder/skills/nodejs-best-practices/SKILL.md +220 -0
- package/kits/coder/skills/performance-profiling/SKILL.md +333 -0
- package/kits/coder/skills/performance-profiling/assets/.gitkeep +1 -0
- package/kits/coder/skills/performance-profiling/references/deep-dive.md +21 -0
- package/kits/coder/skills/performance-profiling/scripts/validate.py +56 -0
- package/kits/coder/skills/plan-writing/SKILL.md +360 -0
- package/kits/coder/skills/plan-writing/assets/.gitkeep +1 -0
- package/kits/coder/skills/plan-writing/references/deep-dive.md +21 -0
- package/kits/coder/skills/plan-writing/scripts/validate.py +56 -0
- package/kits/coder/skills/postgres-patterns/SKILL.md +361 -0
- package/kits/coder/skills/prompt-engineering/SKILL.md +277 -0
- package/kits/coder/skills/queue-patterns/SKILL.md +359 -0
- package/kits/coder/skills/queue-patterns/assets/.gitkeep +1 -0
- package/kits/coder/skills/queue-patterns/references/deep-dive.md +21 -0
- package/kits/coder/skills/queue-patterns/scripts/validate.py +56 -0
- package/kits/coder/skills/react-native-patterns/SKILL.md +393 -0
- package/kits/coder/skills/react-patterns/SKILL.md +319 -0
- package/kits/coder/skills/realtime-patterns/SKILL.md +506 -0
- package/kits/coder/skills/realtime-patterns/assets/.gitkeep +1 -0
- package/kits/coder/skills/realtime-patterns/references/deep-dive.md +21 -0
- package/kits/coder/skills/realtime-patterns/scripts/validate.py +56 -0
- package/kits/coder/skills/redis-patterns/SKILL.md +484 -0
- package/kits/coder/skills/security-fundamentals/SKILL.md +363 -0
- package/kits/coder/skills/security-fundamentals/assets/.gitkeep +1 -0
- package/kits/coder/skills/security-fundamentals/references/deep-dive.md +21 -0
- package/kits/coder/skills/security-fundamentals/scripts/security_scan.py +326 -0
- package/kits/coder/skills/security-fundamentals/scripts/validate.py +56 -0
- package/kits/coder/skills/seo-patterns/SKILL.md +262 -0
- package/kits/coder/skills/seo-patterns/scripts/seo_checker.py +211 -0
- package/kits/coder/skills/systematic-debugging/SKILL.md +478 -0
- package/kits/coder/skills/systematic-debugging/assets/.gitkeep +1 -0
- package/kits/coder/skills/systematic-debugging/references/deep-dive.md +21 -0
- package/kits/coder/skills/systematic-debugging/scripts/validate.py +56 -0
- package/kits/coder/skills/tailwind-patterns/SKILL.md +395 -0
- package/kits/coder/skills/terraform-patterns/SKILL.md +470 -0
- package/kits/coder/skills/testing-patterns/SKILL.md +285 -0
- package/kits/coder/skills/testing-patterns/assets/.gitkeep +1 -0
- package/kits/coder/skills/testing-patterns/references/deep-dive.md +21 -0
- package/kits/coder/skills/testing-patterns/scripts/test_runner.py +219 -0
- package/kits/coder/skills/testing-patterns/scripts/validate.py +56 -0
- package/kits/coder/skills/typescript-patterns/SKILL.md +417 -0
- package/kits/coder/skills/ui-ux-pro-max/SKILL.md +364 -0
- package/kits/coder/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/kits/coder/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/kits/coder/skills/ui-ux-pro-max/data/icons.csv +101 -0
- package/kits/coder/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/kits/coder/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/kits/coder/skills/ui-ux-pro-max/data/prompts.csv +24 -0
- package/kits/coder/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
- package/kits/coder/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/kits/coder/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- package/kits/coder/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/kits/coder/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
- package/kits/coder/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
- package/kits/coder/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/kits/coder/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/kits/coder/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
- package/kits/coder/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/kits/coder/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/kits/coder/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/kits/coder/skills/ui-ux-pro-max/data/styles.csv +59 -0
- package/kits/coder/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/kits/coder/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
- package/kits/coder/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/kits/coder/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
- package/kits/coder/skills/ui-ux-pro-max/scripts/__pycache__/core.cpython-314.pyc +0 -0
- package/kits/coder/skills/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-314.pyc +0 -0
- package/kits/coder/skills/ui-ux-pro-max/scripts/core.py +257 -0
- package/kits/coder/skills/ui-ux-pro-max/scripts/design_system.py +488 -0
- package/kits/coder/skills/ui-ux-pro-max/scripts/search.py +76 -0
- package/kits/coder/workflows/.gitkeep +20 -0
- package/kits/coder/workflows/create.md +152 -0
- package/kits/coder/workflows/debug.md +223 -0
- package/kits/coder/workflows/deploy.md +283 -0
- package/kits/coder/workflows/orchestrate.md +243 -0
- package/kits/coder/workflows/plan.md +134 -0
- package/kits/coder/workflows/test.md +237 -0
- package/kits/coder/workflows/ui-ux-pro-max.md +109 -0
- package/package.json +49 -0
package/README.vi.md
ADDED
|
@@ -0,0 +1,410 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="./assets/logo.svg" width="200" alt="Agent Kits Logo" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<h1 align="center">Agent Kits</h1>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<b>Bộ công cụ AI Agent phổ quát</b><br/>
|
|
9
|
+
<sub>Skills, Agents, và Workflows cho mọi trợ lý AI lập trình</sub>
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
<p align="center">
|
|
13
|
+
<a href="https://www.npmjs.com/package/@neyugn/agent-kits"><img src="https://img.shields.io/npm/v/@neyugn/agent-kits?style=flat-square&color=00ADD8" alt="npm version" /></a>
|
|
14
|
+
<a href="https://www.npmjs.com/package/@neyugn/agent-kits"><img src="https://img.shields.io/npm/dm/@neyugn/agent-kits?style=flat-square&color=00ADD8" alt="npm downloads" /></a>
|
|
15
|
+
<a href="https://github.com/nvdnvd00/agent-kits/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue?style=flat-square" alt="license" /></a>
|
|
16
|
+
</p>
|
|
17
|
+
|
|
18
|
+
<p align="center">
|
|
19
|
+
<a href="./README.md">English</a> •
|
|
20
|
+
<b>Tiếng Việt</b> •
|
|
21
|
+
<a href="./README.zh.md">中文</a>
|
|
22
|
+
</p>
|
|
23
|
+
|
|
24
|
+
<br/>
|
|
25
|
+
|
|
26
|
+
## ✨ Agent Kits là gì?
|
|
27
|
+
|
|
28
|
+
**Agent Kits** là bộ công cụ phổ quát giúp nâng cấp trợ lý AI lập trình của bạn với:
|
|
29
|
+
|
|
30
|
+
- 🤖 **Agent Chuyên gia** — Các Agent được định nghĩa sẵn với chuyên môn sâu trong từng lĩnh vực
|
|
31
|
+
- 🧩 **Skills Tái sử dụng** — Best practices và các framework hỗ trợ ra quyết định
|
|
32
|
+
- 📜 **Workflows** — Các slash command cho công việc thường gặp
|
|
33
|
+
- 🔍 **Lọc Thông minh** — Tự động phát hiện techstack và tối ưu skills được load
|
|
34
|
+
|
|
35
|
+
Hoạt động với **mọi công cụ AI** — Claude, Gemini, Codex, Cursor, và nhiều hơn nữa.
|
|
36
|
+
|
|
37
|
+
<br/>
|
|
38
|
+
|
|
39
|
+
## 🚀 Bắt đầu nhanh
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
npx @neyugn/agent-kits
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Đó là tất cả! Installer tương tác sẽ hướng dẫn bạn:
|
|
46
|
+
|
|
47
|
+
1. Chọn công cụ AI của bạn (Claude, Gemini, Cursor, etc.)
|
|
48
|
+
2. Chọn phạm vi cài đặt (Global hoặc Workspace)
|
|
49
|
+
3. Chọn kits cần cài đặt
|
|
50
|
+
4. Xác nhận đường dẫn cài đặt
|
|
51
|
+
|
|
52
|
+
<br/>
|
|
53
|
+
|
|
54
|
+
## ✨ Tính năng
|
|
55
|
+
|
|
56
|
+
### 🎯 Một lệnh, mọi công cụ
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
npx @neyugn/agent-kits
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
```
|
|
63
|
+
╔═══════════════════════════════════════════════════════════════╗
|
|
64
|
+
║ █████╗ ██████╗ ███████╗███╗ ██╗████████╗ ║
|
|
65
|
+
║ ██╔══██╗██╔════╝ ██╔════╝████╗ ██║╚══██╔══╝ ║
|
|
66
|
+
║ ███████║██║ ███╗█████╗ ██╔██╗ ██║ ██║ ║
|
|
67
|
+
║ ██╔══██║██║ ██║██╔══╝ ██║╚██╗██║ ██║ ║
|
|
68
|
+
║ ██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ║
|
|
69
|
+
║ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ K I T S ║
|
|
70
|
+
╚═══════════════════════════════════════════════════════════════╝
|
|
71
|
+
|
|
72
|
+
◆ Bạn đang sử dụng công cụ AI nào?
|
|
73
|
+
│ ○ Claude Code (.claude/)
|
|
74
|
+
│ ● Gemini CLI (.gemini/)
|
|
75
|
+
│ ○ Cursor (.cursor/)
|
|
76
|
+
│ ○ Tùy chỉnh...
|
|
77
|
+
|
|
78
|
+
◆ Bạn muốn cài đặt ở đâu?
|
|
79
|
+
│ ● 📁 Workspace (Dự án hiện tại)
|
|
80
|
+
│ ○ 🌍 Global (Tất cả dự án)
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
### 🌍 Global vs Workspace
|
|
84
|
+
|
|
85
|
+
| Chế độ | Vị trí | Use Case |
|
|
86
|
+
| ----------- | ------------- | ----------------------------- |
|
|
87
|
+
| � Workspace | `./{{tool}}/` | Cấu hình riêng cho từng dự án |
|
|
88
|
+
| 🌍 Global | `~/{{tool}}/` | Dùng chung cho tất cả dự án |
|
|
89
|
+
|
|
90
|
+
**Đường dẫn Global theo công cụ:**
|
|
91
|
+
|
|
92
|
+
| Công cụ | Đường dẫn Global | Đường dẫn Workspace |
|
|
93
|
+
| ----------- | ---------------- | ------------------- |
|
|
94
|
+
| Claude Code | `~/.claude/` | `.claude/` |
|
|
95
|
+
| Gemini CLI | `~/.gemini/` | `.gemini/` |
|
|
96
|
+
| Codex CLI | `~/.codex/` | `.codex/` |
|
|
97
|
+
| Antigravity | `~/.agent/` | `.agent/` |
|
|
98
|
+
| Cursor | `~/.cursor/` | `.cursor/` |
|
|
99
|
+
|
|
100
|
+
> **Lưu ý:** Trên Windows, `~` được thay bằng `C:\Users\<username>\`
|
|
101
|
+
|
|
102
|
+
### 🔄 Phát hiện cài đặt có sẵn
|
|
103
|
+
|
|
104
|
+
Nếu installer phát hiện cài đặt đã tồn tại, bạn sẽ được hỏi:
|
|
105
|
+
|
|
106
|
+
- **🔄 Thay thế**: Xóa cũ và cài mới
|
|
107
|
+
- **🔀 Merge**: Giữ config, chỉ cập nhật skills
|
|
108
|
+
- **⏭️ Bỏ qua**: Giữ nguyên, không cài đặt
|
|
109
|
+
- **❌ Hủy**: Thoát installer
|
|
110
|
+
|
|
111
|
+
### �🔌 Tương thích phổ quát
|
|
112
|
+
|
|
113
|
+
| Công cụ | Đường dẫn Workspace | Đường dẫn Global | Trạng thái |
|
|
114
|
+
| ----------- | ------------------- | ---------------- | ---------- |
|
|
115
|
+
| Claude Code | `.claude/skills/` | `~/.claude/` | ✅ Hỗ trợ |
|
|
116
|
+
| Gemini CLI | `.gemini/skills/` | `~/.gemini/` | ✅ Hỗ trợ |
|
|
117
|
+
| Codex CLI | `.codex/skills/` | `~/.codex/` | ✅ Hỗ trợ |
|
|
118
|
+
| Antigravity | `.agent/skills/` | `~/.agent/` | ✅ Hỗ trợ |
|
|
119
|
+
| Cursor | `.cursor/skills/` | `~/.cursor/` | ✅ Hỗ trợ |
|
|
120
|
+
| Tùy chỉnh | Có thể cấu hình | `~/.ai/` | ✅ Hỗ trợ |
|
|
121
|
+
|
|
122
|
+
### 💻 Hỗ trợ đa nền tảng
|
|
123
|
+
|
|
124
|
+
Hoạt động trên **Windows**, **macOS**, và **Linux** với đường dẫn được tự động điều chỉnh:
|
|
125
|
+
|
|
126
|
+
| Nền tảng | Đường dẫn Global ví dụ |
|
|
127
|
+
| -------- | -------------------------- |
|
|
128
|
+
| Windows | `C:\Users\darien\.claude\` |
|
|
129
|
+
| macOS | `/Users/darien/.claude/` |
|
|
130
|
+
| Linux | `/home/darien/.claude/` |
|
|
131
|
+
|
|
132
|
+
<br/>
|
|
133
|
+
|
|
134
|
+
## 🔍 Filter Skill (Tính năng lọc Skills)
|
|
135
|
+
|
|
136
|
+
**Filter Skill** giải quyết vấn đề "quá tải skills" bằng cách tự động phát hiện techstack của dự án và chỉ bật các skills liên quan.
|
|
137
|
+
|
|
138
|
+
### Cách sử dụng
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
/filter
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
### Quy trình hoạt động
|
|
145
|
+
|
|
146
|
+
| Phase | Mô tả |
|
|
147
|
+
| ---------------- | ------------------------------------------------------------------------- |
|
|
148
|
+
| **1. Phát hiện** | Quét các file config (`package.json`, `pubspec.yaml`, `Dockerfile`, etc.) |
|
|
149
|
+
| **2. Đề xuất** | Map techstack đã phát hiện với các skills cần thiết |
|
|
150
|
+
| **3. Xác nhận** | Hiển thị thay đổi và hỏi về kế hoạch techstack tương lai |
|
|
151
|
+
| **4. Lưu trữ** | Lưu profile vào `.agent/workspace-profile.json` |
|
|
152
|
+
|
|
153
|
+
### Ví dụ
|
|
154
|
+
|
|
155
|
+
```markdown
|
|
156
|
+
## 🔍 Phân tích Workspace hoàn tất
|
|
157
|
+
|
|
158
|
+
**Techstack đã phát hiện:**
|
|
159
|
+
| Danh mục | Công nghệ |
|
|
160
|
+
| --------- | ----------------------- |
|
|
161
|
+
| Ngôn ngữ | TypeScript |
|
|
162
|
+
| Framework | Next.js 14 (App Router) |
|
|
163
|
+
| Styling | Tailwind CSS v4 |
|
|
164
|
+
| Database | PostgreSQL (Prisma) |
|
|
165
|
+
|
|
166
|
+
**Skills cần BẬT:**
|
|
167
|
+
| Skill | Lý do |
|
|
168
|
+
| ----------------- | ------------------------ |
|
|
169
|
+
| react-patterns | Phát hiện Next.js |
|
|
170
|
+
| tailwind-patterns | Tìm thấy tailwind.config |
|
|
171
|
+
| postgres-patterns | Prisma + PostgreSQL |
|
|
172
|
+
|
|
173
|
+
**Skills cần TẮT:**
|
|
174
|
+
| Skill | Lý do |
|
|
175
|
+
| ---------------- | ---------------------------- |
|
|
176
|
+
| flutter-patterns | Không có pubspec.yaml |
|
|
177
|
+
| mobile-design | Không phát hiện setup mobile |
|
|
178
|
+
|
|
179
|
+
**Câu hỏi:**
|
|
180
|
+
|
|
181
|
+
1. Bạn có đồng ý với các thay đổi trên? (có/không/tùy chỉnh)
|
|
182
|
+
2. Có techstack nào bạn dự định thêm trong tương lai không?
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
### Các lệnh
|
|
186
|
+
|
|
187
|
+
```bash
|
|
188
|
+
/filter # Phân tích và lọc skills
|
|
189
|
+
/filter --force-enable ai-rag # Bật cưỡng chế skill cụ thể
|
|
190
|
+
/filter --force-disable mobile # Tắt cưỡng chế skill cụ thể
|
|
191
|
+
/filter --reset # Reset về mặc định (bật tất cả)
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
### Core Skills (Không bao giờ tắt)
|
|
195
|
+
|
|
196
|
+
Các skills này luôn được bật bất kể techstack:
|
|
197
|
+
|
|
198
|
+
| Skill | Mô tả |
|
|
199
|
+
| ----------------------- | ------------------------- |
|
|
200
|
+
| `clean-code` | Tiêu chuẩn code thực dụng |
|
|
201
|
+
| `brainstorming` | Phương pháp hỏi Socratic |
|
|
202
|
+
| `plan-writing` | Phân chia task và WBS |
|
|
203
|
+
| `systematic-debugging` | Debug 4 phase |
|
|
204
|
+
| `testing-patterns` | Testing pyramid patterns |
|
|
205
|
+
| `security-fundamentals` | OWASP 2025 security |
|
|
206
|
+
|
|
207
|
+
<br/>
|
|
208
|
+
|
|
209
|
+
## 📦 Các Kits
|
|
210
|
+
|
|
211
|
+
### 💻 Coder Kit
|
|
212
|
+
|
|
213
|
+
Bộ công cụ hoàn chỉnh cho phát triển phần mềm với **22 agent chuyên gia**, **40 skills**, và **7 workflows**.
|
|
214
|
+
|
|
215
|
+
<details>
|
|
216
|
+
<summary><b>🤖 Agents (22)</b></summary>
|
|
217
|
+
|
|
218
|
+
#### Tier 1: Master Agents
|
|
219
|
+
|
|
220
|
+
| Agent | Mô tả |
|
|
221
|
+
| ----------------- | ----------------------------- |
|
|
222
|
+
| `orchestrator` | Điều phối đa agent |
|
|
223
|
+
| `project-planner` | Lập kế hoạch dự án thông minh |
|
|
224
|
+
| `debugger` | Debug có hệ thống |
|
|
225
|
+
|
|
226
|
+
#### Tier 2: Chuyên gia Phát triển
|
|
227
|
+
|
|
228
|
+
| Agent | Mô tả |
|
|
229
|
+
| --------------------- | -------------------------- |
|
|
230
|
+
| `frontend-specialist` | React, Next.js, Vue, UI/UX |
|
|
231
|
+
| `backend-specialist` | APIs, Node.js, Python |
|
|
232
|
+
| `mobile-developer` | React Native, Flutter |
|
|
233
|
+
| `database-specialist` | Thiết kế schema, queries |
|
|
234
|
+
| `devops-engineer` | CI/CD, deployment |
|
|
235
|
+
|
|
236
|
+
#### Tier 3: Chất lượng & Bảo mật
|
|
237
|
+
|
|
238
|
+
| Agent | Mô tả |
|
|
239
|
+
| --------------------- | --------------------------- |
|
|
240
|
+
| `security-auditor` | OWASP 2025, lỗ hổng bảo mật |
|
|
241
|
+
| `code-reviewer` | Review PR, chất lượng code |
|
|
242
|
+
| `test-engineer` | TDD, testing pyramid |
|
|
243
|
+
| `performance-analyst` | Core Web Vitals, profiling |
|
|
244
|
+
|
|
245
|
+
#### Tier 4: Chuyên gia Domain
|
|
246
|
+
|
|
247
|
+
| Agent | Mô tả |
|
|
248
|
+
| ------------------------ | ------------------------------- |
|
|
249
|
+
| `realtime-specialist` | WebSocket, Socket.IO |
|
|
250
|
+
| `multi-tenant-architect` | Tenant isolation, SaaS |
|
|
251
|
+
| `queue-specialist` | Message queues, background jobs |
|
|
252
|
+
| `integration-specialist` | External APIs, webhooks |
|
|
253
|
+
| `ai-engineer` | LLM, RAG, AI/ML systems |
|
|
254
|
+
| `cloud-architect` | AWS, Azure, GCP, Terraform |
|
|
255
|
+
| `data-engineer` | ETL, pipelines, analytics |
|
|
256
|
+
|
|
257
|
+
#### Tier 5: Agents Hỗ trợ
|
|
258
|
+
|
|
259
|
+
| Agent | Mô tả |
|
|
260
|
+
| ---------------------- | --------------------------- |
|
|
261
|
+
| `documentation-writer` | Tài liệu kỹ thuật, API docs |
|
|
262
|
+
| `i18n-specialist` | Đa ngôn ngữ |
|
|
263
|
+
| `ux-researcher` | Nghiên cứu UX, usability |
|
|
264
|
+
|
|
265
|
+
</details>
|
|
266
|
+
|
|
267
|
+
<details>
|
|
268
|
+
<summary><b>🧩 Skills (40)</b></summary>
|
|
269
|
+
|
|
270
|
+
**Core Skills:**
|
|
271
|
+
| Skill | Mô tả |
|
|
272
|
+
| ----------------------- | ------------------------------ |
|
|
273
|
+
| `clean-code` | Tiêu chuẩn code thực dụng |
|
|
274
|
+
| `api-patterns` | Quyết định REST/GraphQL/tRPC |
|
|
275
|
+
| `database-design` | Thiết kế schema, indexing |
|
|
276
|
+
| `testing-patterns` | Unit, integration, E2E |
|
|
277
|
+
| `security-fundamentals` | OWASP 2025, secure coding |
|
|
278
|
+
| `performance-profiling` | Core Web Vitals, optimization |
|
|
279
|
+
|
|
280
|
+
**Process Skills:**
|
|
281
|
+
| Skill | Mô tả |
|
|
282
|
+
| ----------------------- | ------------------------------ |
|
|
283
|
+
| `brainstorming` | Phương pháp hỏi Socratic |
|
|
284
|
+
| `plan-writing` | Phân chia task, WBS |
|
|
285
|
+
| `systematic-debugging` | Debug 4 phase |
|
|
286
|
+
|
|
287
|
+
**Domain Skills (31):** `react-patterns`, `typescript-patterns`, `docker-patterns`, `kubernetes-patterns`, `terraform-patterns`, `auth-patterns`, `graphql-patterns`, `redis-patterns`, `realtime-patterns`, `queue-patterns`, `multi-tenancy`, `ai-rag-patterns`, `prompt-engineering`, `monitoring-observability`, `frontend-design`, `mobile-design`, `tailwind-patterns`, `e2e-testing`, `github-actions`, `gitlab-ci-patterns`, `flutter-patterns`, `react-native-patterns`, `seo-patterns`, `accessibility-patterns`, `mermaid-diagrams`, `i18n-localization`, `postgres-patterns`, `nodejs-best-practices`, `documentation-templates`, `ui-ux-pro-max`, `aws-patterns`
|
|
288
|
+
|
|
289
|
+
</details>
|
|
290
|
+
|
|
291
|
+
<details>
|
|
292
|
+
<summary><b>📜 Workflows (7)</b></summary>
|
|
293
|
+
|
|
294
|
+
| Lệnh | Mô tả |
|
|
295
|
+
| ---------------- | ------------------------------- |
|
|
296
|
+
| `/plan` | Tạo kế hoạch dự án (không code) |
|
|
297
|
+
| `/create` | Build ứng dụng mới |
|
|
298
|
+
| `/debug` | Debug có hệ thống |
|
|
299
|
+
| `/test` | Tạo và chạy tests |
|
|
300
|
+
| `/deploy` | Deployment production |
|
|
301
|
+
| `/orchestrate` | Điều phối đa agent |
|
|
302
|
+
| `/ui-ux-pro-max` | Thiết kế UI/UX thông minh |
|
|
303
|
+
|
|
304
|
+
> **Lưu ý:** Lệnh `/filter` nằm trong **Common Skills Layer** (xem bên dưới) và có sẵn trong tất cả kits.
|
|
305
|
+
|
|
306
|
+
</details>
|
|
307
|
+
|
|
308
|
+
### 🔜 Sắp ra mắt
|
|
309
|
+
|
|
310
|
+
| Kit | Mô tả | Trạng thái |
|
|
311
|
+
| ----------------- | ------------------------------- | ------------------ |
|
|
312
|
+
| ✍️ **Writer** | Sáng tạo nội dung, copywriting | 🚧 Đang phát triển |
|
|
313
|
+
| 🔬 **Researcher** | Nghiên cứu, phân tích, tổng hợp | 📋 Kế hoạch |
|
|
314
|
+
| 🎨 **Designer** | Thiết kế UI/UX, branding | 📋 Kế hoạch |
|
|
315
|
+
|
|
316
|
+
<br/>
|
|
317
|
+
|
|
318
|
+
## 🛠️ Cách sử dụng
|
|
319
|
+
|
|
320
|
+
### Sử dụng Agents
|
|
321
|
+
|
|
322
|
+
Gọi agents với `@tên-agent`:
|
|
323
|
+
|
|
324
|
+
```markdown
|
|
325
|
+
@backend-specialist thiết kế API quản lý user
|
|
326
|
+
@security-auditor review code authentication này
|
|
327
|
+
@test-engineer viết tests cho payment service
|
|
328
|
+
```
|
|
329
|
+
|
|
330
|
+
### Sử dụng Workflows
|
|
331
|
+
|
|
332
|
+
Gọi workflows với slash commands:
|
|
333
|
+
|
|
334
|
+
```bash
|
|
335
|
+
/plan trang e-commerce mới # Tạo kế hoạch dự án
|
|
336
|
+
/create todo app # Build ứng dụng
|
|
337
|
+
/debug login không hoạt động # Sửa bugs
|
|
338
|
+
/test user service # Tạo tests
|
|
339
|
+
/filter # Tối ưu skills cho workspace
|
|
340
|
+
```
|
|
341
|
+
|
|
342
|
+
<br/>
|
|
343
|
+
|
|
344
|
+
## 📚 Tài liệu
|
|
345
|
+
|
|
346
|
+
Sau khi cài đặt, tìm tài liệu trong dự án của bạn:
|
|
347
|
+
|
|
348
|
+
- **Hướng dẫn Kiến trúc**: `<path>/ARCHITECTURE.md`
|
|
349
|
+
- **Chi tiết Agents**: `<path>/agents/*.md`
|
|
350
|
+
- **Hướng dẫn Skills**: `<path>/skills/*/SKILL.md`
|
|
351
|
+
- **Tài liệu Workflows**: `<path>/workflows/*.md`
|
|
352
|
+
- **Common Skills**: `common/COMMON.md`
|
|
353
|
+
|
|
354
|
+
<br/>
|
|
355
|
+
|
|
356
|
+
## 🤝 Đóng góp
|
|
357
|
+
|
|
358
|
+
Chúng tôi hoan nghênh đóng góp! Xem [Hướng dẫn đóng góp](CONTRIBUTING.md).
|
|
359
|
+
|
|
360
|
+
### Tạo Kit mới
|
|
361
|
+
|
|
362
|
+
#### Bước 1: Tạo cấu trúc thư mục
|
|
363
|
+
|
|
364
|
+
```bash
|
|
365
|
+
mkdir -p kits/my-kit/{agents,skills,workflows}
|
|
366
|
+
```
|
|
367
|
+
|
|
368
|
+
```
|
|
369
|
+
kits/my-kit/
|
|
370
|
+
├── ARCHITECTURE.md # Tài liệu kit (bắt buộc)
|
|
371
|
+
├── GEMINI.md # File quy tắc AI (bắt buộc)
|
|
372
|
+
├── agents/ # Agent personas
|
|
373
|
+
│ └── orchestrator.md
|
|
374
|
+
├── skills/ # Domain skills
|
|
375
|
+
│ └── core-skill/
|
|
376
|
+
│ └── SKILL.md
|
|
377
|
+
└── workflows/ # Slash commands
|
|
378
|
+
└── main.md
|
|
379
|
+
```
|
|
380
|
+
|
|
381
|
+
#### Bước 2: Tạo ARCHITECTURE.md
|
|
382
|
+
|
|
383
|
+
Mô tả kiến trúc kit bao gồm: Purpose, Agents, Skills, Workflows.
|
|
384
|
+
|
|
385
|
+
#### Bước 3: Tạo GEMINI.md
|
|
386
|
+
|
|
387
|
+
File quy tắc cho AI với các trigger, agent routing, và skill loading protocol.
|
|
388
|
+
|
|
389
|
+
#### Bước 4: Đăng ký trong CLI
|
|
390
|
+
|
|
391
|
+
Thêm kit vào `src/config.ts`.
|
|
392
|
+
|
|
393
|
+
#### Bước 5: Test và Submit PR
|
|
394
|
+
|
|
395
|
+
```bash
|
|
396
|
+
pnpm build
|
|
397
|
+
node dist/cli.js
|
|
398
|
+
```
|
|
399
|
+
|
|
400
|
+
<br/>
|
|
401
|
+
|
|
402
|
+
## 📄 Giấy phép
|
|
403
|
+
|
|
404
|
+
MIT © [Neos](https://github.com/nvdnvd00)
|
|
405
|
+
|
|
406
|
+
---
|
|
407
|
+
|
|
408
|
+
<p align="center">
|
|
409
|
+
<sub>Được xây dựng với ❤️ cho cộng đồng phát triển với AI</sub>
|
|
410
|
+
</p>
|