ai-developer-skill-os 9.1.2 → 9.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.
- package/.agents/AGENTS.md +139 -42
- package/.agents/DEV_PROFILE.md +95 -0
- package/.agents/registry/capability-graph.yml +171 -334
- package/.agents/registry/graph.json +37 -19
- package/.agents/registry/index.yaml +59 -13
- package/.agents/registry/skills-index.yml +204 -447
- package/.agents/rules/coding.md +23 -0
- package/.agents/rules/global.md +44 -30
- package/.agents/skills/_template/SKILL.md +2 -377
- package/.agents/skills/qk-access-policy/SKILL.md +98 -473
- package/.agents/skills/qk-agent-observability/SKILL.md +3 -439
- package/.agents/skills/qk-ai-builder/SKILL.md +132 -565
- package/.agents/skills/qk-api-consumer/SKILL.md +256 -0
- package/.agents/skills/qk-api-consumer/capability.yaml +21 -0
- package/.agents/skills/qk-api-consumer/evals/scorecard.yaml +29 -0
- package/.agents/skills/qk-api-lifecycle/SKILL.md +133 -456
- package/.agents/skills/qk-bug-resolution/SKILL.md +128 -561
- package/.agents/skills/qk-code-review/SKILL.md +142 -420
- package/.agents/skills/qk-context-loader/SKILL.md +99 -471
- package/.agents/skills/qk-data-engineer/SKILL.md +119 -340
- package/.agents/skills/qk-data-lifecycle/SKILL.md +89 -488
- package/.agents/skills/qk-db-optimizer/SKILL.md +102 -488
- package/.agents/skills/qk-design-system-engineering/SKILL.md +76 -461
- package/.agents/skills/qk-devops-platform/SKILL.md +77 -463
- package/.agents/skills/qk-docs/SKILL.md +88 -494
- package/.agents/skills/qk-engineering-standard/SKILL.md +4 -588
- package/.agents/skills/qk-fe-api-integration/SKILL.md +343 -343
- package/.agents/skills/qk-fe-api-integration/evals/scorecard.yaml +29 -29
- package/.agents/skills/qk-feature-delivery/SKILL.md +137 -445
- package/.agents/skills/qk-feature-delivery/evals/scorecard.yaml +1 -1
- package/.agents/skills/qk-frontend-architecture/SKILL.md +5 -479
- package/.agents/skills/qk-help/evals/scorecard.yaml +13 -13
- package/.agents/skills/qk-orchestrator/SKILL.md +63 -502
- package/.agents/skills/qk-orchestrator/references/routing-table.md +10 -14
- package/.agents/skills/qk-product-specification/SKILL.md +70 -479
- package/.agents/skills/qk-production-release/SKILL.md +80 -537
- package/.agents/skills/qk-project-audit/SKILL.md +174 -0
- package/.agents/skills/qk-project-bootstrap/SKILL.md +243 -471
- package/.agents/skills/qk-project-health/SKILL.md +97 -496
- package/.agents/skills/qk-project-memory/SKILL.md +76 -21
- package/.agents/skills/qk-refactor/SKILL.md +167 -384
- package/.agents/skills/qk-security-audit/SKILL.md +141 -463
- package/.agents/skills/qk-security-audit/capability.yaml +1 -2
- package/.agents/skills/qk-system-evolution/SKILL.md +343 -343
- package/.agents/skills/qk-system-evolution/evals/scorecard.yaml +26 -26
- package/.agents/skills/qk-test-engineering/SKILL.md +119 -509
- package/.agents/skills/qk-ui-audit/SKILL.md +73 -537
- package/.agents/skills/qk-ui-builder/SKILL.md +521 -482
- package/.agents/skills/qk-ui-system-builder/SKILL.md +68 -514
- package/.agents/skills/qk-upgrade/SKILL.md +301 -0
- package/.agents/skills/qk-upgrade/capability.yaml +24 -0
- package/.agents/skills/qk-upgrade/evals/scorecard.yaml +26 -0
- package/.agents/skills/qk-validation-gate/SKILL.md +4 -603
- package/.agents/skills/qk-web-quality-gate/SKILL.md +85 -463
- package/.agents/workflows/bug-resolution.yml +6 -6
- package/.agents/workflows/context-discovery.yml +94 -0
- package/.agents/workflows/feature-delivery.yml +8 -4
- package/.agents/workflows/refactor.yml +6 -3
- package/.agents/workflows/shared/quality-gate.yml +94 -0
- package/.agents/workflows/skin-governance.yml +115 -0
- package/README.md +152 -67
- package/package.json +2 -2
- package/tooling/build-registry.js +30 -8
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# registry/capability-graph.yml
|
|
2
2
|
# GENERATED FILE - DO NOT EDIT MANUALLY.
|
|
3
|
-
version: 9.
|
|
4
|
-
generated_at: '2026-
|
|
3
|
+
version: 9.2.0
|
|
4
|
+
generated_at: '2026-09-11T08:00:00.000Z'
|
|
5
5
|
nodes:
|
|
6
6
|
qk-access-policy:
|
|
7
7
|
type: capability
|
|
@@ -10,44 +10,71 @@ nodes:
|
|
|
10
10
|
does_not_own: []
|
|
11
11
|
conflicts: []
|
|
12
12
|
workflow: feature-delivery
|
|
13
|
+
|
|
13
14
|
qk-agent-observability:
|
|
14
15
|
type: capability
|
|
15
|
-
maturity:
|
|
16
|
+
maturity: archived
|
|
16
17
|
owns:
|
|
17
18
|
- agent_decision_trace
|
|
18
19
|
- routing_accuracy_metrics
|
|
19
20
|
- skill_success_rate
|
|
20
21
|
- failure_pattern_detection
|
|
21
|
-
- feedback_loop
|
|
22
22
|
does_not_own:
|
|
23
23
|
- application_monitoring
|
|
24
24
|
- infrastructure_monitoring
|
|
25
25
|
- log_aggregation
|
|
26
|
-
- uptime_monitoring
|
|
27
|
-
- pass_fail_enforcement
|
|
28
26
|
conflicts: []
|
|
29
|
-
workflow:
|
|
27
|
+
workflow: skin-governance
|
|
28
|
+
|
|
30
29
|
qk-ai-builder:
|
|
31
30
|
type: capability
|
|
32
31
|
maturity: stable
|
|
33
|
-
owns:
|
|
34
|
-
|
|
32
|
+
owns:
|
|
33
|
+
- rag-pipeline-design
|
|
34
|
+
- agent-architecture
|
|
35
|
+
- prompt-engineering
|
|
36
|
+
- eval-pipeline
|
|
37
|
+
does_not_own:
|
|
38
|
+
- application-business-logic
|
|
39
|
+
- standard-crud-api
|
|
40
|
+
conflicts: []
|
|
41
|
+
workflow: feature-delivery
|
|
42
|
+
|
|
43
|
+
qk-api-consumer:
|
|
44
|
+
type: capability
|
|
45
|
+
maturity: stable
|
|
46
|
+
owns:
|
|
47
|
+
- api-integration
|
|
48
|
+
- state-management
|
|
49
|
+
- data-binding
|
|
50
|
+
does_not_own:
|
|
51
|
+
- api-contract-design
|
|
52
|
+
- backend-implementation
|
|
35
53
|
conflicts: []
|
|
36
54
|
workflow: feature-delivery
|
|
55
|
+
|
|
37
56
|
qk-api-lifecycle:
|
|
38
57
|
type: capability
|
|
39
58
|
maturity: stable
|
|
40
|
-
owns:
|
|
41
|
-
|
|
59
|
+
owns:
|
|
60
|
+
- api-contracts
|
|
61
|
+
- endpoint-implementation
|
|
62
|
+
does_not_own:
|
|
63
|
+
- frontend-state-management
|
|
64
|
+
- UI-rendering
|
|
42
65
|
conflicts: []
|
|
43
66
|
workflow: feature-delivery
|
|
67
|
+
|
|
44
68
|
qk-bug-resolution:
|
|
45
69
|
type: capability
|
|
46
70
|
maturity: stable
|
|
47
|
-
owns:
|
|
71
|
+
owns:
|
|
72
|
+
- bug-diagnosis
|
|
73
|
+
- root-cause-analysis
|
|
48
74
|
does_not_own: []
|
|
49
75
|
conflicts: []
|
|
50
76
|
workflow: bug-resolution
|
|
77
|
+
|
|
51
78
|
qk-code-review:
|
|
52
79
|
type: utility
|
|
53
80
|
maturity: stable
|
|
@@ -55,20 +82,41 @@ nodes:
|
|
|
55
82
|
does_not_own: []
|
|
56
83
|
conflicts: []
|
|
57
84
|
workflow: code-review
|
|
85
|
+
|
|
58
86
|
qk-context-loader:
|
|
59
87
|
type: utility
|
|
60
88
|
maturity: stable
|
|
61
89
|
owns: []
|
|
62
90
|
does_not_own: []
|
|
63
91
|
conflicts: []
|
|
64
|
-
workflow:
|
|
92
|
+
workflow: context-discovery
|
|
93
|
+
|
|
94
|
+
qk-data-engineer:
|
|
95
|
+
type: capability
|
|
96
|
+
maturity: stable
|
|
97
|
+
owns:
|
|
98
|
+
- data-pipeline-architecture
|
|
99
|
+
- data-contracts
|
|
100
|
+
- data-quality-gate
|
|
101
|
+
- incremental-processing
|
|
102
|
+
does_not_own:
|
|
103
|
+
- application-orm
|
|
104
|
+
- standard-web-api
|
|
105
|
+
- ui-components
|
|
106
|
+
conflicts: []
|
|
107
|
+
workflow: feature-delivery
|
|
108
|
+
|
|
65
109
|
qk-data-lifecycle:
|
|
66
110
|
type: capability
|
|
67
111
|
maturity: stable
|
|
68
|
-
owns:
|
|
69
|
-
|
|
112
|
+
owns:
|
|
113
|
+
- schema-management
|
|
114
|
+
- migration-strategy
|
|
115
|
+
does_not_own:
|
|
116
|
+
- data-pipeline-design
|
|
70
117
|
conflicts: []
|
|
71
118
|
workflow: feature-delivery
|
|
119
|
+
|
|
72
120
|
qk-db-optimizer:
|
|
73
121
|
type: utility
|
|
74
122
|
maturity: stable
|
|
@@ -76,34 +124,34 @@ nodes:
|
|
|
76
124
|
does_not_own: []
|
|
77
125
|
conflicts: []
|
|
78
126
|
workflow: refactor
|
|
127
|
+
|
|
79
128
|
qk-design-system-engineering:
|
|
80
129
|
type: capability
|
|
81
130
|
maturity: experimental
|
|
82
131
|
owns:
|
|
83
|
-
-
|
|
84
|
-
-
|
|
85
|
-
- design governance
|
|
132
|
+
- design-governance
|
|
133
|
+
- component-variants
|
|
86
134
|
does_not_own:
|
|
87
|
-
- page
|
|
88
|
-
- business
|
|
135
|
+
- page-implementation
|
|
136
|
+
- business-logic
|
|
89
137
|
conflicts:
|
|
90
138
|
- qk-ui-system-builder
|
|
91
139
|
workflow: feature-delivery
|
|
140
|
+
|
|
92
141
|
qk-devops-platform:
|
|
93
142
|
type: capability
|
|
94
143
|
maturity: experimental
|
|
95
144
|
owns:
|
|
96
|
-
-
|
|
97
|
-
- deployment
|
|
98
|
-
- environment
|
|
99
|
-
- rollback strategy
|
|
145
|
+
- cicd-strategy
|
|
146
|
+
- deployment-architecture
|
|
147
|
+
- environment-management
|
|
100
148
|
does_not_own:
|
|
101
|
-
- application
|
|
102
|
-
-
|
|
103
|
-
- releasing features
|
|
149
|
+
- application-code
|
|
150
|
+
- feature-release
|
|
104
151
|
conflicts:
|
|
105
152
|
- qk-production-release
|
|
106
153
|
workflow: feature-delivery
|
|
154
|
+
|
|
107
155
|
qk-docs:
|
|
108
156
|
type: utility
|
|
109
157
|
maturity: stable
|
|
@@ -111,65 +159,60 @@ nodes:
|
|
|
111
159
|
does_not_own: []
|
|
112
160
|
conflicts: []
|
|
113
161
|
workflow: documentation
|
|
162
|
+
|
|
114
163
|
qk-engineering-standard:
|
|
115
164
|
type: utility
|
|
116
|
-
maturity:
|
|
165
|
+
maturity: relocated
|
|
117
166
|
owns: []
|
|
118
167
|
does_not_own: []
|
|
119
168
|
conflicts: []
|
|
120
169
|
workflow: code-review
|
|
121
|
-
|
|
122
|
-
type: capability
|
|
123
|
-
maturity: stable
|
|
124
|
-
owns: []
|
|
125
|
-
does_not_own: []
|
|
126
|
-
conflicts: []
|
|
127
|
-
workflow: feature-delivery
|
|
170
|
+
|
|
128
171
|
qk-feature-delivery:
|
|
129
172
|
type: capability
|
|
130
173
|
maturity: stable
|
|
131
|
-
owns:
|
|
174
|
+
owns:
|
|
175
|
+
- feature-implementation
|
|
176
|
+
- requirement-analysis
|
|
132
177
|
does_not_own: []
|
|
133
178
|
conflicts: []
|
|
134
179
|
workflow: feature-delivery
|
|
180
|
+
|
|
135
181
|
qk-frontend-architecture:
|
|
136
182
|
type: capability
|
|
137
|
-
maturity:
|
|
183
|
+
maturity: archived
|
|
138
184
|
owns:
|
|
139
|
-
- architecture
|
|
140
|
-
- state
|
|
185
|
+
- architecture-decisions
|
|
186
|
+
- state-strategy
|
|
141
187
|
does_not_own:
|
|
142
|
-
- component
|
|
143
|
-
- pixel
|
|
188
|
+
- component-implementation
|
|
189
|
+
- pixel-styling
|
|
144
190
|
conflicts:
|
|
145
191
|
- qk-ui-builder
|
|
146
192
|
workflow: feature-delivery
|
|
147
|
-
|
|
148
|
-
type: capability
|
|
149
|
-
maturity: deprecated
|
|
150
|
-
owns: []
|
|
151
|
-
does_not_own: []
|
|
152
|
-
conflicts: []
|
|
153
|
-
workflow: documentation
|
|
193
|
+
|
|
154
194
|
qk-orchestrator:
|
|
155
195
|
type: orchestrator
|
|
156
196
|
maturity: stable
|
|
157
|
-
owns:
|
|
197
|
+
owns:
|
|
198
|
+
- task-routing
|
|
199
|
+
- skill-selection
|
|
158
200
|
does_not_own: []
|
|
159
201
|
conflicts: []
|
|
160
|
-
workflow:
|
|
202
|
+
workflow: context-discovery
|
|
203
|
+
|
|
161
204
|
qk-product-specification:
|
|
162
205
|
type: capability
|
|
163
206
|
maturity: experimental
|
|
164
207
|
owns:
|
|
165
|
-
- technical-
|
|
166
|
-
- acceptance
|
|
208
|
+
- technical-specification
|
|
209
|
+
- acceptance-criteria
|
|
167
210
|
does_not_own:
|
|
168
|
-
- market
|
|
169
|
-
- pricing
|
|
211
|
+
- market-research
|
|
170
212
|
- roadmap
|
|
171
213
|
conflicts: []
|
|
172
214
|
workflow: spec-driven-development
|
|
215
|
+
|
|
173
216
|
qk-production-release:
|
|
174
217
|
type: capability
|
|
175
218
|
maturity: stable
|
|
@@ -177,11 +220,24 @@ nodes:
|
|
|
177
220
|
- release-gate-checklist
|
|
178
221
|
- deployment-readiness-verdict
|
|
179
222
|
does_not_own:
|
|
180
|
-
-
|
|
181
|
-
- infrastructure-provisioning
|
|
223
|
+
- cicd-pipeline-design
|
|
182
224
|
conflicts:
|
|
183
225
|
- qk-devops-platform
|
|
184
226
|
workflow: production-release
|
|
227
|
+
|
|
228
|
+
qk-project-audit:
|
|
229
|
+
type: capability
|
|
230
|
+
maturity: stable
|
|
231
|
+
owns:
|
|
232
|
+
- gap-analysis
|
|
233
|
+
- feasibility-assessment
|
|
234
|
+
- risk-report
|
|
235
|
+
does_not_own:
|
|
236
|
+
- implementation
|
|
237
|
+
- code-changes
|
|
238
|
+
conflicts: []
|
|
239
|
+
workflow: feature-delivery
|
|
240
|
+
|
|
185
241
|
qk-project-bootstrap:
|
|
186
242
|
type: capability
|
|
187
243
|
maturity: stable
|
|
@@ -189,6 +245,7 @@ nodes:
|
|
|
189
245
|
does_not_own: []
|
|
190
246
|
conflicts: []
|
|
191
247
|
workflow: feature-delivery
|
|
248
|
+
|
|
192
249
|
qk-project-health:
|
|
193
250
|
type: utility
|
|
194
251
|
maturity: stable
|
|
@@ -196,6 +253,7 @@ nodes:
|
|
|
196
253
|
does_not_own: []
|
|
197
254
|
conflicts: []
|
|
198
255
|
workflow: code-review
|
|
256
|
+
|
|
199
257
|
qk-project-memory:
|
|
200
258
|
type: utility
|
|
201
259
|
maturity: stable
|
|
@@ -203,6 +261,7 @@ nodes:
|
|
|
203
261
|
does_not_own: []
|
|
204
262
|
conflicts: []
|
|
205
263
|
workflow: documentation
|
|
264
|
+
|
|
206
265
|
qk-refactor:
|
|
207
266
|
type: capability
|
|
208
267
|
maturity: stable
|
|
@@ -210,39 +269,32 @@ nodes:
|
|
|
210
269
|
does_not_own: []
|
|
211
270
|
conflicts: []
|
|
212
271
|
workflow: refactor
|
|
272
|
+
|
|
213
273
|
qk-security-audit:
|
|
214
274
|
type: capability
|
|
215
275
|
maturity: experimental
|
|
216
276
|
owns:
|
|
217
277
|
- application-security
|
|
218
|
-
-
|
|
219
|
-
- prompt-injection
|
|
278
|
+
- prompt-injection-detection
|
|
220
279
|
- dependency-risk
|
|
221
280
|
does_not_own:
|
|
222
|
-
-
|
|
223
|
-
-
|
|
224
|
-
- compliance certification
|
|
281
|
+
- penetration-testing
|
|
282
|
+
- compliance-certification
|
|
225
283
|
conflicts: []
|
|
226
284
|
workflow: security-audit
|
|
227
|
-
|
|
228
|
-
type: capability
|
|
229
|
-
maturity: stable
|
|
230
|
-
owns: []
|
|
231
|
-
does_not_own: []
|
|
232
|
-
conflicts: []
|
|
233
|
-
workflow: refactor
|
|
285
|
+
|
|
234
286
|
qk-test-engineering:
|
|
235
287
|
type: capability
|
|
236
288
|
maturity: experimental
|
|
237
289
|
owns:
|
|
238
|
-
- test
|
|
239
|
-
- coverage
|
|
240
|
-
- regression planning
|
|
290
|
+
- test-pyramid
|
|
291
|
+
- coverage-strategy
|
|
241
292
|
does_not_own:
|
|
242
|
-
-
|
|
243
|
-
-
|
|
293
|
+
- writing-tests
|
|
294
|
+
- business-logic
|
|
244
295
|
conflicts: []
|
|
245
296
|
workflow: feature-delivery
|
|
297
|
+
|
|
246
298
|
qk-ui-audit:
|
|
247
299
|
type: utility
|
|
248
300
|
maturity: stable
|
|
@@ -250,304 +302,89 @@ nodes:
|
|
|
250
302
|
does_not_own: []
|
|
251
303
|
conflicts: []
|
|
252
304
|
workflow: code-review
|
|
305
|
+
|
|
253
306
|
qk-ui-builder:
|
|
254
307
|
type: capability
|
|
255
308
|
maturity: stable
|
|
256
309
|
owns:
|
|
257
|
-
- ui
|
|
258
|
-
-
|
|
310
|
+
- ui-components
|
|
311
|
+
- styling-execution
|
|
259
312
|
does_not_own:
|
|
260
|
-
- design
|
|
261
|
-
-
|
|
262
|
-
conflicts:
|
|
313
|
+
- design-system-rules
|
|
314
|
+
- brand-identity
|
|
315
|
+
conflicts:
|
|
316
|
+
- qk-frontend-architecture
|
|
263
317
|
workflow: feature-delivery
|
|
318
|
+
|
|
264
319
|
qk-ui-system-builder:
|
|
265
320
|
type: capability
|
|
266
321
|
maturity: stable
|
|
267
322
|
owns:
|
|
268
|
-
- tokens
|
|
269
|
-
-
|
|
323
|
+
- design-tokens
|
|
324
|
+
- token-library
|
|
270
325
|
does_not_own:
|
|
271
|
-
- page
|
|
272
|
-
- visual direction
|
|
326
|
+
- page-implementation
|
|
273
327
|
conflicts:
|
|
274
328
|
- qk-design-system-engineering
|
|
275
329
|
workflow: feature-delivery
|
|
330
|
+
|
|
331
|
+
qk-upgrade:
|
|
332
|
+
type: capability
|
|
333
|
+
maturity: stable
|
|
334
|
+
owns:
|
|
335
|
+
- upgrade-strategy
|
|
336
|
+
- rollback-plan
|
|
337
|
+
- migration-path
|
|
338
|
+
does_not_own:
|
|
339
|
+
- business-logic-changes
|
|
340
|
+
conflicts: []
|
|
341
|
+
workflow: refactor
|
|
342
|
+
|
|
276
343
|
qk-validation-gate:
|
|
277
344
|
type: utility
|
|
278
|
-
maturity:
|
|
345
|
+
maturity: relocated
|
|
279
346
|
owns: []
|
|
280
347
|
does_not_own: []
|
|
281
348
|
conflicts: []
|
|
282
|
-
workflow:
|
|
349
|
+
workflow: feature-delivery
|
|
350
|
+
|
|
283
351
|
qk-web-quality-gate:
|
|
284
352
|
type: capability
|
|
285
353
|
maturity: experimental
|
|
286
354
|
owns:
|
|
287
|
-
-
|
|
288
|
-
-
|
|
289
|
-
- performance
|
|
290
|
-
- seo audit
|
|
355
|
+
- a11y-audit
|
|
356
|
+
- seo-audit
|
|
357
|
+
- performance-audit
|
|
291
358
|
does_not_own:
|
|
292
|
-
-
|
|
359
|
+
- implementation
|
|
293
360
|
conflicts: []
|
|
294
361
|
workflow: feature-delivery
|
|
362
|
+
|
|
295
363
|
edges:
|
|
296
|
-
- from: qk-access-policy
|
|
297
|
-
to: feature-delivery
|
|
298
|
-
relation: depends_on
|
|
299
|
-
- from: qk-access-policy
|
|
300
|
-
to: qk-api-lifecycle
|
|
301
|
-
relation: feeds
|
|
302
|
-
- from: qk-agent-observability
|
|
303
|
-
to: skill-evolution
|
|
304
|
-
relation: depends_on
|
|
305
|
-
- from: qk-agent-observability
|
|
306
|
-
to: qk-validation-gate
|
|
307
|
-
relation: feeds
|
|
308
|
-
- from: qk-ai-builder
|
|
309
|
-
to: feature-delivery
|
|
310
|
-
relation: depends_on
|
|
311
|
-
- from: qk-ai-builder
|
|
312
|
-
to: qk-system-evolution
|
|
313
|
-
relation: feeds
|
|
314
|
-
- from: qk-api-lifecycle
|
|
315
|
-
to: feature-delivery
|
|
316
|
-
relation: depends_on
|
|
317
|
-
- from: qk-api-lifecycle
|
|
318
|
-
to: qk-data-lifecycle
|
|
319
|
-
relation: feeds
|
|
320
|
-
- from: qk-bug-resolution
|
|
321
|
-
to: bug-resolution
|
|
322
|
-
relation: depends_on
|
|
323
|
-
- from: qk-bug-resolution
|
|
324
|
-
to: qk-context-loader
|
|
325
|
-
relation: feeds
|
|
326
|
-
- from: qk-bug-resolution
|
|
327
|
-
to: qk-validation-gate
|
|
328
|
-
relation: feeds
|
|
329
|
-
- from: qk-code-review
|
|
330
|
-
to: code-review
|
|
331
|
-
relation: depends_on
|
|
332
|
-
- from: qk-code-review
|
|
333
|
-
to: qk-validation-gate
|
|
334
|
-
relation: feeds
|
|
335
|
-
- from: qk-code-review
|
|
336
|
-
to: qk-engineering-standard
|
|
337
|
-
relation: feeds
|
|
338
|
-
- from: qk-code-review
|
|
339
|
-
to: qk-project-health
|
|
340
|
-
relation: feeds
|
|
341
|
-
- from: qk-context-loader
|
|
342
|
-
to: research
|
|
343
|
-
relation: depends_on
|
|
344
364
|
- from: qk-context-loader
|
|
345
365
|
to: qk-feature-delivery
|
|
346
366
|
relation: feeds
|
|
347
367
|
- from: qk-context-loader
|
|
348
368
|
to: qk-orchestrator
|
|
349
369
|
relation: feeds
|
|
350
|
-
- from: qk-
|
|
351
|
-
to: feature-delivery
|
|
352
|
-
relation: depends_on
|
|
353
|
-
- from: qk-data-lifecycle
|
|
354
|
-
to: qk-db-optimizer
|
|
355
|
-
relation: feeds
|
|
356
|
-
- from: qk-db-optimizer
|
|
357
|
-
to: refactor
|
|
358
|
-
relation: depends_on
|
|
359
|
-
- from: qk-db-optimizer
|
|
360
|
-
to: qk-data-lifecycle
|
|
361
|
-
relation: feeds
|
|
362
|
-
- from: qk-design-system-engineering
|
|
363
|
-
to: feature-delivery
|
|
364
|
-
relation: depends_on
|
|
365
|
-
- from: qk-design-system-engineering
|
|
366
|
-
to: qk-ui-system-builder
|
|
367
|
-
relation: conflicts_with
|
|
368
|
-
- from: qk-design-system-engineering
|
|
369
|
-
to: qk-frontend-architecture
|
|
370
|
-
relation: feeds
|
|
371
|
-
- from: qk-devops-platform
|
|
372
|
-
to: feature-delivery
|
|
373
|
-
relation: depends_on
|
|
374
|
-
- from: qk-devops-platform
|
|
375
|
-
to: qk-production-release
|
|
376
|
-
relation: conflicts_with
|
|
377
|
-
- from: qk-devops-platform
|
|
378
|
-
to: qk-production-release
|
|
379
|
-
relation: feeds
|
|
380
|
-
- from: qk-devops-platform
|
|
381
|
-
to: qk-security-audit
|
|
382
|
-
relation: feeds
|
|
383
|
-
- from: qk-docs
|
|
384
|
-
to: documentation
|
|
385
|
-
relation: depends_on
|
|
386
|
-
- from: qk-docs
|
|
387
|
-
to: qk-engineering-standard
|
|
388
|
-
relation: feeds
|
|
389
|
-
- from: qk-engineering-standard
|
|
390
|
-
to: code-review
|
|
391
|
-
relation: depends_on
|
|
392
|
-
- from: qk-engineering-standard
|
|
393
|
-
to: qk-project-health
|
|
394
|
-
relation: feeds
|
|
395
|
-
- from: qk-engineering-standard
|
|
396
|
-
to: qk-system-evolution
|
|
397
|
-
relation: feeds
|
|
398
|
-
- from: qk-fe-api-integration
|
|
399
|
-
to: feature-delivery
|
|
400
|
-
relation: depends_on
|
|
401
|
-
- from: qk-fe-api-integration
|
|
402
|
-
to: qk-api-lifecycle
|
|
403
|
-
relation: feeds
|
|
404
|
-
- from: qk-fe-api-integration
|
|
405
|
-
to: qk-ui-builder
|
|
406
|
-
relation: feeds
|
|
407
|
-
- from: qk-feature-delivery
|
|
408
|
-
to: feature-delivery
|
|
409
|
-
relation: depends_on
|
|
410
|
-
- from: qk-feature-delivery
|
|
370
|
+
- from: qk-orchestrator
|
|
411
371
|
to: qk-context-loader
|
|
412
|
-
relation:
|
|
413
|
-
- from: qk-
|
|
414
|
-
to: qk-
|
|
415
|
-
relation: feeds
|
|
416
|
-
- from: qk-frontend-architecture
|
|
417
|
-
to: feature-delivery
|
|
372
|
+
relation: delegates_to
|
|
373
|
+
- from: qk-api-consumer
|
|
374
|
+
to: qk-api-lifecycle
|
|
418
375
|
relation: depends_on
|
|
419
376
|
- from: qk-frontend-architecture
|
|
420
377
|
to: qk-ui-builder
|
|
421
|
-
relation: conflicts_with
|
|
422
|
-
- from: qk-frontend-architecture
|
|
423
|
-
to: qk-ui-builder
|
|
424
|
-
relation: delegates_to
|
|
425
|
-
- from: qk-ui-builder
|
|
426
|
-
to: qk-frontend-architecture
|
|
427
|
-
relation: implemented_by
|
|
428
|
-
- from: qk-frontend-architecture
|
|
429
|
-
to: qk-ui-system-builder
|
|
430
|
-
relation: delegates_to
|
|
431
|
-
- from: qk-ui-system-builder
|
|
432
|
-
to: qk-frontend-architecture
|
|
433
|
-
relation: implemented_by
|
|
434
|
-
- from: qk-frontend-architecture
|
|
435
|
-
to: qk-design-system-engineering
|
|
436
|
-
relation: feeds
|
|
437
|
-
- from: qk-frontend-architecture
|
|
438
|
-
to: qk-web-quality-gate
|
|
439
|
-
relation: feeds
|
|
440
|
-
- from: qk-help
|
|
441
|
-
to: documentation
|
|
442
|
-
relation: depends_on
|
|
443
|
-
- from: qk-help
|
|
444
|
-
to: qk-orchestrator
|
|
445
|
-
relation: feeds
|
|
446
|
-
- from: qk-orchestrator
|
|
447
|
-
to: research
|
|
448
|
-
relation: depends_on
|
|
449
|
-
- from: qk-orchestrator
|
|
450
|
-
to: qk-context-loader
|
|
451
|
-
relation: feeds
|
|
452
|
-
- from: qk-product-specification
|
|
453
|
-
to: spec-driven-development
|
|
454
|
-
relation: depends_on
|
|
455
|
-
- from: qk-product-specification
|
|
456
|
-
to: qk-feature-delivery
|
|
457
378
|
relation: delegates_to
|
|
458
|
-
- from: qk-
|
|
459
|
-
to: qk-product-specification
|
|
460
|
-
relation: implemented_by
|
|
461
|
-
- from: qk-product-specification
|
|
379
|
+
- from: qk-project-audit
|
|
462
380
|
to: qk-feature-delivery
|
|
463
381
|
relation: feeds
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
- from: qk-project-bootstrap
|
|
474
|
-
to: feature-delivery
|
|
475
|
-
relation: depends_on
|
|
476
|
-
- from: qk-project-bootstrap
|
|
477
|
-
to: qk-engineering-standard
|
|
478
|
-
relation: feeds
|
|
479
|
-
- from: qk-project-health
|
|
480
|
-
to: code-review
|
|
481
|
-
relation: depends_on
|
|
482
|
-
- from: qk-project-health
|
|
483
|
-
to: qk-engineering-standard
|
|
484
|
-
relation: feeds
|
|
485
|
-
- from: qk-project-memory
|
|
486
|
-
to: documentation
|
|
487
|
-
relation: depends_on
|
|
488
|
-
- from: qk-project-memory
|
|
489
|
-
to: qk-engineering-standard
|
|
490
|
-
relation: feeds
|
|
491
|
-
- from: qk-refactor
|
|
492
|
-
to: refactor
|
|
493
|
-
relation: depends_on
|
|
494
|
-
- from: qk-refactor
|
|
495
|
-
to: qk-engineering-standard
|
|
496
|
-
relation: feeds
|
|
497
|
-
- from: qk-refactor
|
|
498
|
-
to: qk-project-health
|
|
499
|
-
relation: feeds
|
|
500
|
-
- from: qk-security-audit
|
|
501
|
-
to: security-audit
|
|
502
|
-
relation: depends_on
|
|
503
|
-
- from: qk-security-audit
|
|
504
|
-
to: qk-validation-gate
|
|
505
|
-
relation: delegates_to
|
|
506
|
-
- from: qk-validation-gate
|
|
507
|
-
to: qk-security-audit
|
|
508
|
-
relation: implemented_by
|
|
509
|
-
- from: qk-security-audit
|
|
510
|
-
to: qk-access-policy
|
|
511
|
-
relation: feeds
|
|
512
|
-
- from: qk-system-evolution
|
|
513
|
-
to: refactor
|
|
514
|
-
relation: depends_on
|
|
515
|
-
- from: qk-system-evolution
|
|
516
|
-
to: qk-engineering-standard
|
|
517
|
-
relation: feeds
|
|
518
|
-
- from: qk-system-evolution
|
|
519
|
-
to: qk-project-health
|
|
520
|
-
relation: feeds
|
|
521
|
-
- from: qk-test-engineering
|
|
522
|
-
to: feature-delivery
|
|
523
|
-
relation: depends_on
|
|
524
|
-
- from: qk-test-engineering
|
|
525
|
-
to: qk-engineering-standard
|
|
526
|
-
relation: feeds
|
|
527
|
-
- from: qk-ui-audit
|
|
528
|
-
to: code-review
|
|
529
|
-
relation: depends_on
|
|
530
|
-
- from: qk-ui-audit
|
|
531
|
-
to: qk-ui-builder
|
|
532
|
-
relation: feeds
|
|
533
|
-
- from: qk-ui-system-builder
|
|
534
|
-
to: feature-delivery
|
|
535
|
-
relation: depends_on
|
|
536
|
-
- from: qk-ui-system-builder
|
|
537
|
-
to: qk-design-system-engineering
|
|
538
|
-
relation: conflicts_with
|
|
539
|
-
- from: qk-ui-system-builder
|
|
540
|
-
to: qk-ui-builder
|
|
541
|
-
relation: feeds
|
|
542
|
-
- from: qk-validation-gate
|
|
543
|
-
to: code-review
|
|
544
|
-
relation: depends_on
|
|
545
|
-
- from: qk-validation-gate
|
|
546
|
-
to: qk-engineering-standard
|
|
547
|
-
relation: feeds
|
|
548
|
-
- from: qk-web-quality-gate
|
|
549
|
-
to: feature-delivery
|
|
550
|
-
relation: depends_on
|
|
551
|
-
- from: qk-web-quality-gate
|
|
552
|
-
to: qk-frontend-architecture
|
|
553
|
-
relation: feeds
|
|
382
|
+
|
|
383
|
+
stats:
|
|
384
|
+
total_capabilities: 29
|
|
385
|
+
stable: 22
|
|
386
|
+
experimental: 5
|
|
387
|
+
archived: 2 # skill removed entirely: qk-frontend-architecture, qk-agent-observability
|
|
388
|
+
relocated: 2 # logic moved to rules/coding.md + workflow steps: qk-engineering-standard, qk-validation-gate
|
|
389
|
+
has_cycles: false
|
|
390
|
+
last_validated: '2026-09-11T12:00:00.000Z'
|