@blamejs/exceptd-skills 0.9.1

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 (136) hide show
  1. package/AGENTS.md +232 -0
  2. package/ARCHITECTURE.md +267 -0
  3. package/CHANGELOG.md +616 -0
  4. package/CONTEXT.md +203 -0
  5. package/LICENSE +200 -0
  6. package/NOTICE +82 -0
  7. package/README.md +307 -0
  8. package/SECURITY.md +73 -0
  9. package/agents/README.md +81 -0
  10. package/agents/report-generator.md +156 -0
  11. package/agents/skill-updater.md +102 -0
  12. package/agents/source-validator.md +119 -0
  13. package/agents/threat-researcher.md +149 -0
  14. package/bin/exceptd.js +183 -0
  15. package/data/_indexes/_meta.json +88 -0
  16. package/data/_indexes/activity-feed.json +362 -0
  17. package/data/_indexes/catalog-summaries.json +229 -0
  18. package/data/_indexes/chains.json +7135 -0
  19. package/data/_indexes/currency.json +359 -0
  20. package/data/_indexes/did-ladders.json +451 -0
  21. package/data/_indexes/frequency.json +2072 -0
  22. package/data/_indexes/handoff-dag.json +476 -0
  23. package/data/_indexes/jurisdiction-clocks.json +967 -0
  24. package/data/_indexes/jurisdiction-map.json +536 -0
  25. package/data/_indexes/recipes.json +319 -0
  26. package/data/_indexes/section-offsets.json +3656 -0
  27. package/data/_indexes/stale-content.json +14 -0
  28. package/data/_indexes/summary-cards.json +1736 -0
  29. package/data/_indexes/theater-fingerprints.json +381 -0
  30. package/data/_indexes/token-budget.json +2137 -0
  31. package/data/_indexes/trigger-table.json +1374 -0
  32. package/data/_indexes/xref.json +818 -0
  33. package/data/atlas-ttps.json +282 -0
  34. package/data/cve-catalog.json +496 -0
  35. package/data/cwe-catalog.json +1017 -0
  36. package/data/d3fend-catalog.json +738 -0
  37. package/data/dlp-controls.json +1039 -0
  38. package/data/exploit-availability.json +67 -0
  39. package/data/framework-control-gaps.json +1255 -0
  40. package/data/global-frameworks.json +2913 -0
  41. package/data/rfc-references.json +324 -0
  42. package/data/zeroday-lessons.json +377 -0
  43. package/keys/public.pem +3 -0
  44. package/lib/framework-gap.js +328 -0
  45. package/lib/job-queue.js +195 -0
  46. package/lib/lint-skills.js +536 -0
  47. package/lib/prefetch.js +372 -0
  48. package/lib/refresh-external.js +713 -0
  49. package/lib/schemas/cve-catalog.schema.json +151 -0
  50. package/lib/schemas/manifest.schema.json +106 -0
  51. package/lib/schemas/skill-frontmatter.schema.json +113 -0
  52. package/lib/scoring.js +149 -0
  53. package/lib/sign.js +197 -0
  54. package/lib/ttp-mapper.js +80 -0
  55. package/lib/validate-catalog-meta.js +198 -0
  56. package/lib/validate-cve-catalog.js +213 -0
  57. package/lib/validate-indexes.js +83 -0
  58. package/lib/validate-package.js +162 -0
  59. package/lib/validate-vendor.js +85 -0
  60. package/lib/verify.js +216 -0
  61. package/lib/worker-pool.js +84 -0
  62. package/manifest-snapshot.json +1833 -0
  63. package/manifest.json +2108 -0
  64. package/orchestrator/README.md +124 -0
  65. package/orchestrator/dispatcher.js +140 -0
  66. package/orchestrator/event-bus.js +146 -0
  67. package/orchestrator/index.js +874 -0
  68. package/orchestrator/pipeline.js +201 -0
  69. package/orchestrator/scanner.js +327 -0
  70. package/orchestrator/scheduler.js +137 -0
  71. package/package.json +113 -0
  72. package/sbom.cdx.json +158 -0
  73. package/scripts/audit-cross-skill.js +261 -0
  74. package/scripts/audit-perf.js +160 -0
  75. package/scripts/bootstrap.js +205 -0
  76. package/scripts/build-indexes.js +721 -0
  77. package/scripts/builders/activity-feed.js +79 -0
  78. package/scripts/builders/catalog-summaries.js +67 -0
  79. package/scripts/builders/currency.js +109 -0
  80. package/scripts/builders/cwe-chains.js +105 -0
  81. package/scripts/builders/did-ladders.js +149 -0
  82. package/scripts/builders/frequency.js +89 -0
  83. package/scripts/builders/jurisdiction-clocks.js +126 -0
  84. package/scripts/builders/recipes.js +159 -0
  85. package/scripts/builders/section-offsets.js +162 -0
  86. package/scripts/builders/stale-content.js +171 -0
  87. package/scripts/builders/summary-cards.js +166 -0
  88. package/scripts/builders/theater-fingerprints.js +198 -0
  89. package/scripts/builders/token-budget.js +96 -0
  90. package/scripts/check-manifest-snapshot.js +217 -0
  91. package/scripts/predeploy.js +267 -0
  92. package/scripts/refresh-manifest-snapshot.js +57 -0
  93. package/scripts/refresh-sbom.js +222 -0
  94. package/skills/age-gates-child-safety/skill.md +456 -0
  95. package/skills/ai-attack-surface/skill.md +282 -0
  96. package/skills/ai-c2-detection/skill.md +440 -0
  97. package/skills/ai-risk-management/skill.md +311 -0
  98. package/skills/api-security/skill.md +287 -0
  99. package/skills/attack-surface-pentest/skill.md +381 -0
  100. package/skills/cloud-security/skill.md +384 -0
  101. package/skills/compliance-theater/skill.md +365 -0
  102. package/skills/container-runtime-security/skill.md +379 -0
  103. package/skills/coordinated-vuln-disclosure/skill.md +473 -0
  104. package/skills/defensive-countermeasure-mapping/skill.md +300 -0
  105. package/skills/dlp-gap-analysis/skill.md +337 -0
  106. package/skills/email-security-anti-phishing/skill.md +206 -0
  107. package/skills/exploit-scoring/skill.md +331 -0
  108. package/skills/framework-gap-analysis/skill.md +374 -0
  109. package/skills/fuzz-testing-strategy/skill.md +313 -0
  110. package/skills/global-grc/skill.md +564 -0
  111. package/skills/identity-assurance/skill.md +272 -0
  112. package/skills/incident-response-playbook/skill.md +546 -0
  113. package/skills/kernel-lpe-triage/skill.md +303 -0
  114. package/skills/mcp-agent-trust/skill.md +326 -0
  115. package/skills/mlops-security/skill.md +325 -0
  116. package/skills/ot-ics-security/skill.md +340 -0
  117. package/skills/policy-exception-gen/skill.md +437 -0
  118. package/skills/pqc-first/skill.md +546 -0
  119. package/skills/rag-pipeline-security/skill.md +294 -0
  120. package/skills/researcher/skill.md +310 -0
  121. package/skills/sector-energy/skill.md +409 -0
  122. package/skills/sector-federal-government/skill.md +302 -0
  123. package/skills/sector-financial/skill.md +398 -0
  124. package/skills/sector-healthcare/skill.md +373 -0
  125. package/skills/security-maturity-tiers/skill.md +464 -0
  126. package/skills/skill-update-loop/skill.md +463 -0
  127. package/skills/supply-chain-integrity/skill.md +318 -0
  128. package/skills/threat-model-currency/skill.md +404 -0
  129. package/skills/threat-modeling-methodology/skill.md +312 -0
  130. package/skills/webapp-security/skill.md +281 -0
  131. package/skills/zeroday-gap-learn/skill.md +350 -0
  132. package/vendor/blamejs/LICENSE +201 -0
  133. package/vendor/blamejs/README.md +54 -0
  134. package/vendor/blamejs/_PROVENANCE.json +54 -0
  135. package/vendor/blamejs/retry.js +335 -0
  136. package/vendor/blamejs/worker-pool.js +418 -0
