ai-developer-skill-os 7.5.1 β†’ 8.1.4

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 (300) hide show
  1. package/.agents/docs/ARCHITECTURE.md +156 -0
  2. package/.agents/docs/MIGRATION-CLEANUP-V8.1.3.md +36 -0
  3. package/.agents/docs/MIGRATION-STATUS.md +35 -0
  4. package/.agents/docs/MIGRATION-V8.md +10 -0
  5. package/.agents/docs/ROADMAP-V8.2.md +78 -0
  6. package/.agents/docs/V8-CERTIFICATION.md +27 -0
  7. package/.agents/docs/VERSIONING.md +95 -0
  8. package/.agents/docs/decisions/ADR-001-v8-migration.md +58 -0
  9. package/.agents/docs/decisions/ADR-002-workflow-separation.md +50 -0
  10. package/.agents/docs/decisions/ADR-003-registry-generated.md +54 -0
  11. package/.agents/docs/decisions/ADR-008-skill-boundary-review.md +27 -0
  12. package/.agents/docs/schemas/learning.schema.yml +69 -0
  13. package/.agents/docs/schemas/skill.schema.yml +188 -0
  14. package/.agents/docs/schemas/workflow.schema.yml +33 -0
  15. package/.agents/knowledge/design-intelligence/industries/ecommerce.md +3 -0
  16. package/.agents/knowledge/design-intelligence/industries/fintech.md +3 -0
  17. package/.agents/knowledge/design-intelligence/industries/healthcare.md +3 -0
  18. package/.agents/learnings/draft/README.md +37 -0
  19. package/.agents/registry/capability-graph.yml +500 -0
  20. package/.agents/registry/skills-index.yml +525 -0
  21. package/.agents/reports/RELEASE-CHECKLIST.md +29 -0
  22. package/.agents/reports/architecture-audit.md +13 -0
  23. package/.agents/reports/graph-health.md +20 -0
  24. package/.agents/reports/skill-audit.md +215 -0
  25. package/.agents/rules/coding.md +102 -0
  26. package/.agents/rules/command-safety.md +21 -0
  27. package/.agents/rules/global.md +135 -0
  28. package/.agents/rules/priorities.yml +24 -0
  29. package/.agents/rules/safety.md +84 -0
  30. package/.agents/rules/security.md +13 -0
  31. package/.agents/rules/skill-quality.md +14 -0
  32. package/.agents/skills/_template/SKILL.md +132 -0
  33. package/.agents/skills/qk-access-policy/SKILL.md +61 -5
  34. package/.agents/skills/qk-agent-observability/SKILL.md +73 -0
  35. package/.agents/skills/qk-ai-builder/SKILL.md +62 -5
  36. package/.agents/skills/qk-api-lifecycle/SKILL.md +59 -6
  37. package/.agents/skills/qk-bug-resolution/SKILL.md +64 -6
  38. package/.agents/skills/qk-context-loader/SKILL.md +63 -11
  39. package/.agents/skills/qk-data-lifecycle/SKILL.md +61 -5
  40. package/.agents/skills/qk-db-optimizer/SKILL.md +61 -5
  41. package/.agents/skills/qk-design-system-engineering/SKILL.md +112 -0
  42. package/.agents/skills/qk-devops-platform/SKILL.md +117 -0
  43. package/.agents/skills/qk-docs/SKILL.md +62 -6
  44. package/.agents/skills/qk-engineering-standard/SKILL.md +62 -12
  45. package/.agents/skills/qk-fe-api-integration/SKILL.md +60 -6
  46. package/.agents/skills/qk-feature-delivery/SKILL.md +65 -6
  47. package/.agents/skills/qk-frontend-architecture/SKILL.md +134 -0
  48. package/.agents/skills/qk-help/SKILL.md +245 -193
  49. package/.agents/skills/qk-orchestrator/SKILL.md +64 -11
  50. package/.agents/skills/qk-orchestrator/references/routing-table.md +1 -1
  51. package/.agents/skills/qk-product-specification/SKILL.md +130 -0
  52. package/.agents/skills/qk-production-release/SKILL.md +59 -6
  53. package/.agents/skills/qk-project-bootstrap/SKILL.md +66 -6
  54. package/.agents/skills/qk-project-health/SKILL.md +63 -6
  55. package/.agents/skills/qk-project-memory/SKILL.md +63 -6
  56. package/.agents/skills/qk-security-audit/SKILL.md +135 -0
  57. package/.agents/skills/qk-system-evolution/SKILL.md +63 -12
  58. package/.agents/skills/qk-test-engineering/SKILL.md +139 -0
  59. package/.agents/skills/qk-ui-audit/SKILL.md +60 -6
  60. package/.agents/skills/qk-ui-builder/SKILL.md +509 -446
  61. package/.agents/skills/qk-ui-system-builder/SKILL.md +61 -5
  62. package/.agents/skills/qk-validation-gate/SKILL.md +63 -11
  63. package/.agents/skills/qk-web-quality-gate/SKILL.md +114 -0
  64. package/.agents/workflows/_schema.yml +109 -0
  65. package/.agents/workflows/bug-resolution.yml +101 -0
  66. package/.agents/workflows/code-review.yml +77 -0
  67. package/.agents/workflows/documentation.yml +75 -0
  68. package/.agents/workflows/feature-delivery.yml +103 -0
  69. package/.agents/workflows/refactor.yml +81 -0
  70. package/.agents/workflows/research.yml +60 -0
  71. package/.agents/workflows/security-audit.yml +72 -0
  72. package/.agents/workflows/skill-evolution.yml +65 -0
  73. package/.agents/workflows/spec-driven-development.yml +57 -0
  74. package/CHANGELOG.md +91 -70
  75. package/README.md +44 -59
  76. package/bin/install.js +57 -309
  77. package/package.json +13 -2
  78. package/tooling/generate-evaluation-cases.cjs +44 -0
  79. package/tooling/generate-registry.js +157 -0
  80. package/tooling/run-aar.js +143 -0
  81. package/tooling/validate-graph.js +87 -0
  82. package/tooling/validate-skills.js +102 -0
  83. package/.agents/skills.json +0 -819
  84. package/.github/workflows/ci.yml +0 -56
  85. package/CLAUDE.md +0 -110
  86. package/_template/BEHAVIOR_SPEC.md +0 -96
  87. package/_template/examples/example-en.md +0 -49
  88. package/_template/examples/example-vi.md +0 -49
  89. package/add_lang.js +0 -21
  90. package/add_lang.py +0 -25
  91. package/add_sections.py +0 -53
  92. package/bin/lint.js +0 -123
  93. package/docs/CHI_TIET_SKILLS.md +0 -126
  94. package/docs/GOVERNANCE.md +0 -40
  95. package/docs/HUONG_DAN_SU_DUNG.md +0 -120
  96. package/docs/SPEC.md +0 -87
  97. package/docs/adr/0001-intent-based-architecture.md +0 -19
  98. package/docs/adr/0002-kernel-freeze.md +0 -21
  99. package/docs/adr/0003-risk-based-verification.md +0 -20
  100. package/docs/adr/0004-progressive-evidence.md +0 -19
  101. package/docs/skill-classification.md +0 -25
  102. package/fix_seeds.js +0 -22
  103. package/framework/KERNEL.md +0 -83
  104. package/framework/bias-library/cosmetic-refactor.md +0 -21
  105. package/framework/bias-library/enterprise-crud.md +0 -21
  106. package/framework/bias-library/fake-ui-slop.md +0 -20
  107. package/framework/bias-library/hallucinated-tools.md +0 -20
  108. package/framework/bias-library/missing-ui-states.md +0 -19
  109. package/framework/bias-library/over-indexing.md +0 -20
  110. package/framework/bias-library/swallow-errors.md +0 -19
  111. package/framework/bias-library/ui-only-security.md +0 -17
  112. package/framework/decision-primitives.md +0 -48
  113. package/framework/dial-library/complexity-budget.md +0 -13
  114. package/framework/dial-library/granularity.md +0 -13
  115. package/framework/dial-library/optimization-strategy.md +0 -13
  116. package/framework/dial-library/strictness.md +0 -13
  117. package/framework/rule-library/delegation-only.md +0 -9
  118. package/framework/rule-library/minimal-diff.md +0 -9
  119. package/framework/skill-schema.md +0 -310
  120. package/knowledge/backend/nodejs.md +0 -52
  121. package/knowledge/frontend/react.md +0 -81
  122. package/migrate-to-v6.js +0 -130
  123. package/migrate.js +0 -147
  124. package/migrate.py +0 -133
  125. package/migrate_all.cjs +0 -96
  126. package/patch.js +0 -15
  127. package/patch.py +0 -89
  128. package/patch2.py +0 -83
  129. package/rename.js +0 -64
  130. package/skills/_archive_old_skills/qk-accessibility-audit/SKILL.md +0 -121
  131. package/skills/_archive_old_skills/qk-agent-orchestrator/SKILL.md +0 -179
  132. package/skills/_archive_old_skills/qk-api-integration/SKILL.md +0 -389
  133. package/skills/_archive_old_skills/qk-auth-security/SKILL.md +0 -96
  134. package/skills/_archive_old_skills/qk-backend-architecture/SKILL.md +0 -125
  135. package/skills/_archive_old_skills/qk-bug-fix/SKILL.md +0 -213
  136. package/skills/_archive_old_skills/qk-component-generator/SKILL.md +0 -136
  137. package/skills/_archive_old_skills/qk-context-manager/SKILL.md +0 -175
  138. package/skills/_archive_old_skills/qk-database-engineer/SKILL.md +0 -104
  139. package/skills/_archive_old_skills/qk-deployment/SKILL.md +0 -96
  140. package/skills/_archive_old_skills/qk-design-system/SKILL.md +0 -137
  141. package/skills/_archive_old_skills/qk-form-builder/SKILL.md +0 -140
  142. package/skills/_archive_old_skills/qk-frontend-architecture/SKILL.md +0 -155
  143. package/skills/_archive_old_skills/qk-frontend-debug/SKILL.md +0 -133
  144. package/skills/_archive_old_skills/qk-frontend-performance/SKILL.md +0 -129
  145. package/skills/_archive_old_skills/qk-frontend-testing/SKILL.md +0 -146
  146. package/skills/_archive_old_skills/qk-git-engineer/SKILL.md +0 -304
  147. package/skills/_archive_old_skills/qk-help/SKILL.md +0 -68
  148. package/skills/_archive_old_skills/qk-migration/SKILL.md +0 -284
  149. package/skills/_archive_old_skills/qk-project-audit/SKILL.md +0 -280
  150. package/skills/_archive_old_skills/qk-refactor/SKILL.md +0 -222
  151. package/skills/_archive_old_skills/qk-state-management/SKILL.md +0 -140
  152. package/skills/_archive_old_skills/qk-table-crud-generator/SKILL.md +0 -127
  153. package/skills/_archive_old_skills/qk-ui-builder/SKILL.md +0 -152
  154. package/skills/_template/SKILL.md +0 -239
  155. package/skills/qk-access-policy/SKILL.md +0 -180
  156. package/skills/qk-ai-builder/SKILL.md +0 -216
  157. package/skills/qk-api-lifecycle/SKILL.md +0 -177
  158. package/skills/qk-bug-resolution/SKILL.md +0 -308
  159. package/skills/qk-context-loader/SKILL.md +0 -219
  160. package/skills/qk-data-lifecycle/SKILL.md +0 -193
  161. package/skills/qk-db-optimizer/SKILL.md +0 -197
  162. package/skills/qk-docs/SKILL.md +0 -199
  163. package/skills/qk-engineering-standard/SKILL.md +0 -352
  164. package/skills/qk-engineering-standard/rules/backend.md +0 -122
  165. package/skills/qk-engineering-standard/rules/database.md +0 -3
  166. package/skills/qk-engineering-standard/rules/frontend.md +0 -152
  167. package/skills/qk-engineering-standard/rules/security.md +0 -3
  168. package/skills/qk-engineering-standard/rules/testing.md +0 -3
  169. package/skills/qk-fe-api-integration/SKILL.md +0 -327
  170. package/skills/qk-feature-delivery/SKILL.md +0 -306
  171. package/skills/qk-help/SKILL.md +0 -194
  172. package/skills/qk-orchestrator/SKILL.md +0 -279
  173. package/skills/qk-orchestrator/references/routing-table.md +0 -78
  174. package/skills/qk-production-release/SKILL.md +0 -285
  175. package/skills/qk-project-bootstrap/SKILL.md +0 -236
  176. package/skills/qk-project-health/SKILL.md +0 -200
  177. package/skills/qk-project-memory/SKILL.md +0 -219
  178. package/skills/qk-system-evolution/SKILL.md +0 -282
  179. package/skills/qk-ui-audit/SKILL.md +0 -316
  180. package/skills/qk-ui-audit/references/anti-slop-checklist.md +0 -136
  181. package/skills/qk-ui-builder/SKILL.md +0 -447
  182. package/skills/qk-ui-builder/references/anti-patterns.md +0 -295
  183. package/skills/qk-ui-builder/references/color.md +0 -115
  184. package/skills/qk-ui-builder/references/component-cookbook.md +0 -1194
  185. package/skills/qk-ui-builder/references/copy.md +0 -250
  186. package/skills/qk-ui-builder/references/interaction-and-states.md +0 -115
  187. package/skills/qk-ui-builder/references/layout-and-space.md +0 -111
  188. package/skills/qk-ui-builder/references/macrostructures/01-bento-grid.md +0 -48
  189. package/skills/qk-ui-builder/references/macrostructures/02-long-document.md +0 -50
  190. package/skills/qk-ui-builder/references/macrostructures/03-marquee-hero.md +0 -51
  191. package/skills/qk-ui-builder/references/macrostructures/04-stat-led.md +0 -49
  192. package/skills/qk-ui-builder/references/macrostructures/05-workbench.md +0 -44
  193. package/skills/qk-ui-builder/references/macrostructures/06-conversational-faq.md +0 -50
  194. package/skills/qk-ui-builder/references/macrostructures/07-manifesto.md +0 -51
  195. package/skills/qk-ui-builder/references/macrostructures/08-photographic.md +0 -50
  196. package/skills/qk-ui-builder/references/macrostructures/09-quote-led.md +0 -50
  197. package/skills/qk-ui-builder/references/macrostructures/11-catalogue.md +0 -49
  198. package/skills/qk-ui-builder/references/macrostructures/12-letter.md +0 -49
  199. package/skills/qk-ui-builder/references/macrostructures/13-index-first.md +0 -49
  200. package/skills/qk-ui-builder/references/macrostructures/14-narrative-workflow.md +0 -48
  201. package/skills/qk-ui-builder/references/macrostructures/15-split-studio.md +0 -48
  202. package/skills/qk-ui-builder/references/macrostructures/16-feature-stack.md +0 -51
  203. package/skills/qk-ui-builder/references/macrostructures/17-type-specimen.md +0 -48
  204. package/skills/qk-ui-builder/references/macrostructures/18-portfolio-grid.md +0 -48
  205. package/skills/qk-ui-builder/references/macrostructures/19-map-diagram.md +0 -50
  206. package/skills/qk-ui-builder/references/macrostructures/20-ecosystem-index.md +0 -48
  207. package/skills/qk-ui-builder/references/macrostructures/21-component-playground.md +0 -45
  208. package/skills/qk-ui-builder/references/macrostructures.md +0 -38
  209. package/skills/qk-ui-builder/references/motion.md +0 -95
  210. package/skills/qk-ui-builder/references/responsive.md +0 -115
  211. package/skills/qk-ui-builder/references/slop-test.md +0 -135
  212. package/skills/qk-ui-builder/references/structure.md +0 -280
  213. package/skills/qk-ui-builder/references/themes/atmospheric.md +0 -53
  214. package/skills/qk-ui-builder/references/themes/carnival.md +0 -52
  215. package/skills/qk-ui-builder/references/themes/cobalt.md +0 -52
  216. package/skills/qk-ui-builder/references/themes/editorial.md +0 -52
  217. package/skills/qk-ui-builder/references/themes/garden.md +0 -52
  218. package/skills/qk-ui-builder/references/themes/hum.md +0 -52
  219. package/skills/qk-ui-builder/references/themes/lumen.md +0 -52
  220. package/skills/qk-ui-builder/references/themes/midnight.md +0 -52
  221. package/skills/qk-ui-builder/references/themes/modern-minimal.md +0 -52
  222. package/skills/qk-ui-builder/references/themes/playful.md +0 -52
  223. package/skills/qk-ui-builder/references/themes/specimen.md +0 -52
  224. package/skills/qk-ui-builder/references/themes/terminal.md +0 -52
  225. package/skills/qk-ui-builder/references/typography.md +0 -129
  226. package/skills/qk-ui-system-builder/SKILL.md +0 -222
  227. package/skills/qk-validation-gate/SKILL.md +0 -360
  228. package/skills.json +0 -820
  229. package/specs/contracts/behavior-contract.yaml +0 -40
  230. package/specs/expectations/qk-bug-resolution.yaml +0 -35
  231. package/specs/fixtures/user-payload.json +0 -12
  232. package/specs/regressions/api-integration-null-fields.yaml +0 -19
  233. package/specs/scenarios/fix-login-nullref.yaml +0 -3
  234. package/taste-skill/.claude-plugin/marketplace.json +0 -20
  235. package/taste-skill/.claude-plugin/plugin.json +0 -19
  236. package/taste-skill/.github/FUNDING.yml +0 -1
  237. package/taste-skill/.github/copilot-instructions.md +0 -11
  238. package/taste-skill/CHANGELOG.md +0 -111
  239. package/taste-skill/LICENSE +0 -21
  240. package/taste-skill/README.md +0 -212
  241. package/taste-skill/assets/.gitkeep +0 -0
  242. package/taste-skill/assets/readme-banner.webp +0 -0
  243. package/taste-skill/assets/readme-buttons/btn-agent-skills.webp +0 -0
  244. package/taste-skill/assets/readme-buttons/btn-changelog.webp +0 -0
  245. package/taste-skill/assets/readme-buttons/btn-mit.webp +0 -0
  246. package/taste-skill/assets/readme-buttons/btn-site.webp +0 -0
  247. package/taste-skill/assets/readme-buttons/btn-tools.webp +0 -0
  248. package/taste-skill/assets/readme-cta-tasteskill.svg +0 -5
  249. package/taste-skill/assets/sponsors/animations-dev.webp +0 -0
  250. package/taste-skill/assets/sponsors/emil-animations-dev.webp +0 -0
  251. package/taste-skill/assets/taste-skill-logo.png +0 -0
  252. package/taste-skill/assets/taste-skill-logo.webp +0 -0
  253. package/taste-skill/assets/vercel-oss-program-badge.svg +0 -44
  254. package/taste-skill/examples/floria-bottom.webp +0 -0
  255. package/taste-skill/examples/floria-full.webp +0 -0
  256. package/taste-skill/examples/floria-top.webp +0 -0
  257. package/taste-skill/research/README.md +0 -8
  258. package/taste-skill/research/laziness/README.md +0 -25
  259. package/taste-skill/research/laziness/findings/empirical-results.md +0 -58
  260. package/taste-skill/research/laziness/findings/references.md +0 -20
  261. package/taste-skill/research/laziness/remediation/architectural-patterns.md +0 -55
  262. package/taste-skill/research/laziness/remediation/parameter-tuning.md +0 -44
  263. package/taste-skill/research/laziness/remediation/prompt-engineering.md +0 -52
  264. package/taste-skill/research/laziness/remediation/reference-prompts.md +0 -79
  265. package/taste-skill/research/laziness/root-causes/cognitive-shortcuts.md +0 -23
  266. package/taste-skill/research/laziness/root-causes/output-limits.md +0 -39
  267. package/taste-skill/research/laziness/root-causes/rlhf-and-compute.md +0 -27
  268. package/taste-skill/research/laziness/root-causes/training-data-bias.md +0 -28
  269. package/taste-skill/scripts/build-emil-sponsor-row.mjs +0 -41
  270. package/taste-skill/scripts/convert-readme-assets-webp.mjs +0 -142
  271. package/taste-skill/scripts/process-readme-buttons.mjs +0 -108
  272. package/taste-skill/scripts/process-sponsor-badge.mjs +0 -83
  273. package/taste-skill/skill.sh +0 -25
  274. package/taste-skill/skills/brandkit/SKILL.md +0 -798
  275. package/taste-skill/skills/brutalist-skill/SKILL.md +0 -92
  276. package/taste-skill/skills/gpt-tasteskill/SKILL.md +0 -74
  277. package/taste-skill/skills/image-to-code-skill/SKILL.md +0 -1228
  278. package/taste-skill/skills/imagegen-frontend-mobile/SKILL.md +0 -1465
  279. package/taste-skill/skills/imagegen-frontend-web/SKILL.md +0 -987
  280. package/taste-skill/skills/llms.txt +0 -13
  281. package/taste-skill/skills/minimalist-skill/SKILL.md +0 -85
  282. package/taste-skill/skills/output-skill/SKILL.md +0 -49
  283. package/taste-skill/skills/redesign-skill/SKILL.md +0 -178
  284. package/taste-skill/skills/soft-skill/SKILL.md +0 -98
  285. package/taste-skill/skills/stitch-skill/DESIGN.md +0 -121
  286. package/taste-skill/skills/stitch-skill/SKILL.md +0 -184
  287. package/taste-skill/skills/taste-skill/SKILL.md +0 -1206
  288. package/taste-skill/skills/taste-skill-v1/SKILL.md +0 -226
  289. package/temp_fix.js +0 -61
  290. package/templates/DESIGN.md +0 -38
  291. package/templates/bug-report.md +0 -21
  292. package/templates/design-report.md +0 -21
  293. package/templates/feature-report.md +0 -20
  294. package/templates/review-report.md +0 -21
  295. package/templates/skill-template.md +0 -38
  296. package/tests/behavior-conformance.test.js +0 -154
  297. package/tests/install-script.test.js +0 -38
  298. package/tests/registry.test.js +0 -111
  299. package/update_template.js +0 -28
  300. package/vitest.config.js +0 -11
