ai-developer-skill-os 8.2.0 → 8.3.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 (79) hide show
  1. package/.agents/LICENSE +21 -21
  2. package/.agents/README.md +90 -90
  3. package/.agents/docs/CHI_TIET_SKILLS.md +125 -125
  4. package/.agents/docs/MIGRATION-CLEANUP-V8.1.3.md +36 -36
  5. package/.agents/docs/MIGRATION-STATUS.md +35 -35
  6. package/.agents/docs/MIGRATION-V8.md +10 -10
  7. package/.agents/docs/V8-CERTIFICATION.md +27 -27
  8. package/.agents/docs/decisions/ADR-001-v8-migration.md +58 -58
  9. package/.agents/docs/decisions/ADR-002-workflow-separation.md +50 -50
  10. package/.agents/docs/decisions/ADR-003-registry-generated.md +54 -54
  11. package/.agents/docs/decisions/ADR-008-skill-boundary-review.md +27 -27
  12. package/.agents/registry/graph.json +4 -8
  13. package/.agents/registry/index.yaml +3 -4
  14. package/.agents/registry/skills-index.yml +525 -525
  15. package/.agents/rules/coding.md +10 -0
  16. package/.agents/rules/command-safety.md +37 -14
  17. package/.agents/rules/priorities.yml +13 -2
  18. package/.agents/rules/security.md +47 -7
  19. package/.agents/rules/skill-quality.md +32 -8
  20. package/.agents/skills/_template/SKILL.md +133 -132
  21. package/.agents/skills/_template/capability.yaml +20 -20
  22. package/.agents/skills/_template/evals/scorecard.yaml +19 -19
  23. package/.agents/skills/qk-access-policy/SKILL.md +4 -1
  24. package/.agents/skills/qk-agent-observability/SKILL.md +111 -0
  25. package/.agents/skills/qk-agent-observability/references/scorecard.yaml +80 -0
  26. package/.agents/skills/qk-ai-builder/SKILL.md +74 -5
  27. package/.agents/skills/qk-api-lifecycle/SKILL.md +4 -2
  28. package/.agents/skills/qk-bug-resolution/SKILL.md +3 -21
  29. package/.agents/skills/qk-code-review/SKILL.md +188 -189
  30. package/.agents/skills/qk-context-loader/SKILL.md +3 -47
  31. package/.agents/skills/qk-data-lifecycle/SKILL.md +7 -2
  32. package/.agents/skills/qk-db-optimizer/SKILL.md +3 -2
  33. package/.agents/skills/qk-design-system-engineering/SKILL.md +235 -112
  34. package/.agents/skills/qk-devops-platform/SKILL.md +241 -117
  35. package/.agents/skills/qk-docs/SKILL.md +3 -1
  36. package/.agents/skills/qk-engineering-standard/SKILL.md +4 -75
  37. package/.agents/skills/qk-engineering-standard/references/anti-patterns.md +121 -0
  38. package/.agents/skills/qk-engineering-standard/rules/frontend.md +1 -1
  39. package/.agents/skills/qk-fe-api-integration/SKILL.md +13 -32
  40. package/.agents/skills/qk-feature-delivery/SKILL.md +54 -202
  41. package/.agents/skills/qk-frontend-architecture/SKILL.md +258 -134
  42. package/.agents/skills/qk-help/SKILL.md +21 -159
  43. package/.agents/skills/qk-orchestrator/SKILL.md +2 -78
  44. package/.agents/skills/qk-orchestrator/references/routing-table.md +15 -3
  45. package/.agents/skills/qk-product-specification/SKILL.md +253 -130
  46. package/.agents/skills/qk-production-release/SKILL.md +32 -67
  47. package/.agents/skills/qk-project-bootstrap/SKILL.md +59 -8
  48. package/.agents/skills/qk-project-health/SKILL.md +4 -2
  49. package/.agents/skills/qk-project-memory/SKILL.md +3 -1
  50. package/.agents/skills/qk-security-audit/SKILL.md +259 -135
  51. package/.agents/skills/qk-system-evolution/SKILL.md +18 -68
  52. package/.agents/skills/qk-test-engineering/SKILL.md +262 -139
  53. package/.agents/skills/qk-ui-audit/SKILL.md +16 -89
  54. package/.agents/skills/qk-ui-audit/references/anti-slop-checklist.md +2 -2
  55. package/.agents/skills/qk-ui-builder/SKILL.md +482 -509
  56. package/.agents/skills/qk-ui-builder/references/component-cookbook.md +455 -1191
  57. package/.agents/skills/qk-ui-system-builder/SKILL.md +1 -5
  58. package/.agents/skills/qk-validation-gate/SKILL.md +0 -74
  59. package/.agents/skills/qk-web-quality-gate/SKILL.md +232 -114
  60. package/.agents/workflows/_schema.yml +146 -109
  61. package/.agents/workflows/bug-resolution.yml +121 -101
  62. package/.agents/workflows/code-review.yml +93 -77
  63. package/.agents/workflows/documentation.yml +90 -75
  64. package/.agents/workflows/feature-delivery.yml +120 -103
  65. package/.agents/workflows/refactor.yml +99 -81
  66. package/.agents/workflows/research.yml +75 -60
  67. package/.agents/workflows/security-audit.yml +115 -72
  68. package/.agents/workflows/skill-evolution.yml +97 -65
  69. package/.agents/workflows/spec-driven-development.yml +87 -57
  70. package/CHANGELOG.md +10 -0
  71. package/README.md +90 -90
  72. package/bin/install.js +330 -180
  73. package/package.json +2 -2
  74. package/.agents/CHANGELOG.md +0 -131
  75. package/.agents/learnings/draft/README.md +0 -37
  76. package/.agents/reports/RELEASE-CHECKLIST.md +0 -29
  77. package/.agents/reports/architecture-audit.md +0 -13
  78. package/.agents/reports/graph-health.md +0 -20
  79. package/.agents/reports/skill-audit.md +0 -215