@@ -0,0 +1,2137 @@
1
+ {
2
+ "_meta": {
3
+ "schema_version": "1.0.0",
4
+ "tokenizer_note": "Character-density approximation: 1 token ≈ 4 chars. This is the canonical rule-of-thumb for OpenAI tokenizers on English+technical text. Claude's tokenizer is typically more efficient on prose; treat this as an upper-bound budget for both. Consumers with stricter precision needs should re-tokenize with their own tokenizer.",
5
+ "approx_chars_per_token": 4,
6
+ "total_chars": 1337563,
7
+ "total_approx_tokens": 334394,
8
+ "skill_count": 38
9
+ },
10
+ "skills": {
11
+ "kernel-lpe-triage": {
12
+ "path": "skills/kernel-lpe-triage/skill.md",
13
+ "bytes": 19039,
14
+ "chars": 18941,
15
+ "lines": 304,
16
+ "approx_tokens": 4735,
17
+ "approx_chars_per_token": 4,
18
+ "sections": {
19
+ "threat-context": {
20
+ "bytes": 3156,
21
+ "chars": 3126,
22
+ "approx_tokens": 782
23
+ },
24
+ "framework-lag-declaration": {
25
+ "bytes": 2519,
26
+ "chars": 2509,
27
+ "approx_tokens": 627
28
+ },
29
+ "ttp-mapping": {
30
+ "bytes": 2917,
31
+ "chars": 2887,
32
+ "approx_tokens": 722
33
+ },
34
+ "exploit-availability-matrix": {
35
+ "bytes": 616,
36
+ "chars": 614,
37
+ "approx_tokens": 154
38
+ },
39
+ "analysis-procedure": {
40
+ "bytes": 4591,
41
+ "chars": 4589,
42
+ "approx_tokens": 1147
43
+ },
44
+ "output-format": {
45
+ "bytes": 1407,
46
+ "chars": 1399,
47
+ "approx_tokens": 350
48
+ },
49
+ "detection-rules": {
50
+ "bytes": 689,
51
+ "chars": 687,
52
+ "approx_tokens": 172
53
+ },
54
+ "hand-off": {
55
+ "bytes": 2269,
56
+ "chars": 2257,
57
+ "approx_tokens": 564
58
+ }
59
+ }
60
+ },
61
+ "ai-attack-surface": {
62
+ "path": "skills/ai-attack-surface/skill.md",
63
+ "bytes": 16241,
64
+ "chars": 16215,
65
+ "lines": 283,
66
+ "approx_tokens": 4054,
67
+ "approx_chars_per_token": 4,
68
+ "sections": {
69
+ "threat-context": {
70
+ "bytes": 4828,
71
+ "chars": 4810,
72
+ "approx_tokens": 1203
73
+ },
74
+ "framework-lag-declaration": {
75
+ "bytes": 2465,
76
+ "chars": 2461,
77
+ "approx_tokens": 615
78
+ },
79
+ "ttp-mapping": {
80
+ "bytes": 1766,
81
+ "chars": 1764,
82
+ "approx_tokens": 441
83
+ },
84
+ "exploit-availability-matrix": {
85
+ "bytes": 620,
86
+ "chars": 618,
87
+ "approx_tokens": 155
88
+ },
89
+ "analysis-procedure": {
90
+ "bytes": 3327,
91
+ "chars": 3327,
92
+ "approx_tokens": 832
93
+ },
94
+ "output-format": {
95
+ "bytes": 1117,
96
+ "chars": 1117,
97
+ "approx_tokens": 279
98
+ },
99
+ "compliance-theater-check": {
100
+ "bytes": 1086,
101
+ "chars": 1086,
102
+ "approx_tokens": 272
103
+ }
104
+ }
105
+ },
106
+ "mcp-agent-trust": {
107
+ "path": "skills/mcp-agent-trust/skill.md",
108
+ "bytes": 19649,
109
+ "chars": 19587,
110
+ "lines": 327,
111
+ "approx_tokens": 4897,
112
+ "approx_chars_per_token": 4,
113
+ "sections": {
114
+ "threat-context": {
115
+ "bytes": 3373,
116
+ "chars": 3369,
117
+ "approx_tokens": 842
118
+ },
119
+ "framework-lag-declaration": {
120
+ "bytes": 3837,
121
+ "chars": 3825,
122
+ "approx_tokens": 956
123
+ },
124
+ "ttp-mapping": {
125
+ "bytes": 1195,
126
+ "chars": 1191,
127
+ "approx_tokens": 298
128
+ },
129
+ "exploit-availability-matrix": {
130
+ "bytes": 2357,
131
+ "chars": 2333,
132
+ "approx_tokens": 583
133
+ },
134
+ "analysis-procedure": {
135
+ "bytes": 3859,
136
+ "chars": 3855,
137
+ "approx_tokens": 964
138
+ },
139
+ "output-format": {
140
+ "bytes": 977,
141
+ "chars": 975,
142
+ "approx_tokens": 244
143
+ },
144
+ "hand-off": {
145
+ "bytes": 2441,
146
+ "chars": 2431,
147
+ "approx_tokens": 608
148
+ },
149
+ "compliance-theater-check": {
150
+ "bytes": 513,
151
+ "chars": 513,
152
+ "approx_tokens": 128
153
+ }
154
+ }
155
+ },
156
+ "framework-gap-analysis": {
157
+ "path": "skills/framework-gap-analysis/skill.md",
158
+ "bytes": 25733,
159
+ "chars": 25689,
160
+ "lines": 375,
161
+ "approx_tokens": 6422,
162
+ "approx_chars_per_token": 4,
163
+ "sections": {
164
+ "threat-context": {
165
+ "bytes": 1459,
166
+ "chars": 1453,
167
+ "approx_tokens": 363
168
+ },
169
+ "framework-lag-declaration": {
170
+ "bytes": 3275,
171
+ "chars": 3271,
172
+ "approx_tokens": 818
173
+ },
174
+ "ttp-mapping": {
175
+ "bytes": 1800,
176
+ "chars": 1800,
177
+ "approx_tokens": 450
178
+ },
179
+ "exploit-availability-matrix": {
180
+ "bytes": 1344,
181
+ "chars": 1344,
182
+ "approx_tokens": 336
183
+ },
184
+ "built-in-gap-catalog": {
185
+ "bytes": 10124,
186
+ "chars": 10096,
187
+ "approx_tokens": 2524
188
+ },
189
+ "analysis-procedure": {
190
+ "bytes": 1718,
191
+ "chars": 1716,
192
+ "approx_tokens": 429
193
+ },
194
+ "universal-gaps-no-framework-covers-these-adequately": {
195
+ "bytes": 1095,
196
+ "chars": 1095,
197
+ "approx_tokens": 274
198
+ },
199
+ "output-format": {
200
+ "bytes": 1934,
201
+ "chars": 1932,
202
+ "approx_tokens": 483
203
+ },
204
+ "compliance-theater-check": {
205
+ "bytes": 2167,
206
+ "chars": 2167,
207
+ "approx_tokens": 542
208
+ }
209
+ }
210
+ },
211
+ "compliance-theater": {
212
+ "path": "skills/compliance-theater/skill.md",
213
+ "bytes": 27568,
214
+ "chars": 27506,
215
+ "lines": 366,
216
+ "approx_tokens": 6877,
217
+ "approx_chars_per_token": 4,
218
+ "sections": {
219
+ "threat-context": {
220
+ "bytes": 1804,
221
+ "chars": 1798,
222
+ "approx_tokens": 450
223
+ },
224
+ "framework-lag-declaration": {
225
+ "bytes": 3764,
226
+ "chars": 3762,
227
+ "approx_tokens": 941
228
+ },
229
+ "ttp-mapping": {
230
+ "bytes": 2174,
231
+ "chars": 2156,
232
+ "approx_tokens": 539
233
+ },
234
+ "exploit-availability-matrix": {
235
+ "bytes": 1763,
236
+ "chars": 1763,
237
+ "approx_tokens": 441
238
+ },
239
+ "theater-pattern-library": {
240
+ "bytes": 11992,
241
+ "chars": 11976,
242
+ "approx_tokens": 2994
243
+ },
244
+ "analysis-procedure": {
245
+ "bytes": 943,
246
+ "chars": 933,
247
+ "approx_tokens": 233
248
+ },
249
+ "output-format": {
250
+ "bytes": 1263,
251
+ "chars": 1263,
252
+ "approx_tokens": 316
253
+ },
254
+ "compliance-theater-check": {
255
+ "bytes": 2716,
256
+ "chars": 2710,
257
+ "approx_tokens": 678
258
+ }
259
+ }
260
+ },
261
+ "exploit-scoring": {
262
+ "path": "skills/exploit-scoring/skill.md",
263
+ "bytes": 20459,
264
+ "chars": 20333,
265
+ "lines": 332,
266
+ "approx_tokens": 5083,
267
+ "approx_chars_per_token": 4,
268
+ "sections": {
269
+ "threat-context": {
270
+ "bytes": 1685,
271
+ "chars": 1677,
272
+ "approx_tokens": 419
273
+ },
274
+ "framework-lag-declaration": {
275
+ "bytes": 2410,
276
+ "chars": 2404,
277
+ "approx_tokens": 601
278
+ },
279
+ "ttp-mapping": {
280
+ "bytes": 1163,
281
+ "chars": 1159,
282
+ "approx_tokens": 290
283
+ },
284
+ "exploit-availability-matrix": {
285
+ "bytes": 1287,
286
+ "chars": 1283,
287
+ "approx_tokens": 321
288
+ },
289
+ "rwep-formula": {
290
+ "bytes": 2866,
291
+ "chars": 2856,
292
+ "approx_tokens": 714
293
+ },
294
+ "pre-calculated-rwep-scores": {
295
+ "bytes": 4028,
296
+ "chars": 3995,
297
+ "approx_tokens": 999
298
+ },
299
+ "rwep-vs-cvss-delta-analysis": {
300
+ "bytes": 1395,
301
+ "chars": 1377,
302
+ "approx_tokens": 344
303
+ },
304
+ "analysis-procedure": {
305
+ "bytes": 1691,
306
+ "chars": 1665,
307
+ "approx_tokens": 416
308
+ },
309
+ "output-format": {
310
+ "bytes": 1054,
311
+ "chars": 1053,
312
+ "approx_tokens": 263
313
+ },
314
+ "compliance-theater-check": {
315
+ "bytes": 1796,
316
+ "chars": 1786,
317
+ "approx_tokens": 447
318
+ }
319
+ }
320
+ },
321
+ "rag-pipeline-security": {
322
+ "path": "skills/rag-pipeline-security/skill.md",
323
+ "bytes": 24056,
324
+ "chars": 23915,
325
+ "lines": 295,
326
+ "approx_tokens": 5979,
327
+ "approx_chars_per_token": 4,
328
+ "sections": {
329
+ "threat-context": {
330
+ "bytes": 947,
331
+ "chars": 931,
332
+ "approx_tokens": 233
333
+ },
334
+ "attack-class-1-embedding-manipulation-for-data-exfiltration": {
335
+ "bytes": 1641,
336
+ "chars": 1639,
337
+ "approx_tokens": 410
338
+ },
339
+ "attack-class-2-vector-store-poisoning": {
340
+ "bytes": 2013,
341
+ "chars": 2009,
342
+ "approx_tokens": 502
343
+ },
344
+ "attack-class-3-chunking-exploitation": {
345
+ "bytes": 1223,
346
+ "chars": 1221,
347
+ "approx_tokens": 305
348
+ },
349
+ "attack-class-4-retrieval-filter-bypass": {
350
+ "bytes": 1203,
351
+ "chars": 1203,
352
+ "approx_tokens": 301
353
+ },
354
+ "attack-class-5-indirect-prompt-injection-via-retrieved-documents": {
355
+ "bytes": 1695,
356
+ "chars": 1691,
357
+ "approx_tokens": 423
358
+ },
359
+ "framework-lag-declaration": {
360
+ "bytes": 1408,
361
+ "chars": 1404,
362
+ "approx_tokens": 351
363
+ },
364
+ "ttp-mapping": {
365
+ "bytes": 3642,
366
+ "chars": 3616,
367
+ "approx_tokens": 904
368
+ },
369
+ "exploit-availability-matrix": {
370
+ "bytes": 3610,
371
+ "chars": 3570,
372
+ "approx_tokens": 893
373
+ },
374
+ "analysis-procedure": {
375
+ "bytes": 1720,
376
+ "chars": 1714,
377
+ "approx_tokens": 429
378
+ },
379
+ "output-format": {
380
+ "bytes": 843,
381
+ "chars": 829,
382
+ "approx_tokens": 207
383
+ },
384
+ "hand-off": {
385
+ "bytes": 2639,
386
+ "chars": 2624,
387
+ "approx_tokens": 656
388
+ },
389
+ "compliance-theater-check": {
390
+ "bytes": 644,
391
+ "chars": 640,
392
+ "approx_tokens": 160
393
+ }
394
+ }
395
+ },
396
+ "ai-c2-detection": {
397
+ "path": "skills/ai-c2-detection/skill.md",
398
+ "bytes": 29528,
399
+ "chars": 29404,
400
+ "lines": 441,
401
+ "approx_tokens": 7351,
402
+ "approx_chars_per_token": 4,
403
+ "sections": {
404
+ "threat-context": {
405
+ "bytes": 4791,
406
+ "chars": 4783,
407
+ "approx_tokens": 1196
408
+ },
409
+ "framework-lag-declaration": {
410
+ "bytes": 1486,
411
+ "chars": 1484,
412
+ "approx_tokens": 371
413
+ },
414
+ "detection-architecture": {
415
+ "bytes": 2619,
416
+ "chars": 2609,
417
+ "approx_tokens": 652
418
+ },
419
+ "incident-response-playbook-ai-c2": {
420
+ "bytes": 2361,
421
+ "chars": 2353,
422
+ "approx_tokens": 588
423
+ },
424
+ "detection-rules": {
425
+ "bytes": 1200,
426
+ "chars": 1194,
427
+ "approx_tokens": 299
428
+ },
429
+ "ttp-mapping": {
430
+ "bytes": 2984,
431
+ "chars": 2964,
432
+ "approx_tokens": 741
433
+ },
434
+ "exploit-availability-matrix": {
435
+ "bytes": 3953,
436
+ "chars": 3919,
437
+ "approx_tokens": 980
438
+ },
439
+ "analysis-procedure": {
440
+ "bytes": 4084,
441
+ "chars": 4070,
442
+ "approx_tokens": 1018
443
+ },
444
+ "compliance-theater-check": {
445
+ "bytes": 1390,
446
+ "chars": 1382,
447
+ "approx_tokens": 346
448
+ },
449
+ "output-format": {
450
+ "bytes": 858,
451
+ "chars": 858,
452
+ "approx_tokens": 215
453
+ },
454
+ "hand-off": {
455
+ "bytes": 2943,
456
+ "chars": 2931,
457
+ "approx_tokens": 733
458
+ }
459
+ }
460
+ },
461
+ "policy-exception-gen": {
462
+ "path": "skills/policy-exception-gen/skill.md",
463
+ "bytes": 28403,
464
+ "chars": 28321,
465
+ "lines": 438,
466
+ "approx_tokens": 7080,
467
+ "approx_chars_per_token": 4,
468
+ "sections": {
469
+ "threat-context": {
470
+ "bytes": 2232,
471
+ "chars": 2226,
472
+ "approx_tokens": 557
473
+ },
474
+ "framework-lag-declaration": {
475
+ "bytes": 2557,
476
+ "chars": 2551,
477
+ "approx_tokens": 638
478
+ },
479
+ "ttp-mapping": {
480
+ "bytes": 1965,
481
+ "chars": 1949,
482
+ "approx_tokens": 487
483
+ },
484
+ "exploit-availability-matrix": {
485
+ "bytes": 1924,
486
+ "chars": 1910,
487
+ "approx_tokens": 478
488
+ },
489
+ "exception-template-library": {
490
+ "bytes": 13218,
491
+ "chars": 13194,
492
+ "approx_tokens": 3299
493
+ },
494
+ "analysis-procedure": {
495
+ "bytes": 1545,
496
+ "chars": 1539,
497
+ "approx_tokens": 385
498
+ },
499
+ "output-format": {
500
+ "bytes": 363,
501
+ "chars": 363,
502
+ "approx_tokens": 91
503
+ },
504
+ "compliance-theater-check": {
505
+ "bytes": 3182,
506
+ "chars": 3174,
507
+ "approx_tokens": 794
508
+ }
509
+ }
510
+ },
511
+ "threat-model-currency": {
512
+ "path": "skills/threat-model-currency/skill.md",
513
+ "bytes": 24982,
514
+ "chars": 24882,
515
+ "lines": 405,
516
+ "approx_tokens": 6221,
517
+ "approx_chars_per_token": 4,
518
+ "sections": {
519
+ "purpose": {
520
+ "bytes": 545,
521
+ "chars": 541,
522
+ "approx_tokens": 135
523
+ },
524
+ "the-14-threat-class-checklist": {
525
+ "bytes": 10146,
526
+ "chars": 10138,
527
+ "approx_tokens": 2535
528
+ },
529
+ "threat-context": {
530
+ "bytes": 1828,
531
+ "chars": 1824,
532
+ "approx_tokens": 456
533
+ },
534
+ "framework-lag-declaration": {
535
+ "bytes": 2588,
536
+ "chars": 2584,
537
+ "approx_tokens": 646
538
+ },
539
+ "ttp-mapping": {
540
+ "bytes": 2897,
541
+ "chars": 2859,
542
+ "approx_tokens": 715
543
+ },
544
+ "exploit-availability-matrix": {
545
+ "bytes": 1799,
546
+ "chars": 1785,
547
+ "approx_tokens": 446
548
+ },
549
+ "compliance-theater-check": {
550
+ "bytes": 1568,
551
+ "chars": 1564,
552
+ "approx_tokens": 391
553
+ },
554
+ "scoring": {
555
+ "bytes": 542,
556
+ "chars": 520,
557
+ "approx_tokens": 130
558
+ },
559
+ "analysis-procedure": {
560
+ "bytes": 930,
561
+ "chars": 930,
562
+ "approx_tokens": 233
563
+ },
564
+ "output-format": {
565
+ "bytes": 1295,
566
+ "chars": 1295,
567
+ "approx_tokens": 324
568
+ }
569
+ }
570
+ },
571
+ "global-grc": {
572
+ "path": "skills/global-grc/skill.md",
573
+ "bytes": 39735,
574
+ "chars": 39541,
575
+ "lines": 565,
576
+ "approx_tokens": 9885,
577
+ "approx_chars_per_token": 4,
578
+ "sections": {
579
+ "framework-registry-mid-2026-currency": {
580
+ "bytes": 17748,
581
+ "chars": 17650,
582
+ "approx_tokens": 4413
583
+ },
584
+ "universal-gaps-no-jurisdiction-covers-these": {
585
+ "bytes": 1104,
586
+ "chars": 1104,
587
+ "approx_tokens": 276
588
+ },
589
+ "notification-timeline-summary": {
590
+ "bytes": 924,
591
+ "chars": 924,
592
+ "approx_tokens": 231
593
+ },
594
+ "threat-context": {
595
+ "bytes": 2562,
596
+ "chars": 2542,
597
+ "approx_tokens": 636
598
+ },
599
+ "framework-lag-declaration": {
600
+ "bytes": 7760,
601
+ "chars": 7726,
602
+ "approx_tokens": 1932
603
+ },
604
+ "ttp-mapping": {
605
+ "bytes": 1990,
606
+ "chars": 1975,
607
+ "approx_tokens": 494
608
+ },
609
+ "exploit-availability-matrix": {
610
+ "bytes": 2899,
611
+ "chars": 2887,
612
+ "approx_tokens": 722
613
+ },
614
+ "compliance-theater-check": {
615
+ "bytes": 1963,
616
+ "chars": 1953,
617
+ "approx_tokens": 488
618
+ },
619
+ "analysis-procedure": {
620
+ "bytes": 1036,
621
+ "chars": 1033,
622
+ "approx_tokens": 258
623
+ },
624
+ "output-format": {
625
+ "bytes": 814,
626
+ "chars": 814,
627
+ "approx_tokens": 204
628
+ }
629
+ }
630
+ },
631
+ "zeroday-gap-learn": {
632
+ "path": "skills/zeroday-gap-learn/skill.md",
633
+ "bytes": 22177,
634
+ "chars": 22061,
635
+ "lines": 351,
636
+ "approx_tokens": 5515,
637
+ "approx_chars_per_token": 4,
638
+ "sections": {
639
+ "threat-context": {
640
+ "bytes": 1673,
641
+ "chars": 1665,
642
+ "approx_tokens": 416
643
+ },
644
+ "framework-lag-declaration": {
645
+ "bytes": 2545,
646
+ "chars": 2535,
647
+ "approx_tokens": 634
648
+ },
649
+ "ttp-mapping": {
650
+ "bytes": 1195,
651
+ "chars": 1191,
652
+ "approx_tokens": 298
653
+ },
654
+ "exploit-availability-matrix": {
655
+ "bytes": 1589,
656
+ "chars": 1575,
657
+ "approx_tokens": 394
658
+ },
659
+ "the-learning-loop": {
660
+ "bytes": 1417,
661
+ "chars": 1371,
662
+ "approx_tokens": 343
663
+ },
664
+ "pre-run-lessons-encoded-from-documented-zero-days": {
665
+ "bytes": 7673,
666
+ "chars": 7657,
667
+ "approx_tokens": 1914
668
+ },
669
+ "analysis-procedure": {
670
+ "bytes": 2122,
671
+ "chars": 2122,
672
+ "approx_tokens": 531
673
+ },
674
+ "output-format": {
675
+ "bytes": 859,
676
+ "chars": 859,
677
+ "approx_tokens": 215
678
+ },
679
+ "compliance-theater-check": {
680
+ "bytes": 1838,
681
+ "chars": 1834,
682
+ "approx_tokens": 459
683
+ }
684
+ }
685
+ },
686
+ "pqc-first": {
687
+ "path": "skills/pqc-first/skill.md",
688
+ "bytes": 33339,
689
+ "chars": 33193,
690
+ "lines": 547,
691
+ "approx_tokens": 8298,
692
+ "approx_chars_per_token": 4,
693
+ "sections": {
694
+ "threat-context": {
695
+ "bytes": 2628,
696
+ "chars": 2606,
697
+ "approx_tokens": 652
698
+ },
699
+ "framework-lag-declaration": {
700
+ "bytes": 7929,
701
+ "chars": 7905,
702
+ "approx_tokens": 1976
703
+ },
704
+ "ttp-mapping": {
705
+ "bytes": 2102,
706
+ "chars": 2090,
707
+ "approx_tokens": 523
708
+ },
709
+ "exploit-availability-matrix": {
710
+ "bytes": 2472,
711
+ "chars": 2470,
712
+ "approx_tokens": 618
713
+ },
714
+ "core-principle": {
715
+ "bytes": 727,
716
+ "chars": 725,
717
+ "approx_tokens": 181
718
+ },
719
+ "version-gates-non-negotiable-minimums": {
720
+ "bytes": 2434,
721
+ "chars": 2430,
722
+ "approx_tokens": 608
723
+ },
724
+ "algorithm-registry": {
725
+ "bytes": 3569,
726
+ "chars": 3553,
727
+ "approx_tokens": 888
728
+ },
729
+ "hybrid-construction-requirements": {
730
+ "bytes": 1272,
731
+ "chars": 1272,
732
+ "approx_tokens": 318
733
+ },
734
+ "harvest-now-decrypt-later-hndl-threat-assessment": {
735
+ "bytes": 1631,
736
+ "chars": 1619,
737
+ "approx_tokens": 405
738
+ },
739
+ "loopback-learning-standards-evolution-tracking": {
740
+ "bytes": 2545,
741
+ "chars": 2515,
742
+ "approx_tokens": 629
743
+ },
744
+ "framework-coverage": {
745
+ "bytes": 1598,
746
+ "chars": 1586,
747
+ "approx_tokens": 397
748
+ },
749
+ "analysis-procedure": {
750
+ "bytes": 1499,
751
+ "chars": 1499,
752
+ "approx_tokens": 375
753
+ },
754
+ "output-format": {
755
+ "bytes": 764,
756
+ "chars": 760,
757
+ "approx_tokens": 190
758
+ },
759
+ "compliance-theater-check": {
760
+ "bytes": 660,
761
+ "chars": 660,
762
+ "approx_tokens": 165
763
+ }
764
+ }
765
+ },
766
+ "skill-update-loop": {
767
+ "path": "skills/skill-update-loop/skill.md",
768
+ "bytes": 39993,
769
+ "chars": 39897,
770
+ "lines": 464,
771
+ "approx_tokens": 9974,
772
+ "approx_chars_per_token": 4,
773
+ "sections": {
774
+ "why-skills-decay": {
775
+ "bytes": 887,
776
+ "chars": 887,
777
+ "approx_tokens": 222
778
+ },
779
+ "update-triggers-and-assigned-skills": {
780
+ "bytes": 27444,
781
+ "chars": 27372,
782
+ "approx_tokens": 6843
783
+ },
784
+ "skill-currency-scores": {
785
+ "bytes": 590,
786
+ "chars": 584,
787
+ "approx_tokens": 146
788
+ },
789
+ "running-the-update-loop": {
790
+ "bytes": 952,
791
+ "chars": 952,
792
+ "approx_tokens": 238
793
+ },
794
+ "analysis-procedure": {
795
+ "bytes": 892,
796
+ "chars": 890,
797
+ "approx_tokens": 223
798
+ },
799
+ "output-format": {
800
+ "bytes": 522,
801
+ "chars": 522,
802
+ "approx_tokens": 131
803
+ },
804
+ "framework-lag-declaration": {
805
+ "bytes": 2803,
806
+ "chars": 2795,
807
+ "approx_tokens": 699
808
+ },
809
+ "exploit-availability-matrix": {
810
+ "bytes": 2718,
811
+ "chars": 2712,
812
+ "approx_tokens": 678
813
+ },
814
+ "compliance-theater-check": {
815
+ "bytes": 1671,
816
+ "chars": 1671,
817
+ "approx_tokens": 418
818
+ }
819
+ }
820
+ },
821
+ "security-maturity-tiers": {
822
+ "path": "skills/security-maturity-tiers/skill.md",
823
+ "bytes": 26953,
824
+ "chars": 26795,
825
+ "lines": 465,
826
+ "approx_tokens": 6699,
827
+ "approx_chars_per_token": 4,
828
+ "sections": {
829
+ "how-to-use-this-skill": {
830
+ "bytes": 411,
831
+ "chars": 409,
832
+ "approx_tokens": 102
833
+ },
834
+ "tier-framework": {
835
+ "bytes": 514,
836
+ "chars": 512,
837
+ "approx_tokens": 128
838
+ },
839
+ "domain-kernel-lpe-copy-fail-dirty-frag-class": {
840
+ "bytes": 4068,
841
+ "chars": 4058,
842
+ "approx_tokens": 1015
843
+ },
844
+ "domain-ai-attack-surface": {
845
+ "bytes": 2706,
846
+ "chars": 2680,
847
+ "approx_tokens": 670
848
+ },
849
+ "domain-cryptography-pqc": {
850
+ "bytes": 2044,
851
+ "chars": 2020,
852
+ "approx_tokens": 505
853
+ },
854
+ "domain-grc-compliance": {
855
+ "bytes": 1960,
856
+ "chars": 1930,
857
+ "approx_tokens": 483
858
+ },
859
+ "analysis-procedure": {
860
+ "bytes": 1651,
861
+ "chars": 1621,
862
+ "approx_tokens": 405
863
+ },
864
+ "output-format": {
865
+ "bytes": 993,
866
+ "chars": 985,
867
+ "approx_tokens": 246
868
+ },
869
+ "the-anti-pattern-tier-3-security-theater": {
870
+ "bytes": 644,
871
+ "chars": 644,
872
+ "approx_tokens": 161
873
+ },
874
+ "threat-context": {
875
+ "bytes": 1995,
876
+ "chars": 1993,
877
+ "approx_tokens": 498
878
+ },
879
+ "framework-lag-declaration": {
880
+ "bytes": 3911,
881
+ "chars": 3895,
882
+ "approx_tokens": 974
883
+ },
884
+ "ttp-mapping": {
885
+ "bytes": 2373,
886
+ "chars": 2371,
887
+ "approx_tokens": 593
888
+ },
889
+ "exploit-availability-matrix": {
890
+ "bytes": 2378,
891
+ "chars": 2374,
892
+ "approx_tokens": 594
893
+ }
894
+ }
895
+ },
896
+ "researcher": {
897
+ "path": "skills/researcher/skill.md",
898
+ "bytes": 28472,
899
+ "chars": 28304,
900
+ "lines": 311,
901
+ "approx_tokens": 7076,
902
+ "approx_chars_per_token": 4,
903
+ "sections": {
904
+ "threat-context": {
905
+ "bytes": 2945,
906
+ "chars": 2937,
907
+ "approx_tokens": 734
908
+ },
909
+ "framework-lag-declaration": {
910
+ "bytes": 2413,
911
+ "chars": 2413,
912
+ "approx_tokens": 603
913
+ },
914
+ "ttp-mapping": {
915
+ "bytes": 1577,
916
+ "chars": 1573,
917
+ "approx_tokens": 393
918
+ },
919
+ "exploit-availability-matrix": {
920
+ "bytes": 1512,
921
+ "chars": 1506,
922
+ "approx_tokens": 377
923
+ },
924
+ "analysis-procedure": {
925
+ "bytes": 13999,
926
+ "chars": 13871,
927
+ "approx_tokens": 3468
928
+ },
929
+ "output-format": {
930
+ "bytes": 2589,
931
+ "chars": 2577,
932
+ "approx_tokens": 644
933
+ },
934
+ "compliance-theater-check": {
935
+ "bytes": 2113,
936
+ "chars": 2107,
937
+ "approx_tokens": 527
938
+ }
939
+ }
940
+ },
941
+ "attack-surface-pentest": {
942
+ "path": "skills/attack-surface-pentest/skill.md",
943
+ "bytes": 32038,
944
+ "chars": 31899,
945
+ "lines": 382,
946
+ "approx_tokens": 7975,
947
+ "approx_chars_per_token": 4,
948
+ "sections": {
949
+ "threat-context": {
950
+ "bytes": 4447,
951
+ "chars": 4433,
952
+ "approx_tokens": 1108
953
+ },
954
+ "framework-lag-declaration": {
955
+ "bytes": 4561,
956
+ "chars": 4551,
957
+ "approx_tokens": 1138
958
+ },
959
+ "ttp-mapping": {
960
+ "bytes": 2217,
961
+ "chars": 2196,
962
+ "approx_tokens": 549
963
+ },
964
+ "exploit-availability-matrix": {
965
+ "bytes": 2468,
966
+ "chars": 2452,
967
+ "approx_tokens": 613
968
+ },
969
+ "analysis-procedure": {
970
+ "bytes": 9703,
971
+ "chars": 9651,
972
+ "approx_tokens": 2413
973
+ },
974
+ "output-format": {
975
+ "bytes": 3349,
976
+ "chars": 3341,
977
+ "approx_tokens": 835
978
+ },
979
+ "compliance-theater-check": {
980
+ "bytes": 2316,
981
+ "chars": 2302,
982
+ "approx_tokens": 576
983
+ },
984
+ "defensive-countermeasure-mapping": {
985
+ "bytes": 1611,
986
+ "chars": 1609,
987
+ "approx_tokens": 402
988
+ }
989
+ }
990
+ },
991
+ "fuzz-testing-strategy": {
992
+ "path": "skills/fuzz-testing-strategy/skill.md",
993
+ "bytes": 30550,
994
+ "chars": 30409,
995
+ "lines": 314,
996
+ "approx_tokens": 7602,
997
+ "approx_chars_per_token": 4,
998
+ "sections": {
999
+ "threat-context": {
1000
+ "bytes": 2905,
1001
+ "chars": 2901,
1002
+ "approx_tokens": 725
1003
+ },
1004
+ "framework-lag-declaration": {
1005
+ "bytes": 5320,
1006
+ "chars": 5305,
1007
+ "approx_tokens": 1326
1008
+ },
1009
+ "ttp-mapping": {
1010
+ "bytes": 2064,
1011
+ "chars": 2056,
1012
+ "approx_tokens": 514
1013
+ },
1014
+ "exploit-availability-matrix": {
1015
+ "bytes": 2705,
1016
+ "chars": 2681,
1017
+ "approx_tokens": 670
1018
+ },
1019
+ "analysis-procedure": {
1020
+ "bytes": 7158,
1021
+ "chars": 7080,
1022
+ "approx_tokens": 1770
1023
+ },
1024
+ "output-format": {
1025
+ "bytes": 3177,
1026
+ "chars": 3175,
1027
+ "approx_tokens": 794
1028
+ },
1029
+ "compliance-theater-check": {
1030
+ "bytes": 2937,
1031
+ "chars": 2933,
1032
+ "approx_tokens": 733
1033
+ },
1034
+ "defensive-countermeasure-mapping": {
1035
+ "bytes": 2768,
1036
+ "chars": 2764,
1037
+ "approx_tokens": 691
1038
+ }
1039
+ }
1040
+ },
1041
+ "dlp-gap-analysis": {
1042
+ "path": "skills/dlp-gap-analysis/skill.md",
1043
+ "bytes": 40215,
1044
+ "chars": 39956,
1045
+ "lines": 338,
1046
+ "approx_tokens": 9989,
1047
+ "approx_chars_per_token": 4,
1048
+ "sections": {
1049
+ "threat-context": {
1050
+ "bytes": 2360,
1051
+ "chars": 2350,
1052
+ "approx_tokens": 588
1053
+ },
1054
+ "framework-lag-declaration": {
1055
+ "bytes": 10573,
1056
+ "chars": 10542,
1057
+ "approx_tokens": 2636
1058
+ },
1059
+ "ttp-mapping": {
1060
+ "bytes": 3538,
1061
+ "chars": 3524,
1062
+ "approx_tokens": 881
1063
+ },
1064
+ "exploit-availability-matrix": {
1065
+ "bytes": 4339,
1066
+ "chars": 4316,
1067
+ "approx_tokens": 1079
1068
+ },
1069
+ "analysis-procedure": {
1070
+ "bytes": 8473,
1071
+ "chars": 8427,
1072
+ "approx_tokens": 2107
1073
+ },
1074
+ "output-format": {
1075
+ "bytes": 2387,
1076
+ "chars": 2332,
1077
+ "approx_tokens": 583
1078
+ },
1079
+ "compliance-theater-check": {
1080
+ "bytes": 2602,
1081
+ "chars": 2580,
1082
+ "approx_tokens": 645
1083
+ },
1084
+ "defensive-countermeasure-mapping": {
1085
+ "bytes": 3955,
1086
+ "chars": 3903,
1087
+ "approx_tokens": 976
1088
+ }
1089
+ }
1090
+ },
1091
+ "supply-chain-integrity": {
1092
+ "path": "skills/supply-chain-integrity/skill.md",
1093
+ "bytes": 37908,
1094
+ "chars": 37778,
1095
+ "lines": 319,
1096
+ "approx_tokens": 9445,
1097
+ "approx_chars_per_token": 4,
1098
+ "sections": {
1099
+ "threat-context": {
1100
+ "bytes": 3632,
1101
+ "chars": 3622,
1102
+ "approx_tokens": 906
1103
+ },
1104
+ "framework-lag-declaration": {
1105
+ "bytes": 10483,
1106
+ "chars": 10465,
1107
+ "approx_tokens": 2616
1108
+ },
1109
+ "ttp-mapping": {
1110
+ "bytes": 3128,
1111
+ "chars": 3116,
1112
+ "approx_tokens": 779
1113
+ },
1114
+ "exploit-availability-matrix": {
1115
+ "bytes": 4581,
1116
+ "chars": 4521,
1117
+ "approx_tokens": 1130
1118
+ },
1119
+ "analysis-procedure": {
1120
+ "bytes": 7457,
1121
+ "chars": 7453,
1122
+ "approx_tokens": 1863
1123
+ },
1124
+ "output-format": {
1125
+ "bytes": 2102,
1126
+ "chars": 2102,
1127
+ "approx_tokens": 526
1128
+ },
1129
+ "compliance-theater-check": {
1130
+ "bytes": 2288,
1131
+ "chars": 2286,
1132
+ "approx_tokens": 572
1133
+ },
1134
+ "defensive-countermeasure-mapping": {
1135
+ "bytes": 2417,
1136
+ "chars": 2407,
1137
+ "approx_tokens": 602
1138
+ }
1139
+ }
1140
+ },
1141
+ "defensive-countermeasure-mapping": {
1142
+ "path": "skills/defensive-countermeasure-mapping/skill.md",
1143
+ "bytes": 32578,
1144
+ "chars": 32442,
1145
+ "lines": 301,
1146
+ "approx_tokens": 8111,
1147
+ "approx_chars_per_token": 4,
1148
+ "sections": {
1149
+ "threat-context": {
1150
+ "bytes": 3539,
1151
+ "chars": 3529,
1152
+ "approx_tokens": 882
1153
+ },
1154
+ "framework-lag-declaration": {
1155
+ "bytes": 4420,
1156
+ "chars": 4404,
1157
+ "approx_tokens": 1101
1158
+ },
1159
+ "ttp-mapping": {
1160
+ "bytes": 1957,
1161
+ "chars": 1955,
1162
+ "approx_tokens": 489
1163
+ },
1164
+ "exploit-availability-matrix": {
1165
+ "bytes": 3051,
1166
+ "chars": 3045,
1167
+ "approx_tokens": 761
1168
+ },
1169
+ "analysis-procedure": {
1170
+ "bytes": 7076,
1171
+ "chars": 7038,
1172
+ "approx_tokens": 1760
1173
+ },
1174
+ "output-format": {
1175
+ "bytes": 4588,
1176
+ "chars": 4560,
1177
+ "approx_tokens": 1140
1178
+ },
1179
+ "compliance-theater-check": {
1180
+ "bytes": 2780,
1181
+ "chars": 2774,
1182
+ "approx_tokens": 694
1183
+ },
1184
+ "defensive-countermeasure-mapping": {
1185
+ "bytes": 3321,
1186
+ "chars": 3295,
1187
+ "approx_tokens": 824
1188
+ }
1189
+ }
1190
+ },
1191
+ "identity-assurance": {
1192
+ "path": "skills/identity-assurance/skill.md",
1193
+ "bytes": 32767,
1194
+ "chars": 32620,
1195
+ "lines": 273,
1196
+ "approx_tokens": 8155,
1197
+ "approx_chars_per_token": 4,
1198
+ "sections": {
1199
+ "threat-context": {
1200
+ "bytes": 2646,
1201
+ "chars": 2636,
1202
+ "approx_tokens": 659
1203
+ },
1204
+ "framework-lag-declaration": {
1205
+ "bytes": 7273,
1206
+ "chars": 7253,
1207
+ "approx_tokens": 1813
1208
+ },
1209
+ "ttp-mapping": {
1210
+ "bytes": 1882,
1211
+ "chars": 1880,
1212
+ "approx_tokens": 470
1213
+ },
1214
+ "exploit-availability-matrix": {
1215
+ "bytes": 2890,
1216
+ "chars": 2865,
1217
+ "approx_tokens": 716
1218
+ },
1219
+ "analysis-procedure": {
1220
+ "bytes": 5828,
1221
+ "chars": 5793,
1222
+ "approx_tokens": 1448
1223
+ },
1224
+ "output-format": {
1225
+ "bytes": 2693,
1226
+ "chars": 2690,
1227
+ "approx_tokens": 673
1228
+ },
1229
+ "compliance-theater-check": {
1230
+ "bytes": 2057,
1231
+ "chars": 2051,
1232
+ "approx_tokens": 513
1233
+ },
1234
+ "defensive-countermeasure-mapping": {
1235
+ "bytes": 3621,
1236
+ "chars": 3587,
1237
+ "approx_tokens": 897
1238
+ },
1239
+ "hand-off": {
1240
+ "bytes": 2791,
1241
+ "chars": 2781,
1242
+ "approx_tokens": 695
1243
+ }
1244
+ }
1245
+ },
1246
+ "ot-ics-security": {
1247
+ "path": "skills/ot-ics-security/skill.md",
1248
+ "bytes": 36251,
1249
+ "chars": 36055,
1250
+ "lines": 341,
1251
+ "approx_tokens": 9014,
1252
+ "approx_chars_per_token": 4,
1253
+ "sections": {
1254
+ "threat-context": {
1255
+ "bytes": 3461,
1256
+ "chars": 3447,
1257
+ "approx_tokens": 862
1258
+ },
1259
+ "framework-lag-declaration": {
1260
+ "bytes": 4475,
1261
+ "chars": 4463,
1262
+ "approx_tokens": 1116
1263
+ },
1264
+ "ttp-mapping": {
1265
+ "bytes": 3732,
1266
+ "chars": 3708,
1267
+ "approx_tokens": 927
1268
+ },
1269
+ "exploit-availability-matrix": {
1270
+ "bytes": 2282,
1271
+ "chars": 2254,
1272
+ "approx_tokens": 564
1273
+ },
1274
+ "analysis-procedure": {
1275
+ "bytes": 8792,
1276
+ "chars": 8724,
1277
+ "approx_tokens": 2181
1278
+ },
1279
+ "output-format": {
1280
+ "bytes": 2099,
1281
+ "chars": 2095,
1282
+ "approx_tokens": 524
1283
+ },
1284
+ "compliance-theater-check": {
1285
+ "bytes": 3205,
1286
+ "chars": 3193,
1287
+ "approx_tokens": 798
1288
+ },
1289
+ "defensive-countermeasure-mapping": {
1290
+ "bytes": 3457,
1291
+ "chars": 3445,
1292
+ "approx_tokens": 861
1293
+ },
1294
+ "hand-off": {
1295
+ "bytes": 3810,
1296
+ "chars": 3790,
1297
+ "approx_tokens": 948
1298
+ }
1299
+ }
1300
+ },
1301
+ "coordinated-vuln-disclosure": {
1302
+ "path": "skills/coordinated-vuln-disclosure/skill.md",
1303
+ "bytes": 46794,
1304
+ "chars": 46569,
1305
+ "lines": 474,
1306
+ "approx_tokens": 11642,
1307
+ "approx_chars_per_token": 4,
1308
+ "sections": {
1309
+ "threat-context": {
1310
+ "bytes": 3474,
1311
+ "chars": 3470,
1312
+ "approx_tokens": 868
1313
+ },
1314
+ "framework-lag-declaration": {
1315
+ "bytes": 6286,
1316
+ "chars": 6267,
1317
+ "approx_tokens": 1567
1318
+ },
1319
+ "ttp-mapping": {
1320
+ "bytes": 2355,
1321
+ "chars": 2353,
1322
+ "approx_tokens": 588
1323
+ },
1324
+ "exploit-availability-matrix": {
1325
+ "bytes": 3690,
1326
+ "chars": 3674,
1327
+ "approx_tokens": 919
1328
+ },
1329
+ "analysis-procedure": {
1330
+ "bytes": 12512,
1331
+ "chars": 12443,
1332
+ "approx_tokens": 3111
1333
+ },
1334
+ "output-format": {
1335
+ "bytes": 6518,
1336
+ "chars": 6464,
1337
+ "approx_tokens": 1616
1338
+ },
1339
+ "compliance-theater-check": {
1340
+ "bytes": 3056,
1341
+ "chars": 3031,
1342
+ "approx_tokens": 758
1343
+ },
1344
+ "defensive-countermeasure-mapping": {
1345
+ "bytes": 3617,
1346
+ "chars": 3607,
1347
+ "approx_tokens": 902
1348
+ },
1349
+ "hand-off": {
1350
+ "bytes": 2419,
1351
+ "chars": 2401,
1352
+ "approx_tokens": 600
1353
+ }
1354
+ }
1355
+ },
1356
+ "threat-modeling-methodology": {
1357
+ "path": "skills/threat-modeling-methodology/skill.md",
1358
+ "bytes": 30464,
1359
+ "chars": 30287,
1360
+ "lines": 313,
1361
+ "approx_tokens": 7572,
1362
+ "approx_chars_per_token": 4,
1363
+ "sections": {
1364
+ "purpose": {
1365
+ "bytes": 684,
1366
+ "chars": 684,
1367
+ "approx_tokens": 171
1368
+ },
1369
+ "threat-context": {
1370
+ "bytes": 4365,
1371
+ "chars": 4346,
1372
+ "approx_tokens": 1087
1373
+ },
1374
+ "framework-lag-declaration": {
1375
+ "bytes": 4571,
1376
+ "chars": 4563,
1377
+ "approx_tokens": 1141
1378
+ },
1379
+ "ttp-mapping": {
1380
+ "bytes": 3915,
1381
+ "chars": 3901,
1382
+ "approx_tokens": 975
1383
+ },
1384
+ "exploit-availability-matrix": {
1385
+ "bytes": 2302,
1386
+ "chars": 2284,
1387
+ "approx_tokens": 571
1388
+ },
1389
+ "analysis-procedure": {
1390
+ "bytes": 6607,
1391
+ "chars": 6521,
1392
+ "approx_tokens": 1630
1393
+ },
1394
+ "output-format": {
1395
+ "bytes": 1549,
1396
+ "chars": 1547,
1397
+ "approx_tokens": 387
1398
+ },
1399
+ "compliance-theater-check": {
1400
+ "bytes": 1924,
1401
+ "chars": 1914,
1402
+ "approx_tokens": 479
1403
+ },
1404
+ "defensive-countermeasure-mapping": {
1405
+ "bytes": 1704,
1406
+ "chars": 1702,
1407
+ "approx_tokens": 426
1408
+ },
1409
+ "hand-off": {
1410
+ "bytes": 1558,
1411
+ "chars": 1542,
1412
+ "approx_tokens": 386
1413
+ }
1414
+ }
1415
+ },
1416
+ "webapp-security": {
1417
+ "path": "skills/webapp-security/skill.md",
1418
+ "bytes": 28609,
1419
+ "chars": 28437,
1420
+ "lines": 282,
1421
+ "approx_tokens": 7109,
1422
+ "approx_chars_per_token": 4,
1423
+ "sections": {
1424
+ "threat-context": {
1425
+ "bytes": 3443,
1426
+ "chars": 3431,
1427
+ "approx_tokens": 858
1428
+ },
1429
+ "framework-lag-declaration": {
1430
+ "bytes": 3561,
1431
+ "chars": 3549,
1432
+ "approx_tokens": 887
1433
+ },
1434
+ "ttp-mapping": {
1435
+ "bytes": 1518,
1436
+ "chars": 1510,
1437
+ "approx_tokens": 378
1438
+ },
1439
+ "exploit-availability-matrix": {
1440
+ "bytes": 3446,
1441
+ "chars": 3412,
1442
+ "approx_tokens": 853
1443
+ },
1444
+ "analysis-procedure": {
1445
+ "bytes": 6501,
1446
+ "chars": 6455,
1447
+ "approx_tokens": 1614
1448
+ },
1449
+ "output-format": {
1450
+ "bytes": 3142,
1451
+ "chars": 3138,
1452
+ "approx_tokens": 785
1453
+ },
1454
+ "compliance-theater-check": {
1455
+ "bytes": 1977,
1456
+ "chars": 1961,
1457
+ "approx_tokens": 490
1458
+ },
1459
+ "defensive-countermeasure-mapping": {
1460
+ "bytes": 2519,
1461
+ "chars": 2497,
1462
+ "approx_tokens": 624
1463
+ },
1464
+ "hand-off": {
1465
+ "bytes": 1195,
1466
+ "chars": 1179,
1467
+ "approx_tokens": 295
1468
+ }
1469
+ }
1470
+ },
1471
+ "ai-risk-management": {
1472
+ "path": "skills/ai-risk-management/skill.md",
1473
+ "bytes": 33503,
1474
+ "chars": 33327,
1475
+ "lines": 312,
1476
+ "approx_tokens": 8332,
1477
+ "approx_chars_per_token": 4,
1478
+ "sections": {
1479
+ "purpose": {
1480
+ "bytes": 779,
1481
+ "chars": 777,
1482
+ "approx_tokens": 194
1483
+ },
1484
+ "threat-context": {
1485
+ "bytes": 3602,
1486
+ "chars": 3582,
1487
+ "approx_tokens": 896
1488
+ },
1489
+ "framework-lag-declaration": {
1490
+ "bytes": 5286,
1491
+ "chars": 5252,
1492
+ "approx_tokens": 1313
1493
+ },
1494
+ "ttp-mapping": {
1495
+ "bytes": 2201,
1496
+ "chars": 2191,
1497
+ "approx_tokens": 548
1498
+ },
1499
+ "exploit-availability-matrix": {
1500
+ "bytes": 2466,
1501
+ "chars": 2456,
1502
+ "approx_tokens": 614
1503
+ },
1504
+ "analysis-procedure": {
1505
+ "bytes": 8664,
1506
+ "chars": 8608,
1507
+ "approx_tokens": 2152
1508
+ },
1509
+ "output-format": {
1510
+ "bytes": 2860,
1511
+ "chars": 2858,
1512
+ "approx_tokens": 715
1513
+ },
1514
+ "compliance-theater-check": {
1515
+ "bytes": 2799,
1516
+ "chars": 2793,
1517
+ "approx_tokens": 698
1518
+ },
1519
+ "defensive-countermeasure-mapping": {
1520
+ "bytes": 1787,
1521
+ "chars": 1775,
1522
+ "approx_tokens": 444
1523
+ },
1524
+ "hand-off": {
1525
+ "bytes": 1991,
1526
+ "chars": 1969,
1527
+ "approx_tokens": 492
1528
+ }
1529
+ }
1530
+ },
1531
+ "sector-healthcare": {
1532
+ "path": "skills/sector-healthcare/skill.md",
1533
+ "bytes": 47318,
1534
+ "chars": 47136,
1535
+ "lines": 374,
1536
+ "approx_tokens": 11784,
1537
+ "approx_chars_per_token": 4,
1538
+ "sections": {
1539
+ "threat-context": {
1540
+ "bytes": 4224,
1541
+ "chars": 4206,
1542
+ "approx_tokens": 1052
1543
+ },
1544
+ "framework-lag-declaration": {
1545
+ "bytes": 9626,
1546
+ "chars": 9605,
1547
+ "approx_tokens": 2401
1548
+ },
1549
+ "ttp-mapping": {
1550
+ "bytes": 4703,
1551
+ "chars": 4686,
1552
+ "approx_tokens": 1172
1553
+ },
1554
+ "exploit-availability-matrix": {
1555
+ "bytes": 3334,
1556
+ "chars": 3318,
1557
+ "approx_tokens": 830
1558
+ },
1559
+ "analysis-procedure": {
1560
+ "bytes": 10555,
1561
+ "chars": 10505,
1562
+ "approx_tokens": 2626
1563
+ },
1564
+ "output-format": {
1565
+ "bytes": 2891,
1566
+ "chars": 2888,
1567
+ "approx_tokens": 722
1568
+ },
1569
+ "compliance-theater-check": {
1570
+ "bytes": 3568,
1571
+ "chars": 3550,
1572
+ "approx_tokens": 888
1573
+ },
1574
+ "defensive-countermeasure-mapping": {
1575
+ "bytes": 3414,
1576
+ "chars": 3408,
1577
+ "approx_tokens": 852
1578
+ },
1579
+ "hand-off": {
1580
+ "bytes": 3859,
1581
+ "chars": 3828,
1582
+ "approx_tokens": 957
1583
+ }
1584
+ }
1585
+ },
1586
+ "sector-financial": {
1587
+ "path": "skills/sector-financial/skill.md",
1588
+ "bytes": 49757,
1589
+ "chars": 49594,
1590
+ "lines": 399,
1591
+ "approx_tokens": 12399,
1592
+ "approx_chars_per_token": 4,
1593
+ "sections": {
1594
+ "threat-context": {
1595
+ "bytes": 7555,
1596
+ "chars": 7528,
1597
+ "approx_tokens": 1882
1598
+ },
1599
+ "framework-lag-declaration": {
1600
+ "bytes": 8947,
1601
+ "chars": 8941,
1602
+ "approx_tokens": 2235
1603
+ },
1604
+ "ttp-mapping": {
1605
+ "bytes": 4497,
1606
+ "chars": 4471,
1607
+ "approx_tokens": 1118
1608
+ },
1609
+ "exploit-availability-matrix": {
1610
+ "bytes": 2886,
1611
+ "chars": 2868,
1612
+ "approx_tokens": 717
1613
+ },
1614
+ "analysis-procedure": {
1615
+ "bytes": 8754,
1616
+ "chars": 8724,
1617
+ "approx_tokens": 2181
1618
+ },
1619
+ "output-format": {
1620
+ "bytes": 2755,
1621
+ "chars": 2751,
1622
+ "approx_tokens": 688
1623
+ },
1624
+ "compliance-theater-check": {
1625
+ "bytes": 4338,
1626
+ "chars": 4326,
1627
+ "approx_tokens": 1082
1628
+ },
1629
+ "defensive-countermeasure-mapping": {
1630
+ "bytes": 3844,
1631
+ "chars": 3836,
1632
+ "approx_tokens": 959
1633
+ },
1634
+ "hand-off": {
1635
+ "bytes": 3753,
1636
+ "chars": 3731,
1637
+ "approx_tokens": 933
1638
+ }
1639
+ }
1640
+ },
1641
+ "sector-federal-government": {
1642
+ "path": "skills/sector-federal-government/skill.md",
1643
+ "bytes": 44031,
1644
+ "chars": 43858,
1645
+ "lines": 303,
1646
+ "approx_tokens": 10965,
1647
+ "approx_chars_per_token": 4,
1648
+ "sections": {
1649
+ "threat-context": {
1650
+ "bytes": 5280,
1651
+ "chars": 5275,
1652
+ "approx_tokens": 1319
1653
+ },
1654
+ "framework-lag-declaration": {
1655
+ "bytes": 9493,
1656
+ "chars": 9473,
1657
+ "approx_tokens": 2368
1658
+ },
1659
+ "ttp-mapping": {
1660
+ "bytes": 2416,
1661
+ "chars": 2412,
1662
+ "approx_tokens": 603
1663
+ },
1664
+ "exploit-availability-matrix": {
1665
+ "bytes": 6139,
1666
+ "chars": 6057,
1667
+ "approx_tokens": 1514
1668
+ },
1669
+ "analysis-procedure": {
1670
+ "bytes": 8040,
1671
+ "chars": 8028,
1672
+ "approx_tokens": 2007
1673
+ },
1674
+ "output-format": {
1675
+ "bytes": 2488,
1676
+ "chars": 2486,
1677
+ "approx_tokens": 622
1678
+ },
1679
+ "compliance-theater-check": {
1680
+ "bytes": 2868,
1681
+ "chars": 2866,
1682
+ "approx_tokens": 717
1683
+ },
1684
+ "defensive-countermeasure-mapping": {
1685
+ "bytes": 3000,
1686
+ "chars": 2992,
1687
+ "approx_tokens": 748
1688
+ },
1689
+ "hand-off": {
1690
+ "bytes": 1461,
1691
+ "chars": 1443,
1692
+ "approx_tokens": 361
1693
+ }
1694
+ }
1695
+ },
1696
+ "sector-energy": {
1697
+ "path": "skills/sector-energy/skill.md",
1698
+ "bytes": 53756,
1699
+ "chars": 53550,
1700
+ "lines": 410,
1701
+ "approx_tokens": 13388,
1702
+ "approx_chars_per_token": 4,
1703
+ "sections": {
1704
+ "threat-context": {
1705
+ "bytes": 5353,
1706
+ "chars": 5323,
1707
+ "approx_tokens": 1331
1708
+ },
1709
+ "framework-lag-declaration": {
1710
+ "bytes": 8337,
1711
+ "chars": 8319,
1712
+ "approx_tokens": 2080
1713
+ },
1714
+ "ttp-mapping": {
1715
+ "bytes": 6376,
1716
+ "chars": 6356,
1717
+ "approx_tokens": 1589
1718
+ },
1719
+ "exploit-availability-matrix": {
1720
+ "bytes": 3990,
1721
+ "chars": 3964,
1722
+ "approx_tokens": 991
1723
+ },
1724
+ "analysis-procedure": {
1725
+ "bytes": 10946,
1726
+ "chars": 10902,
1727
+ "approx_tokens": 2726
1728
+ },
1729
+ "output-format": {
1730
+ "bytes": 2788,
1731
+ "chars": 2786,
1732
+ "approx_tokens": 697
1733
+ },
1734
+ "compliance-theater-check": {
1735
+ "bytes": 4991,
1736
+ "chars": 4973,
1737
+ "approx_tokens": 1243
1738
+ },
1739
+ "defensive-countermeasure-mapping": {
1740
+ "bytes": 4551,
1741
+ "chars": 4539,
1742
+ "approx_tokens": 1135
1743
+ },
1744
+ "hand-off": {
1745
+ "bytes": 3375,
1746
+ "chars": 3349,
1747
+ "approx_tokens": 837
1748
+ }
1749
+ }
1750
+ },
1751
+ "api-security": {
1752
+ "path": "skills/api-security/skill.md",
1753
+ "bytes": 34581,
1754
+ "chars": 34354,
1755
+ "lines": 288,
1756
+ "approx_tokens": 8589,
1757
+ "approx_chars_per_token": 4,
1758
+ "sections": {
1759
+ "threat-context": {
1760
+ "bytes": 5107,
1761
+ "chars": 5075,
1762
+ "approx_tokens": 1269
1763
+ },
1764
+ "framework-lag-declaration": {
1765
+ "bytes": 3278,
1766
+ "chars": 3269,
1767
+ "approx_tokens": 817
1768
+ },
1769
+ "ttp-mapping": {
1770
+ "bytes": 2205,
1771
+ "chars": 2175,
1772
+ "approx_tokens": 544
1773
+ },
1774
+ "exploit-availability-matrix": {
1775
+ "bytes": 4434,
1776
+ "chars": 4377,
1777
+ "approx_tokens": 1094
1778
+ },
1779
+ "analysis-procedure": {
1780
+ "bytes": 7799,
1781
+ "chars": 7756,
1782
+ "approx_tokens": 1939
1783
+ },
1784
+ "output-format": {
1785
+ "bytes": 3718,
1786
+ "chars": 3708,
1787
+ "approx_tokens": 927
1788
+ },
1789
+ "compliance-theater-check": {
1790
+ "bytes": 2358,
1791
+ "chars": 2346,
1792
+ "approx_tokens": 587
1793
+ },
1794
+ "defensive-countermeasure-mapping": {
1795
+ "bytes": 3238,
1796
+ "chars": 3218,
1797
+ "approx_tokens": 805
1798
+ },
1799
+ "hand-off": {
1800
+ "bytes": 1205,
1801
+ "chars": 1193,
1802
+ "approx_tokens": 298
1803
+ }
1804
+ }
1805
+ },
1806
+ "cloud-security": {
1807
+ "path": "skills/cloud-security/skill.md",
1808
+ "bytes": 55577,
1809
+ "chars": 55341,
1810
+ "lines": 385,
1811
+ "approx_tokens": 13835,
1812
+ "approx_chars_per_token": 4,
1813
+ "sections": {
1814
+ "threat-context": {
1815
+ "bytes": 6389,
1816
+ "chars": 6369,
1817
+ "approx_tokens": 1592
1818
+ },
1819
+ "framework-lag-declaration": {
1820
+ "bytes": 9059,
1821
+ "chars": 9035,
1822
+ "approx_tokens": 2259
1823
+ },
1824
+ "ttp-mapping": {
1825
+ "bytes": 3186,
1826
+ "chars": 3174,
1827
+ "approx_tokens": 794
1828
+ },
1829
+ "exploit-availability-matrix": {
1830
+ "bytes": 5222,
1831
+ "chars": 5180,
1832
+ "approx_tokens": 1295
1833
+ },
1834
+ "analysis-procedure": {
1835
+ "bytes": 12980,
1836
+ "chars": 12904,
1837
+ "approx_tokens": 3226
1838
+ },
1839
+ "output-format": {
1840
+ "bytes": 2263,
1841
+ "chars": 2261,
1842
+ "approx_tokens": 565
1843
+ },
1844
+ "compliance-theater-check": {
1845
+ "bytes": 4221,
1846
+ "chars": 4207,
1847
+ "approx_tokens": 1052
1848
+ },
1849
+ "defensive-countermeasure-mapping": {
1850
+ "bytes": 4742,
1851
+ "chars": 4736,
1852
+ "approx_tokens": 1184
1853
+ },
1854
+ "hand-off": {
1855
+ "bytes": 4033,
1856
+ "chars": 4009,
1857
+ "approx_tokens": 1002
1858
+ }
1859
+ }
1860
+ },
1861
+ "container-runtime-security": {
1862
+ "path": "skills/container-runtime-security/skill.md",
1863
+ "bytes": 48744,
1864
+ "chars": 48586,
1865
+ "lines": 380,
1866
+ "approx_tokens": 12147,
1867
+ "approx_chars_per_token": 4,
1868
+ "sections": {
1869
+ "threat-context": {
1870
+ "bytes": 5523,
1871
+ "chars": 5501,
1872
+ "approx_tokens": 1375
1873
+ },
1874
+ "framework-lag-declaration": {
1875
+ "bytes": 6412,
1876
+ "chars": 6398,
1877
+ "approx_tokens": 1600
1878
+ },
1879
+ "ttp-mapping": {
1880
+ "bytes": 4475,
1881
+ "chars": 4465,
1882
+ "approx_tokens": 1116
1883
+ },
1884
+ "exploit-availability-matrix": {
1885
+ "bytes": 3987,
1886
+ "chars": 3937,
1887
+ "approx_tokens": 984
1888
+ },
1889
+ "analysis-procedure": {
1890
+ "bytes": 10858,
1891
+ "chars": 10842,
1892
+ "approx_tokens": 2711
1893
+ },
1894
+ "output-format": {
1895
+ "bytes": 2919,
1896
+ "chars": 2917,
1897
+ "approx_tokens": 729
1898
+ },
1899
+ "compliance-theater-check": {
1900
+ "bytes": 3497,
1901
+ "chars": 3487,
1902
+ "approx_tokens": 872
1903
+ },
1904
+ "defensive-countermeasure-mapping": {
1905
+ "bytes": 5272,
1906
+ "chars": 5268,
1907
+ "approx_tokens": 1317
1908
+ },
1909
+ "hand-off": {
1910
+ "bytes": 4594,
1911
+ "chars": 4566,
1912
+ "approx_tokens": 1142
1913
+ }
1914
+ }
1915
+ },
1916
+ "mlops-security": {
1917
+ "path": "skills/mlops-security/skill.md",
1918
+ "bytes": 43634,
1919
+ "chars": 43352,
1920
+ "lines": 326,
1921
+ "approx_tokens": 10838,
1922
+ "approx_chars_per_token": 4,
1923
+ "sections": {
1924
+ "threat-context": {
1925
+ "bytes": 4350,
1926
+ "chars": 4310,
1927
+ "approx_tokens": 1078
1928
+ },
1929
+ "framework-lag-declaration": {
1930
+ "bytes": 5782,
1931
+ "chars": 5764,
1932
+ "approx_tokens": 1441
1933
+ },
1934
+ "ttp-mapping": {
1935
+ "bytes": 4385,
1936
+ "chars": 4361,
1937
+ "approx_tokens": 1090
1938
+ },
1939
+ "exploit-availability-matrix": {
1940
+ "bytes": 5486,
1941
+ "chars": 5420,
1942
+ "approx_tokens": 1355
1943
+ },
1944
+ "analysis-procedure": {
1945
+ "bytes": 9069,
1946
+ "chars": 9009,
1947
+ "approx_tokens": 2252
1948
+ },
1949
+ "output-format": {
1950
+ "bytes": 2678,
1951
+ "chars": 2676,
1952
+ "approx_tokens": 669
1953
+ },
1954
+ "compliance-theater-check": {
1955
+ "bytes": 2931,
1956
+ "chars": 2907,
1957
+ "approx_tokens": 727
1958
+ },
1959
+ "defensive-countermeasure-mapping": {
1960
+ "bytes": 3920,
1961
+ "chars": 3902,
1962
+ "approx_tokens": 976
1963
+ },
1964
+ "hand-off": {
1965
+ "bytes": 2930,
1966
+ "chars": 2914,
1967
+ "approx_tokens": 729
1968
+ }
1969
+ }
1970
+ },
1971
+ "incident-response-playbook": {
1972
+ "path": "skills/incident-response-playbook/skill.md",
1973
+ "bytes": 62895,
1974
+ "chars": 62645,
1975
+ "lines": 547,
1976
+ "approx_tokens": 15661,
1977
+ "approx_chars_per_token": 4,
1978
+ "sections": {
1979
+ "threat-context": {
1980
+ "bytes": 4888,
1981
+ "chars": 4872,
1982
+ "approx_tokens": 1218
1983
+ },
1984
+ "framework-lag-declaration": {
1985
+ "bytes": 10198,
1986
+ "chars": 10164,
1987
+ "approx_tokens": 2541
1988
+ },
1989
+ "ttp-mapping": {
1990
+ "bytes": 4740,
1991
+ "chars": 4734,
1992
+ "approx_tokens": 1184
1993
+ },
1994
+ "exploit-availability-matrix": {
1995
+ "bytes": 3811,
1996
+ "chars": 3807,
1997
+ "approx_tokens": 952
1998
+ },
1999
+ "analysis-procedure": {
2000
+ "bytes": 14328,
2001
+ "chars": 14255,
2002
+ "approx_tokens": 3564
2003
+ },
2004
+ "output-format": {
2005
+ "bytes": 9127,
2006
+ "chars": 9087,
2007
+ "approx_tokens": 2272
2008
+ },
2009
+ "compliance-theater-check": {
2010
+ "bytes": 3897,
2011
+ "chars": 3870,
2012
+ "approx_tokens": 968
2013
+ },
2014
+ "defensive-countermeasure-mapping": {
2015
+ "bytes": 5140,
2016
+ "chars": 5126,
2017
+ "approx_tokens": 1282
2018
+ },
2019
+ "hand-off": {
2020
+ "bytes": 3196,
2021
+ "chars": 3166,
2022
+ "approx_tokens": 792
2023
+ }
2024
+ }
2025
+ },
2026
+ "email-security-anti-phishing": {
2027
+ "path": "skills/email-security-anti-phishing/skill.md",
2028
+ "bytes": 26321,
2029
+ "chars": 26223,
2030
+ "lines": 207,
2031
+ "approx_tokens": 6556,
2032
+ "approx_chars_per_token": 4,
2033
+ "sections": {
2034
+ "threat-context": {
2035
+ "bytes": 4362,
2036
+ "chars": 4346,
2037
+ "approx_tokens": 1087
2038
+ },
2039
+ "framework-lag-declaration": {
2040
+ "bytes": 3683,
2041
+ "chars": 3680,
2042
+ "approx_tokens": 920
2043
+ },
2044
+ "ttp-mapping": {
2045
+ "bytes": 1420,
2046
+ "chars": 1414,
2047
+ "approx_tokens": 354
2048
+ },
2049
+ "exploit-availability-matrix": {
2050
+ "bytes": 1840,
2051
+ "chars": 1838,
2052
+ "approx_tokens": 460
2053
+ },
2054
+ "analysis-procedure": {
2055
+ "bytes": 6759,
2056
+ "chars": 6735,
2057
+ "approx_tokens": 1684
2058
+ },
2059
+ "output-format": {
2060
+ "bytes": 1821,
2061
+ "chars": 1796,
2062
+ "approx_tokens": 449
2063
+ },
2064
+ "compliance-theater-check": {
2065
+ "bytes": 1802,
2066
+ "chars": 1800,
2067
+ "approx_tokens": 450
2068
+ },
2069
+ "defensive-countermeasure-mapping": {
2070
+ "bytes": 2431,
2071
+ "chars": 2419,
2072
+ "approx_tokens": 605
2073
+ },
2074
+ "hand-off": {
2075
+ "bytes": 1135,
2076
+ "chars": 1129,
2077
+ "approx_tokens": 282
2078
+ }
2079
+ }
2080
+ },
2081
+ "age-gates-child-safety": {
2082
+ "path": "skills/age-gates-child-safety/skill.md",
2083
+ "bytes": 68846,
2084
+ "chars": 68561,
2085
+ "lines": 457,
2086
+ "approx_tokens": 17140,
2087
+ "approx_chars_per_token": 4,
2088
+ "sections": {
2089
+ "threat-context": {
2090
+ "bytes": 4804,
2091
+ "chars": 4785,
2092
+ "approx_tokens": 1196
2093
+ },
2094
+ "framework-lag-declaration": {
2095
+ "bytes": 15972,
2096
+ "chars": 15911,
2097
+ "approx_tokens": 3978
2098
+ },
2099
+ "ttp-mapping": {
2100
+ "bytes": 3320,
2101
+ "chars": 3307,
2102
+ "approx_tokens": 827
2103
+ },
2104
+ "exploit-availability-matrix": {
2105
+ "bytes": 7332,
2106
+ "chars": 7304,
2107
+ "approx_tokens": 1826
2108
+ },
2109
+ "analysis-procedure": {
2110
+ "bytes": 14133,
2111
+ "chars": 14059,
2112
+ "approx_tokens": 3515
2113
+ },
2114
+ "output-format": {
2115
+ "bytes": 4603,
2116
+ "chars": 4593,
2117
+ "approx_tokens": 1148
2118
+ },
2119
+ "compliance-theater-check": {
2120
+ "bytes": 6085,
2121
+ "chars": 6066,
2122
+ "approx_tokens": 1517
2123
+ },
2124
+ "defensive-countermeasure-mapping": {
2125
+ "bytes": 5142,
2126
+ "chars": 5131,
2127
+ "approx_tokens": 1283
2128
+ },
2129
+ "hand-off": {
2130
+ "bytes": 4333,
2131
+ "chars": 4305,
2132
+ "approx_tokens": 1076
2133
+ }
2134
+ }
2135
+ }
2136
+ }
2137
+ }