@@ -1,11 +1,71 @@
1
1
  ---
2
+ # ── Identity ───────────────────────────────────────────────
2
3
  name: qk-orchestrator
3
- category: core
4
- version: 7.5.0
4
+ version: 8.0.0
5
+ status: stable
5
6
  description: "Điều hΖ°α»›ng yΓͺu cαΊ§u cα»§a người dΓΉng Δ‘αΊΏn Δ‘ΓΊng skill vα»›i kα»· luαΊ­t thΓ©p β€” kiểm tra preconditions vΓ  routing table."
6
7
  platforms: [antigravity, claude-code, cursor, windsurf, kilo-code]
7
- execution_mode: deterministic
8
8
 
9
+ # ── V8: Classification ─────────────────────────────────────
10
+ type: orchestrator
11
+
12
+ intent:
13
+ - task-routing
14
+ - skill-selection
15
+ - precondition-checking
16
+
17
+ complexity:
18
+ level: low
19
+ criteria:
20
+ files_affected: "1"
21
+ has_behavior_change: false
22
+ has_external_dependency: false
23
+ has_breaking_change: false
24
+
25
+ triggers:
26
+ - "which skill"
27
+ - "what should i use"
28
+ - "route this"
29
+ - "help me choose"
30
+ - "what skill for"
31
+ - "help"
32
+ - "list skills"
33
+ - "what can you do"
34
+
35
+ selection:
36
+ priority: high
37
+ confidence_threshold: 0.80
38
+
39
+ # ── V8: References ─────────────────────────────────────────
40
+ workflow: research # Uses research workflow to understand request
41
+
42
+ rules:
43
+ - global
44
+
45
+ tools:
46
+ - filesystem
47
+
48
+ related_skills:
49
+ - qk-context-loader
50
+
51
+ knowledge_scope:
52
+ owns:
53
+ - task-routing
54
+ - skill-selection
55
+ - precondition-validation
56
+ references:
57
+ - all-skills # References registry to make decisions
58
+
59
+ # ── V8: Verification ───────────────────────────────────────
60
+ verification:
61
+ required: true
62
+ strategy: review
63
+
64
+ examples: []
65
+ learnings: []
66
+
67
+ # ── V7 Runtime ─────────────────────────────────────────────
68
+ execution_mode: deterministic
9
69
  cost: low
