ai-developer-skill-os 7.0.2 → 7.5.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.
Files changed (188) hide show
  1. package/.agents/AGENTS.md +44 -88
  2. package/.agents/CHANGELOG.md +69 -0
  3. package/.agents/LICENSE +21 -0
  4. package/.agents/README.md +59 -0
  5. package/.agents/_template/BEHAVIOR_SPEC.md +96 -0
  6. package/.agents/_template/examples/example-en.md +49 -0
  7. package/.agents/_template/examples/example-vi.md +49 -0
  8. package/.agents/docs/CHI_TIET_SKILLS.md +125 -0
  9. package/.agents/docs/GOVERNANCE.md +40 -0
  10. package/.agents/docs/HUONG_DAN_SU_DUNG.md +120 -0
  11. package/.agents/docs/SPEC.md +87 -0
  12. package/.agents/docs/adr/0001-intent-based-architecture.md +19 -0
  13. package/.agents/docs/adr/0002-kernel-freeze.md +21 -0
  14. package/.agents/docs/adr/0003-risk-based-verification.md +20 -0
  15. package/.agents/docs/adr/0004-progressive-evidence.md +19 -0
  16. package/.agents/docs/skill-classification.md +25 -0
  17. package/.agents/skills/qk-access-policy/SKILL.md +179 -0
  18. package/.agents/skills/qk-ai-builder/SKILL.md +215 -0
  19. package/.agents/skills/qk-api-lifecycle/SKILL.md +176 -0
  20. package/.agents/skills/qk-bug-resolution/SKILL.md +307 -0
  21. package/.agents/skills/qk-context-loader/SKILL.md +218 -0
  22. package/.agents/skills/qk-data-lifecycle/SKILL.md +192 -0
  23. package/.agents/skills/qk-db-optimizer/SKILL.md +196 -0
  24. package/.agents/skills/qk-design-to-code/SKILL.md +285 -0
  25. package/.agents/skills/qk-docs/SKILL.md +198 -0
  26. package/.agents/skills/qk-engineering-standard/SKILL.md +351 -0
  27. package/.agents/skills/qk-engineering-standard/rules/backend.md +122 -0
  28. package/.agents/skills/qk-engineering-standard/rules/database.md +3 -0
  29. package/.agents/skills/qk-engineering-standard/rules/frontend.md +152 -0
  30. package/.agents/skills/qk-engineering-standard/rules/security.md +3 -0
  31. package/.agents/skills/qk-engineering-standard/rules/testing.md +3 -0
  32. package/.agents/skills/qk-fe-api-integration/SKILL.md +326 -0
  33. package/.agents/skills/qk-feature-delivery/SKILL.md +305 -0
  34. package/.agents/skills/qk-help/SKILL.md +193 -0
  35. package/.agents/skills/qk-orchestrator/SKILL.md +277 -0
  36. package/.agents/skills/qk-orchestrator/references/routing-table.md +77 -0
  37. package/.agents/skills/qk-production-release/SKILL.md +284 -0
  38. package/.agents/skills/qk-project-bootstrap/SKILL.md +234 -0
  39. package/.agents/skills/qk-project-health/SKILL.md +199 -0
  40. package/.agents/skills/qk-project-memory/SKILL.md +172 -0
  41. package/.agents/skills/qk-system-evolution/SKILL.md +281 -0
  42. package/.agents/skills/qk-ui-audit/SKILL.md +314 -0
  43. package/.agents/skills/qk-ui-audit/references/anti-slop-checklist.md +136 -0
  44. package/.agents/skills/qk-ui-system-builder/SKILL.md +221 -0
  45. package/.agents/skills/qk-validation-gate/SKILL.md +359 -0
  46. package/.agents/skills.json +819 -0
  47. package/.github/workflows/ci.yml +1 -1
  48. package/.qk-ai-skill-os/CHANGELOG.md +69 -0
  49. package/.qk-ai-skill-os/LICENSE +21 -0
  50. package/.qk-ai-skill-os/README.md +59 -0
  51. package/.qk-ai-skill-os/_template/BEHAVIOR_SPEC.md +96 -0
  52. package/.qk-ai-skill-os/_template/examples/example-en.md +49 -0
  53. package/.qk-ai-skill-os/_template/examples/example-vi.md +49 -0
  54. package/.qk-ai-skill-os/docs/CHI_TIET_SKILLS.md +125 -0
  55. package/.qk-ai-skill-os/docs/GOVERNANCE.md +40 -0
  56. package/.qk-ai-skill-os/docs/HUONG_DAN_SU_DUNG.md +120 -0
  57. package/.qk-ai-skill-os/docs/SPEC.md +87 -0
  58. package/.qk-ai-skill-os/docs/adr/0001-intent-based-architecture.md +19 -0
  59. package/.qk-ai-skill-os/docs/adr/0002-kernel-freeze.md +21 -0
  60. package/.qk-ai-skill-os/docs/adr/0003-risk-based-verification.md +20 -0
  61. package/.qk-ai-skill-os/docs/adr/0004-progressive-evidence.md +19 -0
  62. package/.qk-ai-skill-os/docs/skill-classification.md +25 -0
  63. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-accessibility-audit/SKILL.md +121 -0
  64. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-agent-orchestrator/SKILL.md +179 -0
  65. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-api-integration/SKILL.md +389 -0
  66. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-auth-security/SKILL.md +96 -0
  67. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-backend-architecture/SKILL.md +125 -0
  68. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-bug-fix/SKILL.md +213 -0
  69. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-component-generator/SKILL.md +136 -0
  70. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-context-manager/SKILL.md +175 -0
  71. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-database-engineer/SKILL.md +104 -0
  72. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-deployment/SKILL.md +96 -0
  73. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-design-system/SKILL.md +137 -0
  74. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-form-builder/SKILL.md +140 -0
  75. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-frontend-architecture/SKILL.md +155 -0
  76. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-frontend-debug/SKILL.md +133 -0
  77. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-frontend-performance/SKILL.md +129 -0
  78. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-frontend-testing/SKILL.md +146 -0
  79. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-git-engineer/SKILL.md +304 -0
  80. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-help/SKILL.md +68 -0
  81. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-migration/SKILL.md +284 -0
  82. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-project-audit/SKILL.md +280 -0
  83. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-refactor/SKILL.md +222 -0
  84. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-state-management/SKILL.md +140 -0
  85. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-table-crud-generator/SKILL.md +127 -0
  86. package/.qk-ai-skill-os/skills/_archive_old_skills/qk-ui-builder/SKILL.md +152 -0
  87. package/.qk-ai-skill-os/skills/_template/SKILL.md +238 -0
  88. package/.qk-ai-skill-os/skills/qk-access-policy/SKILL.md +179 -0
  89. package/.qk-ai-skill-os/skills/qk-ai-builder/SKILL.md +221 -0
  90. package/.qk-ai-skill-os/skills/qk-api-lifecycle/SKILL.md +176 -0
  91. package/.qk-ai-skill-os/skills/qk-bug-resolution/SKILL.md +307 -0
  92. package/.qk-ai-skill-os/skills/qk-context-loader/SKILL.md +218 -0
  93. package/.qk-ai-skill-os/skills/qk-data-lifecycle/SKILL.md +192 -0
  94. package/.qk-ai-skill-os/skills/qk-db-optimizer/SKILL.md +196 -0
  95. package/.qk-ai-skill-os/skills/qk-design-to-code/SKILL.md +291 -0
  96. package/.qk-ai-skill-os/skills/qk-docs/SKILL.md +198 -0
  97. package/.qk-ai-skill-os/skills/qk-engineering-standard/SKILL.md +351 -0
  98. package/.qk-ai-skill-os/skills/qk-engineering-standard/rules/backend.md +122 -0
  99. package/.qk-ai-skill-os/skills/qk-engineering-standard/rules/database.md +3 -0
  100. package/.qk-ai-skill-os/skills/qk-engineering-standard/rules/frontend.md +152 -0
  101. package/.qk-ai-skill-os/skills/qk-engineering-standard/rules/security.md +3 -0
  102. package/.qk-ai-skill-os/skills/qk-engineering-standard/rules/testing.md +3 -0
  103. package/.qk-ai-skill-os/skills/qk-fe-api-integration/SKILL.md +326 -0
  104. package/.qk-ai-skill-os/skills/qk-feature-delivery/SKILL.md +305 -0
  105. package/.qk-ai-skill-os/skills/qk-help/SKILL.md +193 -0
  106. package/.qk-ai-skill-os/skills/qk-orchestrator/SKILL.md +277 -0
  107. package/.qk-ai-skill-os/skills/qk-orchestrator/references/routing-table.md +77 -0
  108. package/.qk-ai-skill-os/skills/qk-production-release/SKILL.md +290 -0
  109. package/.qk-ai-skill-os/skills/qk-project-bootstrap/SKILL.md +240 -0
  110. package/.qk-ai-skill-os/skills/qk-project-health/SKILL.md +199 -0
  111. package/.qk-ai-skill-os/skills/qk-project-memory/SKILL.md +172 -0
  112. package/.qk-ai-skill-os/skills/qk-system-evolution/SKILL.md +285 -0
  113. package/.qk-ai-skill-os/skills/qk-ui-audit/SKILL.md +314 -0
  114. package/.qk-ai-skill-os/skills/qk-ui-audit/references/anti-slop-checklist.md +136 -0
  115. package/.qk-ai-skill-os/skills/qk-ui-system-builder/SKILL.md +225 -0
  116. package/.qk-ai-skill-os/skills/qk-validation-gate/SKILL.md +361 -0
  117. package/.qk-ai-skill-os/skills.json +819 -0
  118. package/CLAUDE.md +110 -0
  119. package/README.md +25 -3
  120. package/add_lang.js +21 -0
  121. package/add_lang.py +25 -0
  122. package/add_sections.py +53 -0
  123. package/bin/install.js +225 -170
  124. package/bin/lint.js +122 -0
  125. package/docs/CHI_TIET_SKILLS.md +26 -26
  126. package/docs/HUONG_DAN_SU_DUNG.md +3 -3
  127. package/docs/SPEC.md +70 -20
  128. package/framework/skill-schema.md +310 -0
  129. package/package.json +15 -4
  130. package/patch.js +15 -0
  131. package/patch.py +89 -0
  132. package/patch2.py +83 -0
  133. package/skills/_archive_old_skills/qk-accessibility-audit/SKILL.md +1 -0
  134. package/skills/_archive_old_skills/qk-agent-orchestrator/SKILL.md +1 -0
  135. package/skills/_archive_old_skills/qk-api-integration/SKILL.md +1 -0
  136. package/skills/_archive_old_skills/qk-auth-security/SKILL.md +1 -0
  137. package/skills/_archive_old_skills/qk-backend-architecture/SKILL.md +1 -0
  138. package/skills/_archive_old_skills/qk-bug-fix/SKILL.md +1 -0
  139. package/skills/_archive_old_skills/qk-component-generator/SKILL.md +1 -0
  140. package/skills/_archive_old_skills/qk-context-manager/SKILL.md +1 -0
  141. package/skills/_archive_old_skills/qk-database-engineer/SKILL.md +1 -0
  142. package/skills/_archive_old_skills/qk-deployment/SKILL.md +1 -0
  143. package/skills/_archive_old_skills/qk-design-system/SKILL.md +1 -0
  144. package/skills/_archive_old_skills/qk-form-builder/SKILL.md +1 -0
  145. package/skills/_archive_old_skills/qk-frontend-architecture/SKILL.md +1 -0
  146. package/skills/_archive_old_skills/qk-frontend-debug/SKILL.md +1 -0
  147. package/skills/_archive_old_skills/qk-frontend-performance/SKILL.md +1 -0
  148. package/skills/_archive_old_skills/qk-frontend-testing/SKILL.md +1 -0
  149. package/skills/_archive_old_skills/qk-git-engineer/SKILL.md +1 -0
  150. package/skills/_archive_old_skills/qk-help/SKILL.md +1 -0
  151. package/skills/_archive_old_skills/qk-migration/SKILL.md +1 -0
  152. package/skills/_archive_old_skills/qk-project-audit/SKILL.md +1 -0
  153. package/skills/_archive_old_skills/qk-refactor/SKILL.md +1 -0
  154. package/skills/_archive_old_skills/qk-state-management/SKILL.md +1 -0
  155. package/skills/_archive_old_skills/qk-table-crud-generator/SKILL.md +1 -0
  156. package/skills/_archive_old_skills/qk-ui-builder/SKILL.md +1 -0
  157. package/skills/_template/SKILL.md +238 -0
  158. package/skills/qk-access-policy/SKILL.md +179 -39
  159. package/skills/qk-ai-builder/SKILL.md +215 -40
  160. package/skills/qk-api-lifecycle/SKILL.md +176 -46
  161. package/skills/qk-bug-resolution/SKILL.md +307 -46
  162. package/skills/qk-context-loader/SKILL.md +218 -43
  163. package/skills/qk-data-lifecycle/SKILL.md +192 -44
  164. package/skills/qk-db-optimizer/SKILL.md +196 -41
  165. package/skills/qk-design-to-code/SKILL.md +285 -46
  166. package/skills/qk-docs/SKILL.md +198 -40
  167. package/skills/qk-engineering-standard/SKILL.md +351 -42
  168. package/skills/qk-fe-api-integration/SKILL.md +326 -55
  169. package/skills/qk-feature-delivery/SKILL.md +305 -48
  170. package/skills/qk-help/SKILL.md +178 -23
  171. package/skills/qk-orchestrator/SKILL.md +277 -42
  172. package/skills/qk-orchestrator/references/routing-table.md +77 -0
  173. package/skills/qk-production-release/SKILL.md +284 -41
  174. package/skills/qk-project-bootstrap/SKILL.md +234 -38
  175. package/skills/qk-project-health/SKILL.md +199 -40
  176. package/skills/qk-project-memory/SKILL.md +172 -40
  177. package/skills/qk-system-evolution/SKILL.md +281 -40
  178. package/skills/qk-ui-audit/SKILL.md +314 -42
  179. package/skills/qk-ui-audit/references/anti-slop-checklist.md +136 -0
  180. package/skills/qk-ui-system-builder/SKILL.md +221 -43
  181. package/skills/qk-validation-gate/SKILL.md +359 -40
  182. package/skills.json +813 -824
  183. package/specs/fixtures/user-payload.json +12 -0
  184. package/specs/regressions/api-integration-null-fields.yaml +19 -0
  185. package/temp_fix.js +61 -0
  186. package/tests/registry.test.js +1 -1
  187. package/update_template.js +28 -0
  188. package/skills/qk-policy-engine/SKILL.md +0 -39
