ai-developer-skill-os 1.0.4 → 1.0.7
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/CHANGELOG.md +5 -0
- package/README.md +20 -10
- package/bin/install.js +3 -3
- package/docs/CHI_TIET_SKILLS.md +1 -1
- package/docs/HUONG_DAN_SU_DUNG.md +21 -16
- package/package.json +1 -1
- package/skills/backend/auth-security/SKILL.md +3 -2
- package/skills/backend/backend-architecture/SKILL.md +3 -2
- package/skills/backend/database-engineer/SKILL.md +3 -2
- package/skills/backend/deployment/SKILL.md +3 -2
- package/skills/engineering/bug-fix/SKILL.md +3 -2
- package/skills/frontend/accessibility-audit/SKILL.md +3 -2
- package/skills/frontend/component-generator/SKILL.md +3 -2
- package/skills/frontend/design-system/SKILL.md +3 -2
- package/skills/frontend/form-builder/SKILL.md +3 -2
- package/skills/frontend/frontend-architecture/SKILL.md +3 -2
- package/skills/frontend/frontend-debug/SKILL.md +3 -2
- package/skills/frontend/frontend-performance/SKILL.md +3 -2
- package/skills/frontend/frontend-testing/SKILL.md +3 -2
- package/skills/frontend/state-management/SKILL.md +3 -2
- package/skills/frontend/table-crud-generator/SKILL.md +3 -2
- package/skills/frontend/ui-builder/SKILL.md +3 -2
- package/skills.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to the **AI Developer Skill OS** project will be documented
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.1] - 2026-07-01
|
|
9
|
+
### Fixed
|
|
10
|
+
- Standardized Language rule across all 23 SKILL.md files for consistency.
|
|
11
|
+
- Updated registry version to match package.json.
|
|
12
|
+
|
|
8
13
|
## [1.0.0] - 2026-07-01
|
|
9
14
|
|
|
10
15
|
### Added
|
package/README.md
CHANGED
|
@@ -30,12 +30,12 @@ Mở terminal tại thư mục gốc dự án của bạn và chạy:
|
|
|
30
30
|
```bash
|
|
31
31
|
npx ai-developer-skill-os init
|
|
32
32
|
```
|
|
33
|
-
*Lệnh này sẽ tự động tải và khởi tạo thư mục
|
|
33
|
+
*Lệnh này sẽ tự động tải và khởi tạo thư mục ẩn `.qk-ai-skill-os/` chứa toàn bộ kỹ năng vào dự án của bạn.*
|
|
34
34
|
|
|
35
35
|
### Cách 2: Sử dụng Git Submodule
|
|
36
36
|
Nếu bạn không dùng Node.js, bạn có thể nhúng trực tiếp qua Git:
|
|
37
37
|
```bash
|
|
38
|
-
git submodule add https://github.com/phamquangkhanh2999/ai-developer-skill-os.git
|
|
38
|
+
git submodule add https://github.com/phamquangkhanh2999/ai-developer-skill-os.git .qk-ai-skill-os
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
---
|
|
@@ -52,8 +52,8 @@ Tạo file `.cursorrules` (nếu dùng Cursor) hoặc `.windsurfrules` (nếu d
|
|
|
52
52
|
```md
|
|
53
53
|
# AI Developer Skill OS by Quang Khánh
|
|
54
54
|
|
|
55
|
-
When answering or generating code, you MUST act as an expert engineer using the skills defined in
|
|
56
|
-
Always read the relevant `SKILL.md` from
|
|
55
|
+
When answering or generating code, you MUST act as an expert engineer using the skills defined in `./.rules-skill/skills.json`.
|
|
56
|
+
Always read the relevant `SKILL.md` from `./.rules-skill/skills/` before providing a solution.
|
|
57
57
|
Speak to me in Vietnamese, but write all code in English.
|
|
58
58
|
```
|
|
59
59
|
|
|
@@ -61,7 +61,7 @@ Speak to me in Vietnamese, but write all code in English.
|
|
|
61
61
|
Tạo file `.clinerules`, `.roorules` hoặc `KILO.md` ở gốc dự án và dán nội dung:
|
|
62
62
|
```md
|
|
63
63
|
Bạn đang chạy bằng **AI Developer Skill OS** (Tác giả: Quang Khánh).
|
|
64
|
-
Vui lòng tìm đọc danh sách kỹ năng tại file
|
|
64
|
+
Vui lòng tìm đọc danh sách kỹ năng tại file `./.qk-ai-skill-os/skills.json`. Trước khi thực hiện bất kỳ yêu cầu nào, hãy gọi file `SKILL.md` tương ứng trong thư mục `./.qk-ai-skill-os/skills/`.
|
|
65
65
|
Luôn giao tiếp bằng tiếng Việt nhưng viết code bằng tiếng Anh.
|
|
66
66
|
```
|
|
67
67
|
|
|
@@ -80,13 +80,23 @@ Tạo file `.github/copilot-instructions.md` và dán đoạn prompt tương t
|
|
|
80
80
|
|
|
81
81
|
---
|
|
82
82
|
|
|
83
|
-
## 🚀 Cách sử dụng (Usage)
|
|
83
|
+
## 🚀 Cách sử dụng & Gọi Skill (Usage)
|
|
84
84
|
|
|
85
|
-
|
|
85
|
+
AI sẽ tự động nhận diện skill qua ngữ cảnh, nhưng để chắc chắn 100%, bạn **nên gọi thẳng tên skill** trong câu lệnh (prompt) của mình.
|
|
86
86
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
87
|
+
Dưới đây là các ví dụ cụ thể để bạn copy - paste và trải nghiệm ngay:
|
|
88
|
+
|
|
89
|
+
### 1. Khi bắt đầu dự án / Nhờ AI lên kế hoạch (Planning)
|
|
90
|
+
> *"Hãy dùng skill **`agent-orchestrator`** để lên kế hoạch làm tính năng Giỏ Hàng cho tôi. Nhớ gọi thêm **`context-manager`** để kiểm tra thư mục hiện tại có những file gì trước nhé."*
|
|
91
|
+
|
|
92
|
+
### 2. Khi muốn tạo Giao diện (UI)
|
|
93
|
+
> *"Kích hoạt skill **`ui-builder`** và **`design-system`**. Hãy tạo cho tôi một màn hình Đăng Nhập (Login) sử dụng Tailwind CSS. Hãy đọc các rule trong skill để code cho chuẩn."*
|
|
94
|
+
|
|
95
|
+
### 3. Khi muốn làm việc với Database (Backend)
|
|
96
|
+
> *"Sử dụng skill **`database-engineer`**. Hãy viết cho tôi schema Prisma cho bảng Product (Sản phẩm) và User (Người dùng) có quan hệ 1-N. Làm theo đúng chuẩn kiến trúc trong skill."*
|
|
97
|
+
|
|
98
|
+
### 4. Khi gặp Bug cứng đầu
|
|
99
|
+
> *"Code đang bị crash với lỗi `Hydration error`. Hãy dùng skill **`frontend-debug`** và **`bug-fix`** để tìm hiểu nguyên nhân gốc rễ và sửa nó giúp tôi."*
|
|
90
100
|
|
|
91
101
|
👉 [Đọc Hướng Dẫn Sử Dụng chi tiết tại đây](docs/HUONG_DAN_SU_DUNG.md)
|
|
92
102
|
|
package/bin/install.js
CHANGED
|
@@ -4,7 +4,7 @@ const fs = require('fs');
|
|
|
4
4
|
const path = require('path');
|
|
5
5
|
|
|
6
6
|
const sourceDir = path.join(__dirname, '..');
|
|
7
|
-
let targetDir = path.join(process.cwd(), '
|
|
7
|
+
let targetDir = path.join(process.cwd(), '.qk-ai-skill-os');
|
|
8
8
|
|
|
9
9
|
// Check arguments for IDE-specific paths
|
|
10
10
|
const args = process.argv.slice(2);
|
|
@@ -35,7 +35,7 @@ console.log('🚀 Đang cài đặt AI Developer Skill OS...');
|
|
|
35
35
|
if (isGemini) {
|
|
36
36
|
console.log('⚙️ Chế độ: Gemini / Antigravity IDE (Cài vào thư mục .agents/skills/)');
|
|
37
37
|
} else {
|
|
38
|
-
console.log('⚙️ Chế độ: Mặc định (Cài vào thư mục
|
|
38
|
+
console.log('⚙️ Chế độ: Mặc định (Cài vào thư mục .qk-ai-skill-os/)');
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
const filesAndFolders = [
|
|
@@ -64,7 +64,7 @@ try {
|
|
|
64
64
|
});
|
|
65
65
|
|
|
66
66
|
console.log(`✅ Đã cài đặt thành công vào thư mục: ${targetDir.replace(process.cwd(), '.')}`);
|
|
67
|
-
console.log('\n💡 Tiếp theo, hãy tham khảo tài liệu trong mục docs/HUONG_DAN_SU_DUNG.md để biết cách tương tác với AI nhé!');
|
|
67
|
+
console.log('\n💡 Tiếp theo, hãy tham khảo tài liệu trong mục .qk-ai-skill-os/docs/HUONG_DAN_SU_DUNG.md để biết cách tương tác với AI nhé!');
|
|
68
68
|
} catch (error) {
|
|
69
69
|
console.error('❌ Có lỗi xảy ra trong quá trình cài đặt:', error.message);
|
|
70
70
|
process.exit(1);
|
package/docs/CHI_TIET_SKILLS.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Chi Tiết 23 Skills — AI Developer Skill OS
|
|
2
2
|
|
|
3
3
|
**Tác giả:** Quang Khánh
|
|
4
|
-
**Phiên bản:** v1.0.
|
|
4
|
+
**Phiên bản:** v1.0.1
|
|
5
5
|
|
|
6
6
|
Tài liệu này giải thích chi tiết chức năng của từng Skill trong bộ Skill OS.
|
|
7
7
|
AI sẽ đọc mô tả (description) bằng tiếng Anh để nhận diện, nhưng bạn có thể đọc tài liệu tiếng Việt này để hiểu AI có thể làm được gì.
|
|
@@ -38,7 +38,7 @@ Các công cụ này linh hoạt hơn, bạn cài đặt mặc định:
|
|
|
38
38
|
```bash
|
|
39
39
|
npx ai-developer-skill-os init
|
|
40
40
|
```
|
|
41
|
-
*Lệnh này sẽ tạo thư mục
|
|
41
|
+
*Lệnh này sẽ tạo thư mục `.qk-ai-skill-os/` ở gốc dự án.*
|
|
42
42
|
|
|
43
43
|
---
|
|
44
44
|
|
|
@@ -54,8 +54,8 @@ Tạo file `.cursorrules` (nếu dùng Cursor) hoặc `.windsurfrules` (nếu d
|
|
|
54
54
|
```md
|
|
55
55
|
# AI Developer Skill OS by Quang Khánh
|
|
56
56
|
|
|
57
|
-
When answering or generating code, you MUST act as an expert engineer using the skills defined in
|
|
58
|
-
Always read the relevant `SKILL.md` from
|
|
57
|
+
When answering or generating code, you MUST act as an expert engineer using the skills defined in `./.qk-ai-skill-os/skills.json`.
|
|
58
|
+
Always read the relevant `SKILL.md` from `./.qk-ai-skill-os/skills/` before providing a solution.
|
|
59
59
|
Speak to me in Vietnamese, but write all code in English.
|
|
60
60
|
```
|
|
61
61
|
|
|
@@ -63,7 +63,7 @@ Speak to me in Vietnamese, but write all code in English.
|
|
|
63
63
|
Tạo file `.clinerules`, `.roorules` hoặc `KILO.md` ở gốc dự án và dán nội dung:
|
|
64
64
|
```md
|
|
65
65
|
Bạn đang chạy bằng **AI Developer Skill OS** (Tác giả: Quang Khánh).
|
|
66
|
-
Vui lòng tìm đọc danh sách kỹ năng tại file
|
|
66
|
+
Vui lòng tìm đọc danh sách kỹ năng tại file `./.qk-ai-skill-os/skills.json`. Trước khi thực hiện bất kỳ yêu cầu nào, hãy gọi file `SKILL.md` tương ứng trong thư mục `./.qk-ai-skill-os/skills/`.
|
|
67
67
|
Luôn giao tiếp bằng tiếng Việt nhưng viết code bằng tiếng Anh.
|
|
68
68
|
```
|
|
69
69
|
|
|
@@ -82,21 +82,26 @@ Tạo file `.github/copilot-instructions.md` và dán đoạn prompt tương t
|
|
|
82
82
|
|
|
83
83
|
---
|
|
84
84
|
|
|
85
|
-
## 5. Cách tương tác
|
|
85
|
+
## 5. Cách tương tác & Gọi Skill cụ thể
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
Dù AI có thể tự đoán ngữ cảnh, cách chuyên nghiệp nhất là bạn **gọi thẳng tên skill** trong câu lệnh của mình để ép AI phải tuân thủ đúng quy trình.
|
|
88
88
|
|
|
89
|
-
|
|
90
|
-
> "Quang Khánh ơi, dự án này đang cần thêm tính năng Đăng nhập. Cậu lên kế hoạch giúp mình nên làm gì trước nhé."
|
|
89
|
+
Dưới đây là các câu lệnh (prompt) mẫu cực kỳ hiệu quả mà bạn nên dùng:
|
|
91
90
|
|
|
92
|
-
|
|
93
|
-
> "
|
|
91
|
+
### 🎯 Ví dụ 1: Nhờ AI lên kế hoạch (Planning)
|
|
92
|
+
> *"Quang Khánh ơi, dự án này đang cần thêm tính năng Đăng nhập. Hãy dùng skill **`agent-orchestrator`** để lên kế hoạch làm tính năng này cho tôi. Nhớ gọi thêm **`context-manager`** để kiểm tra thư mục hiện tại có những file gì trước nhé."*
|
|
94
93
|
|
|
95
|
-
|
|
96
|
-
> "
|
|
94
|
+
### 🎯 Ví dụ 2: Fix lỗi cứng đầu (Bug Fix)
|
|
95
|
+
> *"Code đang bị crash với lỗi `Hydration error`. Hãy dùng skill **`frontend-debug`** và **`bug-fix`** để tìm hiểu nguyên nhân gốc rễ và sửa nó giúp tôi."*
|
|
97
96
|
|
|
98
|
-
|
|
99
|
-
> "
|
|
97
|
+
### 🎯 Ví dụ 3: Review Codebase (Audit)
|
|
98
|
+
> *"Kích hoạt skill **`project-audit`**. Hãy kiểm tra nhanh cho tôi thư mục `src/components/` xem có bị vấn đề về hiệu năng hay code smell không."*
|
|
100
99
|
|
|
101
|
-
|
|
102
|
-
> "
|
|
100
|
+
### 🎯 Ví dụ 4: Xây dựng Giao diện Frontend (UI)
|
|
101
|
+
> *"Kích hoạt skill **`ui-builder`** và **`design-system`**. Hãy tạo cho tôi một màn hình Danh sách User. Chú ý dùng chuẩn components của thư mục `src/components/ui/` nhé."*
|
|
102
|
+
|
|
103
|
+
### 🎯 Ví dụ 5: Làm việc với API (Backend & Integration)
|
|
104
|
+
> *"Sử dụng skill **`api-integration`**. Tích hợp cái swagger login này vào frontend giúp. Nhớ dùng React Query như chuẩn của project."*
|
|
105
|
+
|
|
106
|
+
### 🎯 Ví dụ 6: Database & Backend
|
|
107
|
+
> *"Sử dụng skill **`database-engineer`**. Hãy viết cho tôi schema Prisma cho bảng Product (Sản phẩm) và User (Người dùng) có quan hệ 1-N. Làm theo đúng chuẩn kiến trúc trong skill."*
|
package/package.json
CHANGED
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Auth & Security Engineer
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Backend Architecture
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Database Engineer
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Deployment & DevOps
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Bug Fix — Diagnose & Repair
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Accessibility (A11y) Audit
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Component Generator
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Design System Enforcer
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Form Builder
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Frontend Architecture
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Frontend Debugger
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Frontend Performance Optimizer
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Frontend Testing
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# State Management
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# Table & CRUD Generator
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
@@ -11,8 +11,9 @@ platforms: [antigravity, claude-code, kilo-code, cursor, windsurf]
|
|
|
11
11
|
# UI Builder
|
|
12
12
|
|
|
13
13
|
> **Language rule:**
|
|
14
|
-
> Use
|
|
15
|
-
> Use
|
|
14
|
+
> Use English for: code, identifiers, file names, architecture terms, technical decisions.
|
|
15
|
+
> Use the user's language for: explanations, questions, summaries, and feedback.
|
|
16
|
+
> The user may write in any language — detect and match it automatically.
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
package/skills.json
CHANGED