10
70
  latency: fast
11
71
  risk: low
@@ -20,19 +80,12 @@ token_budget:
20
80
  stop_early: true
21
81
 
22
82
  exit_codes: [SUCCESS, BLOCKED, FAILED, PARTIAL]
23
- skill_version: 7.5.0
24
- runtime_version: 1
25
- schema_version: 2
26
83
  ---
27
84
 
28
85
  # qk-orchestrator β€” Request Routing
29
86
 
30
- > **Language rule:** Code, identifiers, file names ? English. Explanations, summaries ? Vietnamese.
87
+ > **Language rule:** Code, identifiers, file names β†’ English. Explanations, summaries β†’ Vietnamese.
31
88
 
32
- skill_version: 7.5.0
33
- runtime_version: 1
34
- schema_version: 2
35
- ---
36
89
 
37
90
  ## Preconditions
38
91
  - [ ] User request is provided (any language)
@@ -24,9 +24,9 @@
24
24
  | design system, token, CSS variable, design tokens | `qk-ui-system-builder` | DESIGN.md check |
25
25
  | project audit, health, tech debt, kiểm toΓ‘n dα»± Γ‘n | `qk-project-health` | direct |
26
26
  | new project, bootstrap, init, khởi tαΊ‘o dα»± Γ‘n | `qk-project-bootstrap` | direct |