@@ -0,0 +1,819 @@
1
+ {
2
+ "$schema": "https://ai-developer-skill-os.dev/schema/skills-registry.json",
3
+ "version": "7.5.0",
4
+ "name": "AI Developer Skill OS",
5
+ "description": "Enterprise-ready Agentic Framework for AI Coding Agents — Engineering + Frontend + Backend",
6
+ "language": "en",
7
+ "author": "Quang Khánh",
8
+ "homepage": "https://github.com/phamquangkhanh2999/ai-developer-skill-os.git",
9
+ "kernel": {
10
+ "policy": "intent-based",
11
+ "contractVersion": "7.5.0",
12
+ "specRef": "docs/SPEC.md"
13
+ },
14
+ "skills": [
15
+ {
16
+ "name": "qk-access-policy",
17
+ "path": "skills/qk-access-policy/SKILL.md",
18
+ "version": "7.5.0",
19
+ "category": "security",
20
+ "subcategory": "orchestration",
21
+ "behavior": "static-analysis",
22
+ "intent": "review-code",
23
+ "priority": "high",
24
+ "tags": [
25
+ "security",
26
+ "rbac",
27
+ "auth",
28
+ "permissions"
29
+ ],
30
+ "trigger": [
31
+ "add roles",
32
+ "restrict access",
33
+ "authentication logic",
34
+ "RBAC",
35
+ "ABAC"
36
+ ],
37
+ "dependencies": [],
38
+ "conflicts": [],
39
+ "platforms": [
40
+ "claude-code",
41
+ "cursor",
42
+ "windsurf",
43
+ "antigravity",
44
+ "kilo-code"
45
+ ],
46
+ "status": "ready",
47
+ "description": "Quản lý RBAC, ABAC và các ranh giới bảo mật."
48
+ },
49
+ {
50
+ "name": "qk-ai-builder",
51
+ "path": "skills/qk-ai-builder/SKILL.md",
52
+ "version": "7.5.0",
53
+ "category": "ai",
54
+ "subcategory": "engineering",
55
+ "behavior": "development",
56
+ "intent": "implement-feature",
57
+ "priority": "medium",
58
+ "tags": [
59
+ "ai",
60
+ "llm",
61
+ "prompt-engineering",
62
+ "rag",
63
+ "agents"
64
+ ],
65
+ "trigger": [
66
+ "build a chatbot",
67
+ "add AI features",
68
+ "write prompts",
69
+ "RAG pipeline"
70
+ ],
71
+ "dependencies": [],
72
+ "conflicts": [],
73
+ "platforms": [
74
+ "claude-code",
75
+ "cursor",
76
+ "windsurf",
77
+ "antigravity",
78
+ "kilo-code"
79
+ ],
80
+ "status": "ready",
81
+ "description": "Thiết kế AI Logic, Prompts, RAG pipelines, và các Agents."
82
+ },
83
+ {
84
+ "name": "qk-api-lifecycle",
85
+ "path": "skills/qk-api-lifecycle/SKILL.md",
86
+ "version": "7.5.0",
87
+ "category": "engineering",
88
+ "subcategory": "backend",
89
+ "behavior": "development",
90
+ "intent": "implement-feature",
91
+ "priority": "high",
92
+ "tags": [
93
+ "api",
94
+ "backend",
95
+ "frontend-integration",
96
+ "endpoints"
97
+ ],
98
+ "trigger": [
99
+ "create a new API",
100
+ "fix an API",
101
+ "integrate frontend with backend",
102
+ "API route",
103
+ "swagger"
104
+ ],
105
+ "dependencies": [],
106
+ "conflicts": [],
107
+ "platforms": [
108
+ "claude-code",
109
+ "cursor",
110
+ "windsurf",
111
+ "antigravity",
112
+ "kilo-code"
113
+ ],
114
+ "status": "ready",
115
+ "description": "Thiết kế, triển khai, và tích hợp các API endpoints."
116
+ },
117
+ {
118
+ "name": "qk-bug-resolution",
119
+ "path": "skills/qk-bug-resolution/SKILL.md",
120
+ "version": "7.5.0",
121
+ "category": "engineering",
122
+ "subcategory": "validation",
123
+ "behavior": "development",
124
+ "intent": "fix-bug",
125
+ "priority": "high",
126
+ "tags": [
127
+ "bug",
128
+ "debug",
129
+ "regression",
130
+ "error"
131
+ ],
132
+ "trigger": [
133
+ "fix this bug",
134
+ "it's broken",
135
+ "error",
136
+ "exception",
137
+ "crash",
138
+ "not working",
139
+ "stack trace",
140
+ "fails"
141
+ ],
142
+ "dependencies": [],
143
+ "conflicts": [],
144
+ "platforms": [
145
+ "claude-code",
146
+ "cursor",
147
+ "windsurf",
148
+ "antigravity",
149
+ "kilo-code"
150
+ ],
151
+ "status": "ready",
152
+ "description": "Xử lý và sửa các lỗi (bugs), đồng thời ngăn ngừa lỗi hồi quy."
153
+ },
154
+ {
155
+ "name": "qk-context-loader",
156
+ "path": "skills/qk-context-loader/SKILL.md",
157
+ "version": "7.5.0",
158
+ "category": "utilities",
159
+ "subcategory": "orchestration",
160
+ "behavior": "static-analysis",
161
+ "intent": "review-code",
162
+ "priority": "medium",
163
+ "tags": [
164
+ "context",
165
+ "filesystem",
166
+ "dependencies",
167
+ "graph"
168
+ ],
169
+ "trigger": [
170
+ "understand the codebase",
171
+ "what files should I read",
172
+ "project overview",
173
+ "what is the architecture",
174
+ "dependency graph"
175
+ ],
176
+ "dependencies": [],
177
+ "conflicts": [],
178
+ "platforms": [
179
+ "claude-code",
180
+ "cursor",
181
+ "windsurf",
182
+ "antigravity",
183
+ "kilo-code"
184
+ ],
185
+ "status": "ready",
186
+ "description": "Tải các file liên quan và vẽ biểu đồ phụ thuộc (dependency graph) cho một tác vụ."
187
+ },
188
+ {
189
+ "name": "qk-data-lifecycle",
190
+ "path": "skills/qk-data-lifecycle/SKILL.md",
191
+ "version": "7.5.0",
192
+ "category": "database",
193
+ "subcategory": "backend",
194
+ "behavior": "development",
195
+ "intent": "implement-feature",
196
+ "priority": "medium",
197
+ "tags": [
198
+ "database",
199
+ "sql",
200
+ "migration",
201
+ "schema",
202
+ "orm"
203
+ ],
204
+ "trigger": [
205
+ "create a new database table",
206
+ "modify schema",
207
+ "write complex queries",
208
+ "migration",
209
+ "prisma",
210
+ "drizzle"
211
+ ],
212
+ "dependencies": [],
213
+ "conflicts": [],
214
+ "platforms": [
215
+ "claude-code",
216
+ "cursor",
217
+ "windsurf",
218
+ "antigravity",
219
+ "kilo-code"
220
+ ],
221
+ "status": "ready",
222
+ "description": "Quản lý Database Schema, Migrations, và Repositories."
223
+ },
224
+ {
225
+ "name": "qk-db-optimizer",
226
+ "path": "skills/qk-db-optimizer/SKILL.md",
227
+ "version": "7.5.0",
228
+ "category": "database",
229
+ "subcategory": "backend",
230
+ "behavior": "development",
231
+ "intent": "implement-feature",
232
+ "priority": "high",
233
+ "tags": [
234
+ "database",
235
+ "optimize",
236
+ "sql",
237
+ "index",
238
+ "performance"
239
+ ],
240
+ "trigger": [
241
+ "optimize database",
242
+ "slow queries",
243
+ "add index",
244
+ "N+1 issues"
245
+ ],
246
+ "dependencies": [],
247
+ "conflicts": [],
248
+ "platforms": [
249
+ "claude-code",
250
+ "cursor",
251
+ "windsurf",
252
+ "antigravity",
253
+ "kilo-code"
254
+ ],
255
+ "status": "ready",
256
+ "description": "Tối ưu hóa Database (đánh Index, xử lý N+1 Queries, Slow Queries)."
257
+ },
258
+ {
259
+ "name": "qk-design-to-code",
260
+ "path": "skills/qk-design-to-code/SKILL.md",
261
+ "version": "7.5.0",
262
+ "category": "frontend",
263
+ "subcategory": "visual",
264
+ "behavior": "development",
265
+ "intent": "implement-feature",
266
+ "priority": "high",
267
+ "tags": [
268
+ "ui",
269
+ "figma",
270
+ "frontend",
271
+ "styling",
272
+ "css"
273
+ ],
274
+ "trigger": [
275
+ "upload image mockup",
276
+ "design requirement",
277
+ "pixel-perfect",
278
+ "convert to code"
279
+ ],
280
+ "dependencies": [],
281
+ "conflicts": [],
282
+ "platforms": [
283
+ "claude-code",
284
+ "cursor",
285
+ "windsurf",
286
+ "antigravity",
287
+ "kilo-code"
288
+ ],
289
+ "status": "ready",
290
+ "description": "Chuyển đổi thiết kế từ Figma/Images thành các UI component hoàn chỉnh, chuẩn pixel."
291
+ },
292
+ {
293
+ "name": "qk-docs",
294
+ "path": "skills/qk-docs/SKILL.md",
295
+ "version": "7.5.0",
296
+ "category": "documentation",
297
+ "subcategory": "maintenance",
298
+ "behavior": "static-analysis",
299
+ "intent": "maintain",
300
+ "priority": "low",
301
+ "tags": [
302
+ "docs",
303
+ "markdown",
304
+ "jsdoc",
305
+ "readme"
306
+ ],
307
+ "trigger": [
308
+ "write docs",
309
+ "update the README",
310
+ "generate JSDoc",
311
+ "documentation"
312
+ ],
313
+ "dependencies": [],
314
+ "conflicts": [],
315
+ "platforms": [
316
+ "claude-code",
317
+ "cursor",
318
+ "windsurf",
319
+ "antigravity",
320
+ "kilo-code"
321
+ ],
322
+ "status": "ready",
323
+ "description": "Viết và duy trì tài liệu dự án để con người có thể dễ dàng đọc hiểu."
324
+ },
325
+ {
326
+ "name": "qk-engineering-standard",
327
+ "path": "skills/qk-engineering-standard/SKILL.md",
328
+ "version": "7.5.0",
329
+ "category": "standard",
330
+ "subcategory": "validation",
331
+ "behavior": "static-analysis",
332
+ "intent": "review-code",
333
+ "priority": "critical",
334
+ "tags": [
335
+ "clean-code",
336
+ "architecture",
337
+ "refactoring",
338
+ "solid",
339
+ "naming"
340
+ ],
341
+ "trigger": [
342
+ "review code",
343
+ "refactor code",
344
+ "clean code",
345
+ "SOLID",
346
+ "DRY",
347
+ "naming conventions"
348
+ ],
349
+ "dependencies": [],
350
+ "conflicts": [],
351
+ "platforms": [
352
+ "claude-code",
353
+ "cursor",
354
+ "windsurf",
355
+ "antigravity",
356
+ "kilo-code"
357
+ ],
358
+ "status": "ready",
359
+ "description": "Ép buộc áp dụng SOLID, DRY, Clean Code, và các quy tắc đặt tên."
360
+ },
361
+ {
362
+ "name": "qk-feature-delivery",
363
+ "path": "skills/qk-feature-delivery/SKILL.md",
364
+ "version": "7.5.0",
365
+ "category": "engineering",
366
+ "subcategory": "fullstack",
367
+ "behavior": "development",
368
+ "intent": "implement-feature",
369
+ "priority": "high",
370
+ "tags": [
371
+ "feature",
372
+ "development",
373
+ "e2e",
374
+ "ui",
375
+ "api"
376
+ ],
377
+ "trigger": [
378
+ "create a new page",
379
+ "build a new component",
380
+ "new endpoint",
381
+ "implement feature"
382
+ ],
383
+ "dependencies": [],
384
+ "conflicts": [],
385
+ "platforms": [
386
+ "claude-code",
387
+ "cursor",
388
+ "windsurf",
389
+ "antigravity",
390
+ "kilo-code"
391
+ ],
392
+ "status": "ready",
393
+ "description": "Phát triển tính năng mới hoàn chỉnh từ Frontend đến Backend."
394
+ },
395
+ {
396
+ "name": "qk-help",
397
+ "path": "skills/qk-help/SKILL.md",
398
+ "version": "7.5.0",
399
+ "category": "utilities",
400
+ "subcategory": "orchestration",
401
+ "behavior": "static-analysis",
402
+ "intent": "review-code",
403
+ "priority": "low",
404
+ "tags": [
405
+ "help",
406
+ "manual",
407
+ "list",
408
+ "tutorial"
409
+ ],
410
+ "trigger": [
411
+ "help",
412
+ "list skills",
413
+ "show tips",
414
+ "danh sách skill",
415
+ "how to use"
416
+ ],
417
+ "dependencies": [],
418
+ "conflicts": [],
419
+ "platforms": [
420
+ "claude-code",
421
+ "cursor",
422
+ "windsurf",
423
+ "antigravity",
424
+ "kilo-code"
425
+ ],
426
+ "status": "ready",
427
+ "description": "Hiển thị danh sách các kỹ năng hiện có và các mẹo sử dụng."
428
+ },
429
+ {
430
+ "name": "qk-orchestrator",
431
+ "path": "skills/qk-orchestrator/SKILL.md",
432
+ "version": "7.5.0",
433
+ "category": "orchestration",
434
+ "subcategory": "meta",
435
+ "behavior": "static-analysis",
436
+ "intent": "review-code",
437
+ "priority": "critical",
438
+ "tags": [
439
+ "router",
440
+ "orchestrator",
441
+ "delegation",
442
+ "ai-manager"
443
+ ],
444
+ "trigger": [
445
+ "plan this task",
446
+ "how should I approach",
447
+ "what should I do first",
448
+ "help me organize",
449
+ "break down this task",
450
+ "where do I start"
451
+ ],
452
+ "dependencies": [],
453
+ "conflicts": [],
454
+ "platforms": [
455
+ "claude-code",
456
+ "cursor",
457
+ "windsurf",
458
+ "antigravity",
459
+ "kilo-code"
460
+ ],
461
+ "status": "ready",
462
+ "description": "Điều hướng yêu cầu của người dùng, phân tích ý định và ủy quyền cho các sub-skills phù hợp."
463
+ },
464
+ {
465
+ "name": "qk-production-release",
466
+ "path": "skills/qk-production-release/SKILL.md",
467
+ "version": "7.5.0",
468
+ "category": "operations",
469
+ "subcategory": "devops",
470
+ "behavior": "validation",
471
+ "intent": "validate",
472
+ "priority": "high",
473
+ "tags": [
474
+ "deploy",
475
+ "release",
476
+ "build",
477
+ "production"
478
+ ],
479
+ "trigger": [
480
+ "deploy the app",
481
+ "build for production",
482
+ "release a new version",
483
+ "CI/CD"
484
+ ],
485
+ "dependencies": [],
486
+ "conflicts": [],
487
+ "platforms": [
488
+ "claude-code",
489
+ "cursor",
490
+ "windsurf",
491
+ "antigravity",
492
+ "kilo-code"
493
+ ],
494
+ "status": "ready",
495
+ "description": "Chuẩn bị codebase để phát hành lên production (Build, CI/CD, Security)."
496
+ },
497
+ {
498
+ "name": "qk-project-bootstrap",
499
+ "path": "skills/qk-project-bootstrap/SKILL.md",
500
+ "version": "7.5.0",
501
+ "category": "setup",
502
+ "subcategory": "engineering",
503
+ "behavior": "development",
504
+ "intent": "implement-feature",
505
+ "priority": "high",
506
+ "tags": [
507
+ "bootstrap",
508
+ "scaffolding",
509
+ "setup",
510
+ "init"
511
+ ],
512
+ "trigger": [
513
+ "start a new project",
514
+ "create a new repo",
515
+ "setup standard configurations",
516
+ "scaffold"
517
+ ],
518
+ "dependencies": [],
519
+ "conflicts": [],
520
+ "platforms": [
521
+ "claude-code",
522
+ "cursor",
523
+ "windsurf",
524
+ "antigravity",
525
+ "kilo-code"
526
+ ],
527
+ "status": "ready",
528
+ "description": "Khởi tạo dự án mới với các best practices, linters, và cấu trúc thư mục chuẩn."
529
+ },
530
+ {
531
+ "name": "qk-project-health",
532
+ "path": "skills/qk-project-health/SKILL.md",
533
+ "version": "7.5.0",
534
+ "category": "architecture",
535
+ "subcategory": "validation",
536
+ "behavior": "static-analysis",
537
+ "intent": "review-code",
538
+ "priority": "medium",
539
+ "tags": [
540
+ "audit",
541
+ "architecture",
542
+ "tech-debt",
543
+ "code-smell"
544
+ ],
545
+ "trigger": [
546
+ "project review",
547
+ "architecture audit",
548
+ "health check",
549
+ "code smells",
550
+ "tech debt"
551
+ ],
552
+ "dependencies": [],
553
+ "conflicts": [],
554
+ "platforms": [
555
+ "claude-code",
556
+ "cursor",
557
+ "windsurf",
558
+ "antigravity",
559
+ "kilo-code"
560
+ ],
561
+ "status": "ready",
562
+ "description": "Kiểm toán toàn diện về Code Smells, Tech Debt, và Architecture."
563
+ },
564
+ {
565
+ "name": "qk-project-memory",
566
+ "path": "skills/qk-project-memory/SKILL.md",
567
+ "version": "7.5.0",
568
+ "category": "utilities",
569
+ "subcategory": "maintenance",
570
+ "behavior": "static-analysis",
571
+ "intent": "maintain",
572
+ "priority": "low",
573
+ "tags": [
574
+ "memory",
575
+ "context",
576
+ "storage"
577
+ ],
578
+ "trigger": [
579
+ "remember a specific configuration",
580
+ "architectural decision",
581
+ "store context",
582
+ "long-term memory"
583
+ ],
584
+ "dependencies": [],
585
+ "conflicts": [],
586
+ "platforms": [
587
+ "claude-code",
588
+ "cursor",
589
+ "windsurf",
590
+ "antigravity",
591
+ "kilo-code"
592
+ ],
593
+ "status": "ready",
594
+ "description": "Lưu trữ và truy xuất ngữ cảnh dự án dài hạn qua các phiên làm việc."
595
+ },
596
+ {
597
+ "name": "qk-system-evolution",
598
+ "path": "skills/qk-system-evolution/SKILL.md",
599
+ "version": "7.5.0",
600
+ "category": "operations",
601
+ "subcategory": "maintenance",
602
+ "behavior": "maintenance",
603
+ "intent": "maintain",
604
+ "priority": "high",
605
+ "tags": [
606
+ "upgrade",
607
+ "migration",
608
+ "devops",
609
+ "dependencies"
610
+ ],
611
+ "trigger": [
612
+ "update a library",
613
+ "upgrade a framework",
614
+ "perform a major refactor",
615
+ "Next.js 13 to 14"
616
+ ],
617
+ "dependencies": [],
618
+ "conflicts": [],
619
+ "platforms": [
620
+ "claude-code",
621
+ "cursor",
622
+ "windsurf",
623
+ "antigravity",
624
+ "kilo-code"
625
+ ],
626
+ "status": "ready",
627
+ "description": "Cập nhật an toàn các thư viện dependencies, di chuyển frameworks và quản lý quá trình rollback."
628
+ },
629
+ {
630
+ "name": "qk-ui-audit",
631
+ "path": "skills/qk-ui-audit/SKILL.md",
632
+ "version": "7.5.0",
633
+ "category": "validation",
634
+ "subcategory": "frontend",
635
+ "behavior": "static-analysis",
636
+ "intent": "review-code",
637
+ "priority": "medium",
638
+ "tags": [
639
+ "ui",
640
+ "audit",
641
+ "frontend",
642
+ "a11y",
643
+ "responsive"
644
+ ],
645
+ "trigger": [
646
+ "check the UI",
647
+ "review styling",
648
+ "run an audit",
649
+ "accessibility",
650
+ "contrast"
651
+ ],
652
+ "dependencies": [],
653
+ "conflicts": [],
654
+ "platforms": [
655
+ "claude-code",
656
+ "cursor",
657
+ "windsurf",
658
+ "antigravity",
659
+ "kilo-code"
660
+ ],
661
+ "status": "ready",
662
+ "description": "Kiểm toán giao diện (UI) để đảm bảo tính nhất quán, khả năng truy cập (A11y), độ phản hồi (Responsive) và hiệu suất."
663
+ },
664
+ {
665
+ "name": "qk-ui-system-builder",
666
+ "path": "skills/qk-ui-system-builder/SKILL.md",
667
+ "version": "7.5.0",
668
+ "category": "frontend",
669
+ "subcategory": "design",
670
+ "behavior": "development",
671
+ "intent": "implement-feature",
672
+ "priority": "medium",
673
+ "tags": [
674
+ "design-system",
675
+ "tokens",
676
+ "shared-components",
677
+ "storybook"
678
+ ],
679
+ "trigger": [
680
+ "create a shared component",
681
+ "extract color palette",
682
+ "design tokens",
683
+ "storybook"
684
+ ],
685
+ "dependencies": [],
686
+ "conflicts": [],
687
+ "platforms": [
688
+ "claude-code",
689
+ "cursor",
690
+ "windsurf",
691
+ "antigravity",
692
+ "kilo-code"
693
+ ],
694
+ "status": "ready",
695
+ "description": "Xây dựng và duy trì Design Systems, Token extraction, và các thư viện UI dùng chung."
696
+ },
697
+ {
698
+ "name": "qk-validation-gate",
699
+ "path": "skills/qk-validation-gate/SKILL.md",
700
+ "version": "7.5.0",
701
+ "category": "validation",
702
+ "subcategory": "quality",
703
+ "behavior": "validation",
704
+ "intent": "validate",
705
+ "priority": "critical",
706
+ "tags": [
707
+ "ci",
708
+ "testing",
709
+ "linting",
710
+ "security",
711
+ "gatekeeper"
712
+ ],
713
+ "trigger": [
714
+ "check the code",
715
+ "run validation",
716
+ "lint",
717
+ "test",
718
+ "type check",
719
+ "quality gate"
720
+ ],
721
+ "dependencies": [],
722
+ "conflicts": [],
723
+ "platforms": [
724
+ "claude-code",
725
+ "cursor",
726
+ "windsurf",
727
+ "antigravity",
728
+ "kilo-code"
729
+ ],
730
+ "status": "ready",
731
+ "description": "Cổng kiểm tra chất lượng bắt buộc (Test, Lint, Security)."
732
+ },
733
+ {
734
+ "name": "qk-fe-api-integration",
735
+ "path": "skills/qk-fe-api-integration/SKILL.md",
736
+ "version": "7.5.0",
737
+ "category": "engineering",
738
+ "subcategory": "frontend",
739
+ "behavior": "development",
740
+ "intent": "implement-feature",
741
+ "priority": "high",
742
+ "tags": [
743
+ "api",
744
+ "frontend",
745
+ "integration",
746
+ "ui-binding",
747
+ "state-management"
748
+ ],
749
+ "trigger": [
750
+ "ghép api",
751
+ "tích hợp api",
752
+ "consume api",
753
+ "gọi api",
754
+ "bind data"
755
+ ],
756
+ "dependencies": [],
757
+ "conflicts": [],
758
+ "platforms": [
759
+ "claude-code",
760
+ "cursor",
761
+ "windsurf",
762
+ "antigravity",
763
+ "kilo-code"
764
+ ],
765
+ "status": "ready",
766
+ "description": "Chuyên biệt hóa việc tiêu thụ (consume) API Backend, quản lý State, và ghép nối vào Giao diện (UI) tuân thủ chặt chẽ Base dự án."
767
+ }
768
+ ],
769
+ "categories": {
770
+ "static-analysis": [
771
+ "qk-access-policy",
772
+ "qk-context-loader",
773
+ "qk-docs",
774
+ "qk-engineering-standard",
775
+ "qk-help",
776
+ "qk-orchestrator",
777
+ "qk-project-health",
778
+ "qk-project-memory",
779
+ "qk-ui-audit"
780
+ ],
781
+ "development": [
782
+ "qk-ai-builder",
783
+ "qk-api-lifecycle",
784
+ "qk-data-lifecycle",
785
+ "qk-db-optimizer",
786
+ "qk-design-to-code",
787
+ "qk-feature-delivery",
788
+ "qk-project-bootstrap",
789
+ "qk-ui-system-builder",
790
+ "qk-fe-api-integration"
791
+ ],
792
+ "validation": [
793
+ "qk-production-release",
794
+ "qk-validation-gate"
795
+ ],
796
+ "maintenance": [
797
+ "qk-system-evolution"
798
+ ]
799
+ },
800
+ "knowledge": [
801
+ "knowledge/frontend/react.md",
802
+ "knowledge/backend/nodejs.md"
803
+ ],
804
+ "templates": [
805
+ "templates/bug-report.md",
806
+ "templates/feature-report.md",
807
+ "templates/review-report.md",
808
+ "templates/design-report.md",
809
+ "templates/skill-template.md"
810
+ ],
811
+ "meta": {
812
+ "lastAudited": "2026-07-02",
813
+ "auditedBy": "kilo-auto/free",
814
+ "specCompliance": "4.0",
815
+ "totalSkills": 23,
816
+ "readySkills": 23,
817
+ "archivedSkills": 22
818
+ }
819
+ }