@@ -1,10 +1,10 @@
1
- # V8 Migration Protocol
2
-
3
- Every migrated skill MUST meet the following criteria before being marked as `status: stable`:
4
-
5
- - [ ] **Preserve original capability**: Do not alter the core instructions and behavior of the skill unless fixing bugs.
6
- - [ ] **Add V8 frontmatter**: Update the frontmatter strictly according to `_template/SKILL.md`.
7
- - [ ] **Map workflow**: Ensure `workflow` references an existing V8 workflow (e.g. `feature-delivery`, `bug-resolution`, `code-review`).
8
- - [ ] **Define verification**: Include the `verification` block with a valid `strategy`.
9
- - [ ] **Define selection**: Include the `selection` block with `priority` and appropriate `confidence_threshold`.
10
- - [ ] **Generate registry successfully**: Must pass schema validation in `node tooling/validate-skills.js` and `node tooling/generate-registry.js` without warnings.
1
+ # V8 Migration Protocol
2
+
3
+ Every migrated skill MUST meet the following criteria before being marked as `status: stable`:
4
+
5
+ - [ ] **Preserve original capability**: Do not alter the core instructions and behavior of the skill unless fixing bugs.
6
+ - [ ] **Add V8 frontmatter**: Update the frontmatter strictly according to `_template/SKILL.md`.
7
+ - [ ] **Map workflow**: Ensure `workflow` references an existing V8 workflow (e.g. `feature-delivery`, `bug-resolution`, `code-review`).
8
+ - [ ] **Define verification**: Include the `verification` block with a valid `strategy`.
9
+ - [ ] **Define selection**: Include the `selection` block with `priority` and appropriate `confidence_threshold`.
10
+ - [ ] **Generate registry successfully**: Must pass schema validation in `node tooling/validate-skills.js` and `node tooling/generate-registry.js` without warnings.
@@ -1,27 +1,27 @@
1
- # V8 Certification
2
-
3
- V8 preserves validated V7 knowledge while introducing structured retrieval, workflow reuse, verification contracts, and lifecycle management.
4
-
5
- Skills:
6
- 22/22 stable
7
-
8
- Registry:
9
- generated
10
-
11
- Schema:
12
- validated
13
-
14
- Legacy:
15
- 0
16
-
17
- Retrieval tests:
18
- PASS
19
-
20
- Workflow tests:
21
- PASS
22
-
23
- Ambiguity:
24
- PASS
25
-
26
- Migration:
27
- completed
1
+ # V8 Certification
2
+
3
+ V8 preserves validated V7 knowledge while introducing structured retrieval, workflow reuse, verification contracts, and lifecycle management.
4
+
5
+ Skills:
6
+ 22/22 stable
7
+
8
+ Registry:
9
+ generated
10
+
11
+ Schema:
12
+ validated
13
+
14
+ Legacy:
15
+ 0
16
+
17
+ Retrieval tests:
18
+ PASS
19
+
20
+ Workflow tests:
21
+ PASS
22
+
23
+ Ambiguity:
24
+ PASS
25
+
26
+ Migration:
27
+ completed
@@ -1,58 +1,58 @@
1
- # ADR-001: V8 Architecture Migration Strategy
2
-
3
- **Date:** 2026-07
4
- **Status:** Accepted
5
- **Deciders:** Quang Khánh
6
-
7
- ---
8
-
9
- ## Context
10
-
11
- V7 (7.5.1) had 22 skills, each a monolithic SKILL.md containing:
12
- - Routing logic
13
- - Execution workflow
14
- - Verification steps
15
- - Rules and policies
16
-
17
- This made skills hard to reuse, workflows inconsistent across skills, and AI agents often confused about which skill to choose.
18
-
19
- ---
20
-
21
- ## Decision
22
-
23
- Migrate to V8 **Agent Knowledge System** using **Structured Monolith** approach:
24
-
25
- 1. **Keep skills** — don't split SKILL.md into multiple files
26
- 2. **Add schema** — new frontmatter fields (intent, triggers, workflow ref, verification)
27
- 3. **Extract workflows** — move execution pipelines to shared `workflows/*.yml`
28
- 4. **Extract rules** — move global policies to `rules/*.md`
29
- 5. **Add registry** — generated `registry/skills-index.yml` for AI retrieval
30
-
31
- ---
32
-
33
- ## Rationale
34
-
35
- **Why not split SKILL.md into separate files?**
36
- - Migration cost too high (22 skills × 4 extractions = 88 operations)
37
- - Risk of losing embedded knowledge in the split
38
- - Structured Monolith achieves the same retrieval benefit via references
39
-
40
- **Why pilot 5 skills first?**
41
- - Schema may need adjustment based on real agent behavior
42
- - Safer to validate on 5 before committing to 22
43
-
44
- **Why keep git history instead of `archive/` folder?**
45
- - V7.5.1 tagged at git → complete history available
46
- - Archive folder in repo creates noise for AI agents
47
- - Clean break is cleaner than carrying historical artifacts
48
-
49
- ---
50
-
51
- ## Consequences
52
-
53
- - ✅ Workflows are now reusable (shared across skills)
54
- - ✅ AI retrieval is faster (registry index)
55
- - ✅ Rules are explicit and non-duplicated
56
- - ✅ Verification is mandatory and standardized
57
- - ⚠️ New schema requires migration of all 22 skills (3 weeks)
58
- - ⚠️ `skills.json` is now generated, not authoritative
1
+ # ADR-001: V8 Architecture Migration Strategy
2
+
3
+ **Date:** 2026-07
4
+ **Status:** Accepted
5
+ **Deciders:** Quang Khánh
6
+
7
+ ---
8
+
9
+ ## Context
10
+
11
+ V7 (7.5.1) had 22 skills, each a monolithic SKILL.md containing:
12
+ - Routing logic
13
+ - Execution workflow
14
+ - Verification steps
15
+ - Rules and policies
16
+
17
+ This made skills hard to reuse, workflows inconsistent across skills, and AI agents often confused about which skill to choose.
18
+
19
+ ---
20
+
21
+ ## Decision
22
+
23
+ Migrate to V8 **Agent Knowledge System** using **Structured Monolith** approach:
24
+
25
+ 1. **Keep skills** — don't split SKILL.md into multiple files
26
+ 2. **Add schema** — new frontmatter fields (intent, triggers, workflow ref, verification)
27
+ 3. **Extract workflows** — move execution pipelines to shared `workflows/*.yml`
28
+ 4. **Extract rules** — move global policies to `rules/*.md`
29
+ 5. **Add registry** — generated `registry/skills-index.yml` for AI retrieval
30
+
31
+ ---
32
+
33
+ ## Rationale
34
+
35
+ **Why not split SKILL.md into separate files?**
36
+ - Migration cost too high (22 skills × 4 extractions = 88 operations)
37
+ - Risk of losing embedded knowledge in the split
38
+ - Structured Monolith achieves the same retrieval benefit via references
39
+
40
+ **Why pilot 5 skills first?**
41
+ - Schema may need adjustment based on real agent behavior
42
+ - Safer to validate on 5 before committing to 22
43
+
44
+ **Why keep git history instead of `archive/` folder?**
45
+ - V7.5.1 tagged at git → complete history available
46
+ - Archive folder in repo creates noise for AI agents
47
+ - Clean break is cleaner than carrying historical artifacts
48
+
49
+ ---
50
+
51
+ ## Consequences
52
+
53
+ - ✅ Workflows are now reusable (shared across skills)
54
+ - ✅ AI retrieval is faster (registry index)
55
+ - ✅ Rules are explicit and non-duplicated
56
+ - ✅ Verification is mandatory and standardized
57
+ - ⚠️ New schema requires migration of all 22 skills (3 weeks)
58
+ - ⚠️ `skills.json` is now generated, not authoritative
@@ -1,50 +1,50 @@
1
- # ADR-002: Workflow Separation from Skills
2
-
3
- **Date:** 2026-07
4
- **Status:** Accepted
5
-
6
- ---
7
-
8
- ## Context
9
-
10
- In V7, each SKILL.md contained its own workflow embedded in the body. This meant:
11
- - Workflow for bug-fixing existed in `qk-bug-resolution/SKILL.md`
12
- - Similar steps were duplicated across multiple skills
13
- - No way to reuse or compose workflows
14
-
15
- ---
16
-
17
- ## Decision
18
-
19
- Extract workflows into dedicated `workflows/*.yml` files. Skills reference workflows by name:
20
-
21
- ```yaml
22
- # In SKILL.md frontmatter:
23
- workflow: bug-resolution # → workflows/bug-resolution.yml
24
- ```
25
-
26
- Each workflow step MUST define `inputs` and `outputs` (not just `actions`) so agents understand what a step achieves, not just how to do it.
27
-
28
- ---
29
-
30
- ## Rationale
31
-
32
- **Why YAML instead of Markdown?**
33
- - Machine-readable: easier for agents to parse step inputs/outputs
34
- - Structured: enforces schema compliance
35
- - If found to be too rigid, can switch to Markdown+frontmatter without breaking skill references
36
-
37
- **Why inputs/outputs per step?**
38
- - Agents need to know WHAT each step achieves, not just HOW
39
- - Enables future: step skipping based on already-available outputs
40
- - Better debugging: "step X failed because output Y was not produced"
41
-
42
- ---
43
-
44
- ## Consequences
45
-
46
- - ✅ Workflows are reusable across skills
47
- - ✅ Each step has clear contract (inputs → outputs)
48
- - ✅ Easier to add new skills that reuse existing workflows
49
- - ⚠️ YAML can be verbose — acceptable tradeoff for clarity
50
- - ⚠️ If workflow changes, all referencing skills remain valid (they only reference by name)
1
+ # ADR-002: Workflow Separation from Skills
2
+
3
+ **Date:** 2026-07
4
+ **Status:** Accepted
5
+
6
+ ---
7
+
8
+ ## Context
9
+
10
+ In V7, each SKILL.md contained its own workflow embedded in the body. This meant:
11
+ - Workflow for bug-fixing existed in `qk-bug-resolution/SKILL.md`
12
+ - Similar steps were duplicated across multiple skills
13
+ - No way to reuse or compose workflows
14
+
15
+ ---
16
+
17
+ ## Decision
18
+
19
+ Extract workflows into dedicated `workflows/*.yml` files. Skills reference workflows by name:
20
+
21
+ ```yaml
22
+ # In SKILL.md frontmatter:
23
+ workflow: bug-resolution # → workflows/bug-resolution.yml
24
+ ```
25
+
26
+ Each workflow step MUST define `inputs` and `outputs` (not just `actions`) so agents understand what a step achieves, not just how to do it.
27
+
28
+ ---
29
+
30
+ ## Rationale
31
+
32
+ **Why YAML instead of Markdown?**
33
+ - Machine-readable: easier for agents to parse step inputs/outputs
34
+ - Structured: enforces schema compliance
35
+ - If found to be too rigid, can switch to Markdown+frontmatter without breaking skill references
36
+
37
+ **Why inputs/outputs per step?**
38
+ - Agents need to know WHAT each step achieves, not just HOW
39
+ - Enables future: step skipping based on already-available outputs
40
+ - Better debugging: "step X failed because output Y was not produced"
41
+
42
+ ---
43
+
44
+ ## Consequences
45
+
46
+ - ✅ Workflows are reusable across skills
47
+ - ✅ Each step has clear contract (inputs → outputs)
48
+ - ✅ Easier to add new skills that reuse existing workflows
49
+ - ⚠️ YAML can be verbose — acceptable tradeoff for clarity
50
+ - ⚠️ If workflow changes, all referencing skills remain valid (they only reference by name)
@@ -1,54 +1,54 @@
1
- # ADR-003: Registry as Generated Artifact
2
-
3
- **Date:** 2026-07
4
- **Status:** Accepted
5
-
6
- ---
7
-
8
- ## Context
9
-
10
- V7 had `skills.json` as the primary manifest — manually maintained, often drifting from actual SKILL.md content. This created two sources of truth.
11
-
12
- V8 needs a retrieval index for AI agents to find the right skill without reading all 22 SKILL.md files.
13
-
14
- ---
15
-
16
- ## Decision
17
-
18
- `registry/skills-index.yml` is a **generated file**. It is produced by `tooling/generate-registry.js` by reading all `SKILL.md` frontmatter.
19
-
20
- `SKILL.md` is the single source of truth. The registry is a derivative.
21
-
22
- ```
23
- SKILL.md (source of truth)
24
-
25
- tooling/generate-registry.js
26
-
27
- registry/skills-index.yml (DO NOT EDIT MANUALLY)
28
- ```
29
-
30
- `skills.json` is kept as a compatibility manifest for platforms that expect it (e.g., Antigravity v7 convention). It is also generated, not manually maintained.
31
-
32
- ---
33
-
34
- ## Rationale
35
-
36
- **Why not edit the registry manually?**
37
- - Two sources of truth always drift
38
- - Triggers, intent, complexity are already defined in SKILL.md
39
- - Generator can be run as a pre-commit hook or on demand
40
-
41
- **Why keep skills.json?**
42
- - Antigravity and some platforms discover skills via `skills.json`
43
- - Backward compatibility for v7 skill consumers
44
- - It's generated, so no maintenance burden
45
-
46
- ---
47
-
48
- ## Consequences
49
-
50
- - ✅ Single source of truth: SKILL.md
51
- - ✅ No drift between skill and registry
52
- - ✅ Registry update is automatic when skills are updated
53
- - ⚠️ Requires running generator after any SKILL.md change
54
- - ⚠️ If generator is not run, registry may be stale (mitigated by pre-commit hook)
1
+ # ADR-003: Registry as Generated Artifact
2
+
3
+ **Date:** 2026-07
4
+ **Status:** Accepted
5
+
6
+ ---
7
+
8
+ ## Context
9
+
10
+ V7 had `skills.json` as the primary manifest — manually maintained, often drifting from actual SKILL.md content. This created two sources of truth.
11
+
12
+ V8 needs a retrieval index for AI agents to find the right skill without reading all 22 SKILL.md files.
13
+
14
+ ---
15
+
16
+ ## Decision
17
+
18
+ `registry/skills-index.yml` is a **generated file**. It is produced by `tooling/generate-registry.js` by reading all `SKILL.md` frontmatter.
19
+
20
+ `SKILL.md` is the single source of truth. The registry is a derivative.
21
+
22
+ ```
23
+ SKILL.md (source of truth)
24
+
25
+ tooling/generate-registry.js
26
+
27
+ registry/skills-index.yml (DO NOT EDIT MANUALLY)
28
+ ```
29
+
30
+ `skills.json` is kept as a compatibility manifest for platforms that expect it (e.g., Antigravity v7 convention). It is also generated, not manually maintained.
31
+
32
+ ---
33
+
34
+ ## Rationale
35
+
36
+ **Why not edit the registry manually?**
37
+ - Two sources of truth always drift
38
+ - Triggers, intent, complexity are already defined in SKILL.md
39
+ - Generator can be run as a pre-commit hook or on demand
40
+
41
+ **Why keep skills.json?**
42
+ - Antigravity and some platforms discover skills via `skills.json`
43
+ - Backward compatibility for v7 skill consumers
44
+ - It's generated, so no maintenance burden
45
+
46
+ ---
47
+
48
+ ## Consequences
49
+
50
+ - ✅ Single source of truth: SKILL.md
51
+ - ✅ No drift between skill and registry
52
+ - ✅ Registry update is automatic when skills are updated
53
+ - ⚠️ Requires running generator after any SKILL.md change
54
+ - ⚠️ If generator is not run, registry may be stale (mitigated by pre-commit hook)
@@ -1,27 +1,27 @@
1
- # ADR 008: Skill Boundary Review (V8.1.3)
2
-
3
- ## Tiêu đề
4
- Định hướng tương lai cho ranh giới của `qk-validation-gate` và `qk-ai-builder`.
5
-
6
- ## Bối cảnh
7
- Trong quá trình hoàn thiện Agent Engineering OS (V8.1.3), quá trình kiểm toán phát hiện rằng một số skill ban đầu có phạm vi hoạt động (scope) quá rộng hoặc chưa phân vai rõ ràng, dễ dẫn đến conflict. Tuy nhiên, để không làm vỡ kiến trúc (scope creep) trong giai đoạn chốt Control Plane, chúng ta quyết định giữ nguyên nhưng ghi chú định hướng cho V8.2.
8
-
9
- ## Quyết định
10
-
11
- ### 1. Về `qk-validation-gate`
12
- - **Hiện trạng:** Đang đóng vai trò validation coordinator.
13
- - **Định hướng (V8.2):** Sẽ được định hình rõ thành `release decision orchestrator`.
14
- - **Ranh giới tương lai:** Không trực tiếp chạy test, không trực tiếp scan security, không audit quality. Nhiệm vụ của nó là tổng hợp kết quả từ `qk-test-engineering`, `qk-security-audit`, và `qk-web-quality-gate` để ra quyết định cuối cùng (gate decision).
15
-
16
- ### 2. Về `qk-ai-builder`
17
- - **Hiện trạng:** Đang quá rộng (gồm cả frontend AI apps, general AI coding, prompt writing...).
18
- - **Định hướng (V8.2):** Đổi tên (rename semantic) thành `qk-agent-platform-engineering`.
19
- - **Ranh giới tương lai:**
20
- - **Owns:** agent architecture, MCP integration, skill generation, agent runtime patterns.
21
- - **Does not own:** frontend AI apps, general AI coding, prompt writing.
22
-
23
- ## Trạng thái
24
- Đề xuất được chấp nhận (Deferred to V8.2).
25
-
26
- ## Hệ quả
27
- Ngăn chặn các kỹ năng này bị phình to trong quá trình triển khai thực tế. Chuẩn bị sẵn sàng cấu trúc cho giai đoạn V8.2 (Self-Improving Agent).
1
+ # ADR 008: Skill Boundary Review (V8.1.3)
2
+
3
+ ## Tiêu đề
4
+ Định hướng tương lai cho ranh giới của `qk-validation-gate` và `qk-ai-builder`.
5
+
6
+ ## Bối cảnh
7
+ Trong quá trình hoàn thiện Agent Engineering OS (V8.1.3), quá trình kiểm toán phát hiện rằng một số skill ban đầu có phạm vi hoạt động (scope) quá rộng hoặc chưa phân vai rõ ràng, dễ dẫn đến conflict. Tuy nhiên, để không làm vỡ kiến trúc (scope creep) trong giai đoạn chốt Control Plane, chúng ta quyết định giữ nguyên nhưng ghi chú định hướng cho V8.2.
8
+
9
+ ## Quyết định
10
+
11
+ ### 1. Về `qk-validation-gate`
12
+ - **Hiện trạng:** Đang đóng vai trò validation coordinator.
13
+ - **Định hướng (V8.2):** Sẽ được định hình rõ thành `release decision orchestrator`.
14
+ - **Ranh giới tương lai:** Không trực tiếp chạy test, không trực tiếp scan security, không audit quality. Nhiệm vụ của nó là tổng hợp kết quả từ `qk-test-engineering`, `qk-security-audit`, và `qk-web-quality-gate` để ra quyết định cuối cùng (gate decision).
15
+
16
+ ### 2. Về `qk-ai-builder`
17
+ - **Hiện trạng:** Đang quá rộng (gồm cả frontend AI apps, general AI coding, prompt writing...).
18
+ - **Định hướng (V8.2):** Đổi tên (rename semantic) thành `qk-agent-platform-engineering`.
19
+ - **Ranh giới tương lai:**
20
+ - **Owns:** agent architecture, MCP integration, skill generation, agent runtime patterns.
21
+ - **Does not own:** frontend AI apps, general AI coding, prompt writing.
22
+
23
+ ## Trạng thái
24
+ Đề xuất được chấp nhận (Deferred to V8.2).
25
+
26
+ ## Hệ quả
27
+ Ngăn chặn các kỹ năng này bị phình to trong quá trình triển khai thực tế. Chuẩn bị sẵn sàng cấu trúc cho giai đoạn V8.2 (Self-Improving Agent).
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schema_version": 1,
3
3
  "manifest_version": "8.2",