27
+ | help, list skills, danh sÑch, trợ giúp | `qk-orchestrator` | direct |
27
28
  | memory, context, recall, lΖ°u ngα»― cαΊ£nh | `qk-project-memory` | direct |
28
29
  | security, policy, authorization, bαΊ£o mαΊ­t | `qk-policy-engine` | β†’ redirect to `qk-access-policy` |
29
- | help, danh sΓ‘ch, list skills, hΖ°α»›ng dαΊ«n | `qk-help` | direct |
30
30
  | consume API, tΓ­ch hợp API backend, gọi API tα»« FE | `qk-fe-api-integration` | `qk-context-loader` first |
31
31
  | UI audit, kiểm tra giao diện, anti-slop check | `qk-ui-audit` | DESIGN.md check |
32
32
 
@@ -0,0 +1,130 @@
1
+ ---
2
+ # ── Identity ───────────────────────────────────────────────
3
+ name: qk-product-specification
4
+ version: 8.1.0
5
+ status: experimental
6
+ description: "Product thinking (Idea β†’ Requirement β†’ Acceptance criteria β†’ Technical spec)."
7
+ platforms: [antigravity, claude-code, cursor, windsurf, kilo-code]
8
+
9
+ # ── V8: Classification ─────────────────────────────────────
10
+ type: capability
11
+
12
+ intent:
13
+ - product-specification
14
+ - requirement-analysis
15
+ - acceptance-criteria
16
+ - technical-spec
17
+
18
+ complexity:
19
+ level: medium
20
+ criteria:
21
+ files_affected: "1-3"
22
+ has_behavior_change: false
23
+ has_external_dependency: false
24
+ has_breaking_change: false
25
+
26
+ triggers:
27
+ - "viαΊΏt spec"
28
+ - "phΓ’n tΓ­ch yΓͺu cαΊ§u"
29
+ - "ý tưởng sản phẩm"
30
+ - "acceptance criteria"
31
+
32
+ # ── V8: References ─────────────────────────────────────────
33
+ workflow: spec-driven-development
34
+
35
+ rules:
36
+ - global
37
+ - coding
38
+
39
+ tools:
40
+ - filesystem
41
+
42
+ related_skills:
43
+ - qk-feature-delivery
44
+
45
+ knowledge_scope:
46
+ domain:
47
+ - product-requirements
48
+ - technical-specifications
49
+ concepts:
50
+ - user-story
51
+ - acceptance-criteria
52
+ references:
53
+ - architecture
54
+
55
+ decision_boundary:
56
+ owns:
57
+ - technical-ready specification
58
+ - acceptance criteria
59
+ does_not_own:
60
+ - market research
61
+ - pricing
62
+ - roadmap
63
+ conflicts_with: []
64
+ delegates_to:
65
+ - qk-feature-delivery
66
+
67
+ # ── V8: Verification ───────────────────────────────────────
68
+ verification:
69
+ required: true
70
+ strategy: feature
71
+
72
+ lifecycle:
73
+ promotion_gate:
74
+ requirements:
75
+ tests:
76
+ minimum_pass_rate: 0.95
77
+ usage:
78
+ minimum_runs: 20
79
+ conflicts:
80
+ zero_boundary_violation: true
81
+ evidence:
82
+ required:
83
+ - evaluation_report
84
+ - usage_history
85
+ - boundary_audit
86
+ demotion_gate:
87
+ triggers:
88
+ - repeated_failure
89
+ - boundary_violation
90
+ - outdated_reference
91
+ action:
92
+ change_status: "stable -> experimental"
93
+
94
+ selection:
95
+ priority: medium
96
+ confidence_threshold: 0.80
97
+
98
+ examples: []
99
+ learnings: []
100
+
101
+ # ── V7 Runtime ─────────────────────────────────────────────
102
+ execution_mode: deterministic
103
+ cost: medium
104
+ latency: medium
105
+ risk: low
106
+ side_effects: read_only
107
+ produces: [report, specification]
108
+ consumes: [user-description]
109
+
110
+ token_budget:
111
+ max_files_read: 3
112
+ max_lines_per_read: 150
113
+ max_shell_commands: 0
114
+ stop_early: false
115
+
116
+ exit_codes: [SUCCESS, BLOCKED, FAILED, PARTIAL]
117
+ ---
118
+
119
+ # qk-product-specification β€” Product Specifier
120
+
121
+ > **Language rule:** Code, identifiers, file names β†’ English. Explanations, summaries β†’ Vietnamese.
122
+
123
+ ## Preconditions
124
+ - [ ] TuΓ’n thα»§ workflow `spec-driven-development`.
125
+
126
+ ## Scope
127
+ - TiαΊΏp nhαΊ­n Idea ban Δ‘αΊ§u tα»« user, thα»±c hiện phΓ’n tΓ­ch yΓͺu cαΊ§u (Requirement Analysis).
128
+ - XÑc định và làm rá ranh giới của tính năng.
129
+ - LΓͺn danh sΓ‘ch Acceptance Criteria (TiΓͺu chΓ­ nghiệm thu).
130
+ - Đóng gΓ³i thΓ nh Technical Spec (Δ‘αΊ·c tαΊ£ kα»Ή thuαΊ­t) để chuαΊ©n bα»‹ cho quΓ‘ trΓ¬nh code (Plan & Implementation).
@@ -1,11 +1,67 @@
1
1
  ---
