-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog.json
More file actions
3944 lines (3944 loc) · 166 KB
/
Copy pathcatalog.json
File metadata and controls
3944 lines (3944 loc) · 166 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"generated": "2026-08-24",
"score_version": "v0",
"count": 127,
"skills": [
{
"name": "code-review",
"description": "Review code changes for bugs, security issues, and maintainability with severity-tagged, actionable findings. Use whenever the user shares a diff, pull request, or code snippet and asks for review, feedback, \"does this look right\", \"find issues\", or \"check my code\" — even for small snippets or partial files.",
"category": "coding",
"path": "skills/coding/code-review",
"tier": "core",
"updated": "2026-07-11",
"context_tokens": 572,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/code-review",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:b52b76fbf39dd93b731abef45bbf7486144896b522a26978e7d80195de98c637",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "commit-messages",
"description": "Write clear, conventional git commit messages from diffs or descriptions of changes. Use whenever the user asks for a commit message, is about to commit changes, mentions \"git commit\", shares a diff or staged changes that need summarizing, or finishes a coding task that will be committed — even if they don't ask about message formatting.",
"category": "coding",
"path": "skills/coding/commit-messages",
"tier": "core",
"updated": "2026-07-11",
"context_tokens": 496,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/commit-messages",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:365aef4265f7dfec2025fbe90c6aaeb1d5fba3557d548611c6cd86f28b3d5ca4",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "optional"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "meeting-notes",
"description": "Turn raw meeting transcripts, chat logs, or rough notes into clean, structured meeting notes with decisions and action items. Use whenever the user shares a transcript or messy notes, asks for meeting minutes, wants action items extracted, or says things like \"clean up my notes from the standup\" — even if they don't say the word \"minutes\".",
"category": "documents",
"path": "skills/documents/meeting-notes",
"tier": "core",
"updated": "2026-07-11",
"context_tokens": 536,
"reference_tokens": 370,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/documents/meeting-notes",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:93671357180f6f24e22a17244ef6bc913c0f77120056215131e7da509649c0fb",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "none",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "debugging",
"description": "Diagnose bugs systematically instead of guessing — form hypotheses, isolate the fault, and verify the fix. Use whenever the user shares an error message, stack trace, unexpected behavior, failing test, or says things like \"why doesn't this work\", \"it crashes\", or \"I'm stuck on this bug\" — even if they only paste an error with no question.",
"category": "coding",
"path": "skills/coding/debugging",
"tier": "verified",
"updated": "2026-07-11",
"context_tokens": 541,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/debugging",
"license": "Apache-2.0",
"compatibility": "Portable instructions; may use the project's existing test and diagnostic tools.",
"content_digest": "sha256:d229768189f34aab4c60341692527feb63b462d39929c8410d749e6ca79bbe8b",
"security_profile": "instructions-only",
"permissions": {
"network": "optional",
"filesystem": "read-write",
"execution": "optional"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "accessibility-implementation",
"description": "Implement accessible UI — semantic HTML, keyboard behavior, focus management, and names — rather than only auditing. Use whenever the user asks how to build an accessible modal, menu, form, table, or component, wants ARIA patterns to implement, or to fix a11y findings in code.",
"category": "coding",
"path": "skills/coding/accessibility-implementation",
"tier": "community",
"updated": "2026-08-16",
"context_tokens": 551,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/accessibility-implementation",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:ee9161d8946561c5b8733ce1495d6bf3ddfb7f4e2a3059a5cdfd49260bfa2c02",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "accessibility-review",
"description": "Review UI and content for accessibility issues against WCAG-minded practices. Use whenever the user asks for an a11y review, accessibility audit, ARIA help, keyboard navigation, screen reader support, or whether a UI is accessible — even for small component snippets. To implement the keyboard/ARIA pattern, use accessibility-implementation.",
"category": "coding",
"path": "skills/coding/accessibility-review",
"tier": "community",
"updated": "2026-08-16",
"context_tokens": 441,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/accessibility-review",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:1b34e2b1b255d312db961d766d25151513ad4872ab911226e00ba981c29996dd",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "api-changelog",
"description": "Write consumer-facing API changelogs and migration notes for breaking and additive changes. Use whenever the user asks for an API changelog, OpenAPI migration notes, deprecation announcement, version diff summary, or how to communicate a breaking API change to clients.",
"category": "coding",
"path": "skills/coding/api-changelog",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 254,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/api-changelog",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:b295c3595b8f64387eb025eaf764d598fbdf0ac58335fea852938956e37a598d",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "api-design",
"description": "Design and review HTTP, REST, GraphQL, and internal service APIs with clear contracts, errors, pagination, security, and evolution rules. Use whenever the user is planning endpoints, reviewing an API specification, naming resources, defining request or response shapes, or asking how services should communicate, even if they only share a rough route list.",
"category": "coding",
"path": "skills/coding/api-design",
"tier": "community",
"updated": "2026-07-11",
"context_tokens": 674,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/api-design",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:08e81e5fc05fc6e57a00215bb33ecbe6df2a274bb9f982a0bf5435f25dfafab6",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "none",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "auth-design",
"description": "Design authentication and authorization — sessions, OAuth/OIDC, JWT, MFA, cookies, and object-level access. Use whenever the user asks how to add login, SSO, refresh tokens, RBAC/ABAC, API keys, session cookies, or whether to use JWT, or is designing signup/signin flows.",
"category": "coding",
"path": "skills/coding/auth-design",
"tier": "community",
"updated": "2026-08-16",
"context_tokens": 650,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/auth-design",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:5a8dd9122a68cf8b04882685ea32a7be7827dc1d6f295bdc8042a0868d1b533b",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "caching-strategies",
"description": "Design caching layers with correctness, TTLs, invalidation, and stampede control. Use whenever the user asks about Redis cache, CDN caching, HTTP cache headers, cache invalidation, thundering herd, or stale reads.",
"category": "coding",
"path": "skills/coding/caching-strategies",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 286,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/caching-strategies",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:aa6e8ca19ad9f85b4d2d30e75b0f4da8b8c655c6fd2fc0adb0c689d22807ed36",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "chaos-experiment-design",
"description": "Plan chaos and resilience experiments safely with hypotheses, blast radius limits, and abort criteria. Use whenever the user asks for chaos engineering, fault injection, resilience experiments, or how to safely break things in staging or production. For facilitating a game day or on-call shadow, use game-day-facilitation.",
"category": "coding",
"path": "skills/coding/chaos-experiment-design",
"tier": "community",
"updated": "2026-08-25",
"context_tokens": 315,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/chaos-experiment-design",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:04c2e4b741592175ba0d7beb240439ec227f9d6ca8af6d383bcde971e96a9dc7",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "ci-cd-pipelines",
"description": "Design and review CI/CD pipelines for speed, safety, and clear failure signals. Use whenever the user edits GitHub Actions, GitLab CI, Jenkinsfiles, or asks how to structure tests, builds, caches, deploy gates, and rollbacks in continuous integration.",
"category": "coding",
"path": "skills/coding/ci-cd-pipelines",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 340,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/ci-cd-pipelines",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:6f7375af0dc10625d80229abe745f7afae1d5c1d161dcc749bbe42d7feed198d",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "cli-design",
"description": "Design developer CLIs with clear UX, exit codes, flags, and help text. Use whenever the user builds a command-line tool, debates flags vs subcommands, stdout vs stderr, or asks how to structure a CLI for engineers.",
"category": "coding",
"path": "skills/coding/cli-design",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 244,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/cli-design",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:338009830a674ab963875cdda42f4cda1f4a7bea96886586dab37c59ac0ca56f",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "cloudformation-review",
"description": "Review AWS CloudFormation and SAM templates for deployment safety, IAM scope, replacement risk, dependencies, rollback behavior, and operability. Use whenever the user shares YAML or JSON templates, change sets, nested stacks, custom resources, or asks whether a CloudFormation deployment is safe.",
"category": "coding",
"path": "skills/coding/cloudformation-review",
"tier": "community",
"updated": "2026-08-16",
"context_tokens": 777,
"reference_tokens": 785,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/cloudformation-review",
"license": "Apache-2.0",
"compatibility": "Portable instructions; may interpret templates, change sets, stack events, and linter output when provided.",
"content_digest": "sha256:ae8644eb278657313d695198ae00c3b17b8238f68255fee7eb2656b07ee241cd",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "optional"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "code-comments",
"description": "Write and improve code comments and docstrings that explain why, not noise. Use whenever the user asks for better comments, docstrings, module headers, JSDoc/TSDoc, or documentation comments in source code.",
"category": "coding",
"path": "skills/coding/code-comments",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 317,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/code-comments",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:fe03adf0504931d0745acc80dad7296f5f326ed1bf61b447c15ddf9279c45eec",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "codebase-orientation",
"description": "Orient an engineer (or agent) in an unfamiliar codebase — map modules, entrypoints, how to run tests, and where to change a feature. Use whenever the user says \"I'm new to this repo\", asks where X is implemented, wants you to map this repo, asks how this project is structured, or an agent is exploring a repository — even if they only paste a directory listing. Distinct from onboarding-guides (HR/company onboarding) and debugging (a specific bug).",
"category": "coding",
"path": "skills/coding/codebase-orientation",
"tier": "community",
"updated": "2026-08-25",
"context_tokens": 731,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/codebase-orientation",
"license": "Apache-2.0",
"compatibility": "Portable instructions; may list files and run existing test or help commands when execution is allowed.",
"content_digest": "sha256:0d1dd6ec154bec3955be9cebbe4749099b1f64409fb0405f2a6e2a5f3eae226f",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "optional"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "container-review",
"description": "Review Dockerfiles and container configs for size, security, and operability. Use whenever the user shares a Dockerfile, compose file, Kubernetes image config, or asks how to harden, slim, or debug a container build.",
"category": "coding",
"path": "skills/coding/container-review",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 320,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/container-review",
"license": "Apache-2.0",
"compatibility": "Portable instructions; may reason about local docker commands when available.",
"content_digest": "sha256:863176131f40773187e0aa008e4b6401cb1a88536b530e267ee4d0d2b581c37c",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "optional"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "database-indexing",
"description": "Design and review database indexes and query plans — covering indexes, INCLUDE columns, partial/expression indexes, and EXPLAIN coaching beyond a single query rewrite. Use whenever the user asks what index to add, shares EXPLAIN ANALYZE, talks seq scans or index bloat, or wants a indexing plan for Postgres, MySQL, or SQL Server.",
"category": "coding",
"path": "skills/coding/database-indexing",
"tier": "community",
"updated": "2026-08-16",
"context_tokens": 582,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/database-indexing",
"license": "Apache-2.0",
"compatibility": "Portable instructions; may interpret EXPLAIN output when provided.",
"content_digest": "sha256:a78e64c18c29fb1ef8e04c57348543106dfc296131047fe925a40d5ee579d239",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "optional"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "database-migrations",
"description": "Plan and review database schema migrations for safety and rollback. Use whenever the user writes migrations, alters tables, backfills data, adds indexes, or asks how to deploy schema changes without downtime or lock pain.",
"category": "coding",
"path": "skills/coding/database-migrations",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 377,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/database-migrations",
"license": "Apache-2.0",
"compatibility": "Portable instructions; dialect-aware when the user specifies the database.",
"content_digest": "sha256:aefcc0740d05f214ce4ed1c016670b0a31dbc78b445658c55800a1b64ab13829",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "dependency-upgrades",
"description": "Plan and execute dependency upgrades with risk assessment, changelog review, and verification. Use whenever the user wants to bump packages, resolve CVEs, upgrade a major version, interpret dependency conflicts, or update lockfiles safely.",
"category": "coding",
"path": "skills/coding/dependency-upgrades",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 648,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/dependency-upgrades",
"license": "Apache-2.0",
"compatibility": "Portable instructions; may use local package managers when available.",
"content_digest": "sha256:e3fd45c4f3b664d1ea65b5990725e7d357b74e5b1e643ac9d3279e3d2dfa9207",
"security_profile": "instructions-only",
"permissions": {
"network": "optional",
"filesystem": "read",
"execution": "optional"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "design-system-contribution",
"description": "Guide contributions to a design system — component API, accessibility, tokens, and docs. Use whenever the user adds a design-system component, variants, design tokens, Storybook docs, or asks how to version UI primitives safely.",
"category": "coding",
"path": "skills/coding/design-system-contribution",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 328,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/design-system-contribution",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:3f13caba4bd3d30dac5295ea9641e54d2d9c9e579191942710484a819e0b04d3",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "design-tokens",
"description": "Implement a token and theming system — color, type, space, dark mode, CSS variables, and Style Dictionary. Use whenever the user mentions design tokens, theme tokens, CSS variables, dark mode tokens, style-dictionary, semantic color, a spacing scale, or \"tokenizing our theme\", or wants to replace hex and magic numbers with a theme contract.",
"category": "coding",
"path": "skills/coding/design-tokens",
"tier": "community",
"updated": "2026-08-16",
"context_tokens": 899,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/design-tokens",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts.",
"content_digest": "sha256:8c0fa26628606d158f67b26f392287d71337d22c387bbf2234c8e75b7edeba1a",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "desktop-release",
"description": "Plan and review desktop app releases — Electron, Tauri, and native installers, code signing, auto-update, and rollback. Use whenever the user asks about shipping a desktop build, Sparkle/Squirrel/electron- updater, notarization, MSI/DMG/AppImage, or a desktop release checklist.",
"category": "coding",
"path": "skills/coding/desktop-release",
"tier": "community",
"updated": "2026-08-16",
"context_tokens": 684,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/desktop-release",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:b3fae1f969c3467ac23659d21a128e9577fd9c7f18ffef9e062f45ed4013b004",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "error-handling",
"description": "Design robust error handling, retries, and failure modes for application code. Use whenever the user asks about exceptions, error types, retry policies, circuit breakers, timeouts, or how to handle failures in APIs, jobs, and distributed calls.",
"category": "coding",
"path": "skills/coding/error-handling",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 365,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/error-handling",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:3de1ba0b36deceb0640ed4278079758d03318d00ff2eacf4667811d9bfd2291e",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "feature-flags",
"description": "Design feature flag rollout plans with targeting, kill switches, and cleanup. Use whenever the user asks about feature flags, gradual rollout, percentage deploys, experiments in production, flag lifecycle, or technical debt from stale flags.",
"category": "coding",
"path": "skills/coding/feature-flags",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 321,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/feature-flags",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:bd173fd6330cec94f3bd76718611658bfa1839692da9b0514b8751f7e34f07c6",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "finops-review",
"description": "Review cloud spend and FinOps plans — idle resources, rightsizing, commitment discounts, and unit-cost metrics. Use whenever the user shares a bill, Cost Explorer export, asks why AWS/GCP/Azure is expensive, wants a savings plan, or reviews infra for cost before scaling.",
"category": "coding",
"path": "skills/coding/finops-review",
"tier": "community",
"updated": "2026-08-16",
"context_tokens": 683,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/finops-review",
"license": "Apache-2.0",
"compatibility": "Portable instructions; may interpret cost exports or invoices when provided.",
"content_digest": "sha256:51c3e1d2cb4df77d1520a9566d03f35f34d06e3d73c70a3b9070ac6083793895",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "frontend-performance",
"description": "Implement frontend performance — Core Web Vitals (LCP, INP, CLS), bundle size, code splitting, image optimization, hydration, and request waterfalls. Use whenever the user mentions Lighthouse, slow page load, LCP, INP, CLS, long tasks, TTFB for pages, or asks to shrink JS / split routes. For server, CPU, or DB profiling, use performance-review instead.",
"category": "coding",
"path": "skills/coding/frontend-performance",
"tier": "community",
"updated": "2026-08-16",
"context_tokens": 871,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/frontend-performance",
"license": "Apache-2.0",
"compatibility": "Portable instructions; may interpret Lighthouse/Web Vitals traces when provided.",
"content_digest": "sha256:201fcd565ba4ac4720c4275e21314962f41f1c897ae9aeb526febc0ed6b9cbd1",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "git-conflict-resolution",
"description": "Resolve git merge and rebase conflicts carefully while preserving intent. Use whenever the user has merge conflicts, rebase conflicts, or asks how to untangle conflicting branches, conflict markers, or conflicting file hunks.",
"category": "coding",
"path": "skills/coding/git-conflict-resolution",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 374,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/git-conflict-resolution",
"license": "Apache-2.0",
"compatibility": "Portable instructions; may use local git when available.",
"content_digest": "sha256:9990f137af32135c8bd7acc6e8d4ede52e8768ddfbaa815bb28194259a673391",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "optional"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "graphql-schema-design",
"description": "Design and review GraphQL schemas for authz, pagination, N+1 risk, nullability, and evolution. Use whenever the user works on GraphQL types, resolvers, connections, deprecations, query cost, or schema reviews — even when they only paste an SDL snippet.",
"category": "coding",
"path": "skills/coding/graphql-schema-design",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 354,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/graphql-schema-design",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:eb378f5b56174e8a69f7594e4dd8531378e80e8678ff031b5e1dbfb22e589093",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "helm-chart-scaffolding",
"description": "Scaffold and review Helm charts with safe defaults for values, templates, and hooks. Use whenever the user asks for a Helm chart, Chart.yaml, values.yaml production review, Helm upgrade hooks, or packaging a service for Helm install/upgrade.",
"category": "coding",
"path": "skills/coding/helm-chart-scaffolding",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 332,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/helm-chart-scaffolding",
"license": "Apache-2.0",
"compatibility": "Portable instructions; may sketch helm CLI commands when helpful.",
"content_digest": "sha256:b07248a6030040faf711b31089c180a845d7eb39c4ca5580ab971b3fadc4b575",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "optional"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "i18n-review",
"description": "Review product UI and copy for internationalization readiness — concatenation, pluralization, locale formats, RTL, and string extraction. Use whenever the user asks about i18n, l10n, localization readiness, translation safety, or whether strings are ready for other locales.",
"category": "coding",
"path": "skills/coding/i18n-review",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 434,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/i18n-review",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:73e6a418eaa843a79807e142ecf040f9c73bf4e455de24a40d4ca2a83f212c9a",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "kubernetes-review",
"description": "Review Kubernetes manifests and Helm values for security, reliability, and operability. Use whenever the user shares Deployment, Service, Ingress, StatefulSet, Helm charts, or asks about probes, RBAC, resource limits, network policies, or production-ready k8s YAML.",
"category": "coding",
"path": "skills/coding/kubernetes-review",
"tier": "community",
"updated": "2026-07-26",
"context_tokens": 380,
"reference_tokens": 0,
"has_scripts": false,
"has_benchmarks": true,
"source_url": "https://github.com/shinzoxD/knackbox/tree/main/skills/coding/kubernetes-review",
"license": "Apache-2.0",
"compatibility": "Portable instructions; no bundled scripts or required external binaries.",
"content_digest": "sha256:0e84c4eeafee51a34bcd22e95e96480366379b804a97476534a73e7f4a8cb55e",
"security_profile": "instructions-only",
"permissions": {
"network": "none",
"filesystem": "read",
"execution": "none"
},
"metrics": {
"efficiency": 100.0,
"trigger_accuracy": null,
"quality_uplift": null,
"skill_score": null,
"installs_30d": null,
"measured_at": null,
"model": null
}
},
{
"name": "load-test-planning",
"description": "Plan and interpret load tests with clear goals, scenarios, and pass/fail criteria. Use whenever the user asks for k6, Locust, JMeter, Gatling, soak tests, stress tests, capacity tests, or how to read p95 latency and error rates under load.",