4
- "generated_at": "2026-07-27T02:25:53.340Z",
4
+ "generated_at": "2026-07-29T04:03:48.864Z",
5
5
  "nodes": {
6
6
  "qk-access-policy": {
7
7
  "path": ".agents/skills/qk-access-policy",
@@ -361,14 +361,12 @@
361
361
  },
362
362
  "qk-ui-builder": {
363
363
  "path": ".agents/skills/qk-ui-builder",
364
- "version": "8.0.0",
364
+ "version": "8.2.0",
365
365
  "tags": [
366
366
  "ui",
367
367
  "builder"
368
368
  ],
369
- "dependencies": [
370
- "feature-delivery"
371
- ],
369
+ "dependencies": [],
372
370
  "dependents": [
373
371
  "qk-frontend-architecture"
374
372
  ],
@@ -506,9 +504,7 @@
506
504
  "qk-ui-audit": [
507
505
  "code-review"
508
506
  ],
509
- "qk-ui-builder": [
510
- "feature-delivery"
511
- ],
507
+ "qk-ui-builder": [],
512
508
  "qk-ui-system-builder": [
513
509
  "feature-delivery"
514
510
  ],
@@ -2,7 +2,7 @@
2
2
  # DO NOT EDIT MANUALLY. THIS IS A GENERATED RUNTIME ARTIFACT.
3
3
  schema_version: 1
4
4
  manifest_version: '8.2'
5
- generated_at: '2026-07-27T02:25:53.341Z'
5
+ generated_at: '2026-07-29T04:03:48.865Z'
6
6
  capabilities:
7
7
  qk-access-policy:
8
8
  path: .agents/skills/qk-access-policy
@@ -225,12 +225,11 @@ capabilities:
225
225
  - code-review
226
226
  qk-ui-builder:
227
227
  path: .agents/skills/qk-ui-builder
228
- version: 8.0.0
228
+ version: 8.2.0
229
229
  tags:
230
230
  - ui
231
231
  - builder
232
- dependencies:
233
- - feature-delivery
232
+ dependencies: []
234
233
  qk-ui-system-builder:
235
234
  path: .agents/skills/qk-ui-system-builder
236
235
  version: 8.0.0