2
+ # ── Identity ───────────────────────────────────────────────
2
3
  name: qk-production-release
3
- category: devops
4
- version: 7.5.0
4
+ version: 8.0.0
5
+ status: stable
5
6
  description: "ChuαΊ©n bα»‹ release production vα»›i 8-gate checklist bαΊ―t buα»™c β€” khΓ΄ng pass gate = khΓ΄ng deploy."
6
7
  platforms: [antigravity, claude-code, cursor, windsurf, kilo-code]
7
- execution_mode: deterministic
8
8
 
9
+ # ── V8: Classification ─────────────────────────────────────
10
+ type: capability
11
+
12
+ intent:
13
+ - release-management
14
+ - production-deployment
15
+
16
+ complexity:
17
+ level: high
18
+ criteria:
19
+ files_affected: "1-5"
20
+ has_behavior_change: false
21
+ has_external_dependency: true
22
+ has_breaking_change: false
23
+
24
+ triggers:
25
+ - "release production"
26
+ - "deploy production"
27
+ - "chuαΊ©n bα»‹ release"
28
+ - "kiểm tra release"
29
+
30
+ # ── V8: References ─────────────────────────────────────────
31
+ workflow: internal
32
+
33
+ rules:
34
+ - global
35
+ - safety
36
+
37
+ tools:
38
+ - filesystem
39
+ - terminal
40
+
41
+ related_skills:
42
+ - qk-validation-gate
43
+
44
+ knowledge_scope:
45
+ owns:
46
+ - release-checklist
47
+ - deployment-gate
48
+ references:
49
+ - architecture
50
+
51
+ # ── V8: Verification ───────────────────────────────────────
52
+ verification:
53
+ required: true
54
+ strategy: release-safety
55
+
56
+ selection:
57
+ priority: high
58
+ confidence_threshold: 0.85
59
+
60
+ examples: []
61
+ learnings: []
62
+
63
+ # ── V7 Runtime ─────────────────────────────────────────────
64
+ execution_mode: deterministic
9
65
  cost: medium
10
66
  latency: slow
11
67
  risk: high
@@ -20,9 +76,6 @@ token_budget:
20
76
  stop_early: false
21
77
 
22
78
  exit_codes: [SUCCESS, BLOCKED, FAILED, PARTIAL]
23
- skill_version: 7.5.0
24
- runtime_version: 1
25
- schema_version: 2
26
79
  ---
27
80
 
28
81
  # qk-production-release β€” Release Gate
@@ -1,25 +1,85 @@
1
1
  ---
2
+ # ── Identity ───────────────────────────────────────────────
2
3
  name: qk-project-bootstrap
3
- category: fullstack
4
- version: 7.5.0
4
+ version: 8.0.0
5
+ status: stable
5
6
  description: "Khởi tαΊ‘o dα»± Γ‘n mα»›i vα»›i cαΊ₯u trΓΊc chuαΊ©n, linters, DESIGN.md β€” khΓ΄ng bao giờ thiαΊΏu foundation."
6
7
  platforms: [antigravity, claude-code, cursor, windsurf, kilo-code]
8
+
9
+ # ── V8: Classification ─────────────────────────────────────
10
+ type: capability
11
+
12
+ intent:
13
+ - project-initialization
14
+ - setup
15
+
16
+ complexity:
17
+ level: high
18
+ criteria:
19
+ files_affected: "10+"
20
+ has_behavior_change: true
21
+ has_external_dependency: true
22
+ has_breaking_change: false
23
+
24
+ triggers:
25
+ - "khởi tẑo project"
26
+ - "tαΊ‘o dα»± Γ‘n mα»›i"
27
+ - "bootstrap"
28
+ - "setup project"
29
+ - "init repo"
30
+
31
+ # ── V8: References ─────────────────────────────────────────
32
+ workflow: feature-delivery
33
+
34
+ rules:
35
+ - global
36
+ - safety
37
+ - filesystem-boundary
38
+
39
+ tools:
40
+ - filesystem
41
+ - terminal
42
+
43
+ related_skills:
44
+ - qk-engineering-standard
45
+
46
+ knowledge_scope:
47
+ owns:
48
+ - project-structure
49
+ - initial-setup
50
+ references:
51
+ - architecture
52
+
53
+ # ── V8: Verification ───────────────────────────────────────
54
+ verification:
55
+ required: true
56
+ strategy: bootstrap-validation
57
+
58
+ selection:
59
+ priority: medium
60
+ confidence_threshold: 0.85
61
+
62
+ examples: []
63
+ learnings: []
64
+
65
+ # ── V7 Runtime ─────────────────────────────────────────────
7
66
  execution_mode: deterministic
8
67
  cost: high
9
68
  latency: slow
10
69
  risk: low
11
- side_effects: edit_files
70
+ side_effects:
71
+ - create_files
72
+ - create_structure
12
73
  produces: [code, schema, plan]
13
74
  consumes: [user-description]
75
+
14
76
  token_budget:
15
77
  max_files_read: 1
16
78
  max_lines_per_read: 50
17
79
  max_shell_commands: 2
18
80
  stop_early: false
81
+
19
82
  exit_codes: [SUCCESS, BLOCKED, FAILED, PARTIAL]
20
- skill_version: 7.5.0
21
- runtime_version: 1
22
- schema_version: 2
23
83
  ---
24
84
 
25
85
  # qk-project-bootstrap β€” Project Foundation Builder
@@ -1,9 +1,67 @@
1
1
  ---
2
+ # ── Identity ───────────────────────────────────────────────
2
3
  name: qk-project-health
3
- category: qa
4
- version: 7.5.0
4
+ version: 8.0.0
5
+ status: stable
5
6
  description: "Kiểm toΓ‘n toΓ n diện Code Smells, Tech Debt, Architecture β€” health score 0–100 vα»›i actionable roadmap."
6
7
  platforms: [antigravity, claude-code, cursor, windsurf, kilo-code]
8
+
9
+ # ── V8: Classification ─────────────────────────────────────
10
+ type: utility
11
+
12
+ intent:
13
+ - project-audit
14
+ - codebase-health
15
+
16
+ complexity:
17
+ level: high
18
+ criteria:
19
+ files_affected: "10+"
20
+ has_behavior_change: false
21
+ has_external_dependency: false
22
+ has_breaking_change: false
23
+
24
+ triggers:
25
+ - "audit code"
26
+ - "check health"
27
+ - "tech debt"
28
+ - "code smell"
29
+ - "kiểm toΓ‘n"
30
+
31
+ # ── V8: References ─────────────────────────────────────────
32
+ workflow: code-review
33
+
34
+ rules:
35
+ - global
36
+ - coding
37
+
38
+ tools:
39
+ - filesystem
40
+ - terminal
41
+
42
+ related_skills:
43
+ - qk-engineering-standard
44
+
45
+ knowledge_scope:
46
+ owns:
47
+ - tech-debt
48
+ - codebase-health
49
+ references:
50
+ - architecture
51
+
52
+ # ── V8: Verification ───────────────────────────────────────
53
+ verification:
54
+ required: true
55
+ strategy: review
56
+
57
+ selection:
58
+ priority: medium
59
+ confidence_threshold: 0.75
60
+
61
+ examples: []
62
+ learnings: []
63
+
64
+ # ── V7 Runtime ─────────────────────────────────────────────
7
65
  execution_mode: deterministic
8
66
  cost: high
9
67
  latency: slow
@@ -11,20 +69,19 @@ risk: low
11
69
  side_effects: read_only
12
70
  produces: [report]
13
71
  consumes: [source-code]
72
+
14
73
  token_budget:
15
74
  max_files_read: 5
16
75
  max_lines_per_read: 100
17
76
  max_shell_commands: 1
18
77
  stop_early: true
78
+
19
79
  exit_codes: [SUCCESS, BLOCKED, FAILED, PARTIAL]
20
- skill_version: 7.5.0
21
- runtime_version: 1
22
- schema_version: 2
23
80
  ---
24
81
 
25
82
  # qk-project-health β€” Complete Codebase Audit
26
83
 
27
- > **Language rule:** Code, identifiers, file names ? English. Explanations, summaries ? Vietnamese.
84
+ > **Language rule:** Code, identifiers, file names β†’ English. Explanations, summaries β†’ Vietnamese.
28
85
 
29
86
  ---
30
87
 
@@ -1,9 +1,67 @@
1
1
  ---
2
+ # ── Identity ───────────────────────────────────────────────
2
3
  name: qk-project-memory
3
- category: core
4
- version: 7.5.0
4
+ version: 8.0.0
5
+ status: stable
5
6
  description: "LΖ°u trα»― vΓ  truy xuαΊ₯t ngα»― cαΊ£nh dα»± Γ‘n dΓ i hαΊ‘n β€” chỉ lΖ°u fact Δ‘Γ£ xΓ‘c minh, khΓ΄ng lΖ°u giαΊ£ thuyαΊΏt."
6
7
  platforms: [antigravity, claude-code, cursor, windsurf, kilo-code]
8
+
9
+ # ── V8: Classification ─────────────────────────────────────
10
+ type: utility
11
+
12
+ intent:
13
+ - context-management
14
+ - knowledge-retrieval
15
+
16
+ complexity:
17
+ level: medium
18
+ criteria:
19
+ files_affected: "1-2"
20
+ has_behavior_change: false
21
+ has_external_dependency: false
22
+ has_breaking_change: false
23
+
24
+ triggers:
25
+ - "lΖ°u context"
26
+ - "nhα»› lαΊ‘i"
27
+ - "project memory"
28
+ - "lΖ°u vΓ o bα»™ nhα»›"
29
+ - "tìm lẑi fact"
30
+
31
+ # ── V8: References ─────────────────────────────────────────
32
+ workflow: documentation
33
+
34
+ rules:
35
+ - global
36
+ - coding
37
+
38
+ tools:
39
+ - filesystem
40
+ - terminal
41
+
42
+ related_skills:
43
+ - qk-engineering-standard
44
+
45
+ knowledge_scope:
46
+ owns:
47
+ - project-facts
48
+ - verified-context
49
+ references:
50
+ - architecture
51
+
52
+ # ── V8: Verification ───────────────────────────────────────
53
+ verification:
54
+ required: true
55
+ strategy: review
56
+
57
+ selection:
58
+ priority: medium
59
+ confidence_threshold: 0.75
60
+
61
+ examples: []
62
+ learnings: []
63
+
64
+ # ── V7 Runtime ─────────────────────────────────────────────
7
65
  execution_mode: deterministic
8
66
  cost: low
9
67
  latency: fast
@@ -11,20 +69,19 @@ risk: low
11
69
  side_effects: edit_files
12
70
  produces: [plan]
13
71
  consumes: [source-code, context-graph]
72
+
14
73
  token_budget:
15
74
  max_files_read: 2
16
75
  max_lines_per_read: 100
17
76
  max_shell_commands: 0
18
77
  stop_early: true
78
+
19
79
  exit_codes: [SUCCESS, BLOCKED, FAILED, PARTIAL]
20
- skill_version: 7.5.0
21
- runtime_version: 1
22
- schema_version: 2
23
80
  ---
24
81
 
25
82
  # qk-project-memory β€” Long-Term Context Store
26
83
 
27
- > **Language rule:** Code, identifiers, file names ? English. Explanations, summaries ? Vietnamese.
84
+ > **Language rule:** Code, identifiers, file names β†’ English. Explanations, summaries β†’ Vietnamese.
28
85
 
29
86
  ---
30
87