@blamejs/exceptd-skills 0.12.13 → 0.12.16

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 (101) hide show
  1. package/CHANGELOG.md +217 -0
  2. package/bin/exceptd.js +522 -27
  3. package/data/_indexes/_meta.json +45 -45
  4. package/data/_indexes/activity-feed.json +4 -4
  5. package/data/_indexes/catalog-summaries.json +29 -29
  6. package/data/_indexes/chains.json +3238 -3210
  7. package/data/_indexes/frequency.json +3 -0
  8. package/data/_indexes/jurisdiction-map.json +5 -3
  9. package/data/_indexes/section-offsets.json +712 -685
  10. package/data/_indexes/theater-fingerprints.json +1 -1
  11. package/data/_indexes/token-budget.json +355 -340
  12. package/data/atlas-ttps.json +144 -129
  13. package/data/attack-techniques.json +319 -76
  14. package/data/cve-catalog.json +516 -476
  15. package/data/cwe-catalog.json +1081 -759
  16. package/data/exploit-availability.json +63 -15
  17. package/data/framework-control-gaps.json +867 -843
  18. package/data/playbooks/ai-api.json +3 -1
  19. package/data/playbooks/containers.json +11 -3
  20. package/data/playbooks/cred-stores.json +3 -1
  21. package/data/playbooks/crypto-codebase.json +11 -11
  22. package/data/playbooks/crypto.json +1 -1
  23. package/data/playbooks/hardening.json +3 -1
  24. package/data/playbooks/kernel.json +3 -1
  25. package/data/playbooks/library-author.json +21 -10
  26. package/data/playbooks/mcp.json +1 -1
  27. package/data/playbooks/runtime.json +3 -1
  28. package/data/playbooks/sbom.json +2 -2
  29. package/data/playbooks/secrets.json +3 -1
  30. package/data/rfc-references.json +276 -276
  31. package/keys/EXPECTED_FINGERPRINT +1 -0
  32. package/lib/auto-discovery.js +57 -35
  33. package/lib/cross-ref-api.js +39 -6
  34. package/lib/cve-curation.js +33 -14
  35. package/lib/lint-skills.js +6 -1
  36. package/lib/playbook-runner.js +742 -78
  37. package/lib/prefetch.js +30 -8
  38. package/lib/refresh-external.js +40 -22
  39. package/lib/refresh-network.js +233 -17
  40. package/lib/scoring.js +191 -18
  41. package/lib/source-ghsa.js +219 -37
  42. package/lib/source-osv.js +381 -122
  43. package/lib/validate-catalog-meta.js +64 -9
  44. package/lib/validate-cve-catalog.js +56 -18
  45. package/lib/validate-indexes.js +88 -37
  46. package/lib/validate-playbooks.js +46 -0
  47. package/lib/verify.js +72 -0
  48. package/manifest-snapshot.json +1 -1
  49. package/manifest-snapshot.sha256 +1 -0
  50. package/manifest.json +73 -73
  51. package/orchestrator/dispatcher.js +21 -1
  52. package/orchestrator/event-bus.js +52 -8
  53. package/orchestrator/index.js +279 -20
  54. package/orchestrator/pipeline.js +63 -2
  55. package/orchestrator/scanner.js +32 -10
  56. package/orchestrator/scheduler.js +150 -17
  57. package/package.json +3 -1
  58. package/sbom.cdx.json +7 -7
  59. package/scripts/check-manifest-snapshot.js +32 -0
  60. package/scripts/check-sbom-currency.js +65 -3
  61. package/scripts/check-test-coverage.js +142 -19
  62. package/scripts/predeploy.js +83 -39
  63. package/scripts/refresh-manifest-snapshot.js +55 -4
  64. package/scripts/validate-vendor-online.js +169 -0
  65. package/scripts/verify-shipped-tarball.js +141 -9
  66. package/skills/ai-attack-surface/skill.md +18 -10
  67. package/skills/ai-c2-detection/skill.md +7 -2
  68. package/skills/ai-risk-management/skill.md +5 -4
  69. package/skills/api-security/skill.md +3 -3
  70. package/skills/attack-surface-pentest/skill.md +5 -5
  71. package/skills/cloud-security/skill.md +1 -1
  72. package/skills/compliance-theater/skill.md +8 -8
  73. package/skills/container-runtime-security/skill.md +1 -1
  74. package/skills/dlp-gap-analysis/skill.md +5 -1
  75. package/skills/email-security-anti-phishing/skill.md +1 -1
  76. package/skills/exploit-scoring/skill.md +18 -18
  77. package/skills/framework-gap-analysis/skill.md +6 -6
  78. package/skills/global-grc/skill.md +3 -2
  79. package/skills/identity-assurance/skill.md +2 -2
  80. package/skills/incident-response-playbook/skill.md +4 -4
  81. package/skills/kernel-lpe-triage/skill.md +21 -2
  82. package/skills/mcp-agent-trust/skill.md +17 -10
  83. package/skills/mlops-security/skill.md +2 -1
  84. package/skills/ot-ics-security/skill.md +1 -1
  85. package/skills/policy-exception-gen/skill.md +3 -3
  86. package/skills/pqc-first/skill.md +1 -1
  87. package/skills/rag-pipeline-security/skill.md +7 -3
  88. package/skills/researcher/skill.md +20 -3
  89. package/skills/sector-energy/skill.md +1 -1
  90. package/skills/sector-federal-government/skill.md +1 -1
  91. package/skills/sector-financial/skill.md +3 -3
  92. package/skills/sector-healthcare/skill.md +2 -2
  93. package/skills/security-maturity-tiers/skill.md +7 -7
  94. package/skills/skill-update-loop/skill.md +19 -3
  95. package/skills/supply-chain-integrity/skill.md +1 -1
  96. package/skills/threat-model-currency/skill.md +11 -11
  97. package/skills/threat-modeling-methodology/skill.md +3 -3
  98. package/skills/webapp-security/skill.md +1 -1
  99. package/skills/zeroday-gap-learn/skill.md +51 -7
  100. package/vendor/blamejs/_PROVENANCE.json +4 -1
  101. package/vendor/blamejs/worker-pool.js +38 -0
@@ -3,17 +3,17 @@
3
3
  "schema_version": "1.0.0",
4
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
5
  "approx_chars_per_token": 4,
6
- "total_chars": 1369448,
7
- "total_approx_tokens": 342364,
6
+ "total_chars": 1406605,
7
+ "total_approx_tokens": 351655,
8
8
  "skill_count": 38
9
9
  },
10
10
  "skills": {
11
11
  "kernel-lpe-triage": {
12
12
  "path": "skills/kernel-lpe-triage/skill.md",
13
- "bytes": 21205,
14
- "chars": 21099,
15
- "lines": 324,
16
- "approx_tokens": 5275,
13
+ "bytes": 26011,
14
+ "chars": 25877,
15
+ "lines": 343,
16
+ "approx_tokens": 6469,
17
17
  "approx_chars_per_token": 4,
18
18
  "sections": {
19
19
  "threat-context": {
@@ -32,9 +32,9 @@
32
32
  "approx_tokens": 722
33
33
  },
34
34
  "exploit-availability-matrix": {
35
- "bytes": 616,
36
- "chars": 614,
37
- "approx_tokens": 154
35
+ "bytes": 632,
36
+ "chars": 630,
37
+ "approx_tokens": 158
38
38
  },
39
39
  "compliance-theater-check": {
40
40
  "bytes": 2072,
@@ -42,9 +42,9 @@
42
42
  "approx_tokens": 516
43
43
  },
44
44
  "analysis-procedure": {
45
- "bytes": 4646,
46
- "chars": 4644,
47
- "approx_tokens": 1161
45
+ "bytes": 4670,
46
+ "chars": 4668,
47
+ "approx_tokens": 1167
48
48
  },
49
49
  "output-format": {
50
50
  "bytes": 1407,
@@ -56,6 +56,11 @@
56
56
  "chars": 687,
57
57
  "approx_tokens": 172
58
58
  },
59
+ "defensive-countermeasure-mapping": {
60
+ "bytes": 4745,
61
+ "chars": 4717,
62
+ "approx_tokens": 1179
63
+ },
59
64
  "hand-off": {
60
65
  "bytes": 2269,
61
66
  "chars": 2257,
@@ -65,16 +70,16 @@
65
70
  },
66
71
  "ai-attack-surface": {
67
72
  "path": "skills/ai-attack-surface/skill.md",
68
- "bytes": 20062,
69
- "chars": 20024,
70
- "lines": 311,
71
- "approx_tokens": 5006,
73
+ "bytes": 22758,
74
+ "chars": 22710,
75
+ "lines": 319,
76
+ "approx_tokens": 5678,
72
77
  "approx_chars_per_token": 4,
73
78
  "sections": {
74
79
  "threat-context": {
75
- "bytes": 4828,
76
- "chars": 4810,
77
- "approx_tokens": 1203
80
+ "bytes": 7238,
81
+ "chars": 7208,
82
+ "approx_tokens": 1802
78
83
  },
79
84
  "framework-lag-declaration": {
80
85
  "bytes": 2465,
@@ -82,14 +87,14 @@
82
87
  "approx_tokens": 615
83
88
  },
84
89
  "ttp-mapping": {
85
- "bytes": 1766,
86
- "chars": 1764,
87
- "approx_tokens": 441
90
+ "bytes": 2046,
91
+ "chars": 2046,
92
+ "approx_tokens": 512
88
93
  },
89
94
  "exploit-availability-matrix": {
90
- "bytes": 620,
91
- "chars": 618,
92
- "approx_tokens": 155
95
+ "bytes": 626,
96
+ "chars": 624,
97
+ "approx_tokens": 156
93
98
  },
94
99
  "analysis-procedure": {
95
100
  "bytes": 3327,
@@ -115,16 +120,16 @@
115
120
  },
116
121
  "mcp-agent-trust": {
117
122
  "path": "skills/mcp-agent-trust/skill.md",
118
- "bytes": 23929,
119
- "chars": 23861,
120
- "lines": 354,
121
- "approx_tokens": 5965,
123
+ "bytes": 26148,
124
+ "chars": 26070,
125
+ "lines": 361,
126
+ "approx_tokens": 6518,
122
127
  "approx_chars_per_token": 4,
123
128
  "sections": {
124
129
  "threat-context": {
125
- "bytes": 3373,
126
- "chars": 3369,
127
- "approx_tokens": 842
130
+ "bytes": 5008,
131
+ "chars": 4996,
132
+ "approx_tokens": 1249
128
133
  },
129
134
  "framework-lag-declaration": {
130
135
  "bytes": 3837,
@@ -132,14 +137,14 @@
132
137
  "approx_tokens": 956
133
138
  },
134
139
  "ttp-mapping": {
135
- "bytes": 1195,
136
- "chars": 1191,
137
- "approx_tokens": 298
140
+ "bytes": 1236,
141
+ "chars": 1234,
142
+ "approx_tokens": 309
138
143
  },
139
144
  "exploit-availability-matrix": {
140
- "bytes": 2357,
141
- "chars": 2333,
142
- "approx_tokens": 583
145
+ "bytes": 2900,
146
+ "chars": 2872,
147
+ "approx_tokens": 718
143
148
  },
144
149
  "analysis-procedure": {
145
150
  "bytes": 3859,
@@ -170,16 +175,16 @@
170
175
  },
171
176
  "framework-gap-analysis": {
172
177
  "path": "skills/framework-gap-analysis/skill.md",
173
- "bytes": 25733,
174
- "chars": 25689,
178
+ "bytes": 26212,
179
+ "chars": 26160,
175
180
  "lines": 375,
176
- "approx_tokens": 6422,
181
+ "approx_tokens": 6540,
177
182
  "approx_chars_per_token": 4,
178
183
  "sections": {
179
184
  "threat-context": {
180
- "bytes": 1459,
181
- "chars": 1453,
182
- "approx_tokens": 363
185
+ "bytes": 1816,
186
+ "chars": 1804,
187
+ "approx_tokens": 451
183
188
  },
184
189
  "framework-lag-declaration": {
185
190
  "bytes": 3275,
@@ -187,14 +192,14 @@
187
192
  "approx_tokens": 818
188
193
  },
189
194
  "ttp-mapping": {
190
- "bytes": 1800,
191
- "chars": 1800,
192
- "approx_tokens": 450
195
+ "bytes": 1856,
196
+ "chars": 1854,
197
+ "approx_tokens": 464
193
198
  },
194
199
  "exploit-availability-matrix": {
195
- "bytes": 1344,
196
- "chars": 1344,
197
- "approx_tokens": 336
200
+ "bytes": 1352,
201
+ "chars": 1352,
202
+ "approx_tokens": 338
198
203
  },
199
204
  "built-in-gap-catalog": {
200
205
  "bytes": 10124,
@@ -217,18 +222,18 @@
217
222
  "approx_tokens": 483
218
223
  },
219
224
  "compliance-theater-check": {
220
- "bytes": 2167,
221
- "chars": 2167,
222
- "approx_tokens": 542
225
+ "bytes": 2225,
226
+ "chars": 2225,
227
+ "approx_tokens": 556
223
228
  }
224
229
  }
225
230
  },
226
231
  "compliance-theater": {
227
232
  "path": "skills/compliance-theater/skill.md",
228
- "bytes": 28379,
229
- "chars": 28313,
233
+ "bytes": 28716,
234
+ "chars": 28652,
230
235
  "lines": 372,
231
- "approx_tokens": 7078,
236
+ "approx_tokens": 7163,
232
237
  "approx_chars_per_token": 4,
233
238
  "sections": {
234
239
  "frontmatter-scope": {
@@ -237,29 +242,29 @@
237
242
  "approx_tokens": 202
238
243
  },
239
244
  "threat-context": {
240
- "bytes": 1804,
241
- "chars": 1798,
242
- "approx_tokens": 450
245
+ "bytes": 1994,
246
+ "chars": 1988,
247
+ "approx_tokens": 497
243
248
  },
244
249
  "framework-lag-declaration": {
245
- "bytes": 3764,
246
- "chars": 3762,
247
- "approx_tokens": 941
250
+ "bytes": 3812,
251
+ "chars": 3810,
252
+ "approx_tokens": 953
248
253
  },
249
254
  "ttp-mapping": {
250
- "bytes": 2174,
251
- "chars": 2156,
252
- "approx_tokens": 539
255
+ "bytes": 2210,
256
+ "chars": 2194,
257
+ "approx_tokens": 549
253
258
  },
254
259
  "exploit-availability-matrix": {
255
- "bytes": 1763,
256
- "chars": 1763,
257
- "approx_tokens": 441
260
+ "bytes": 1775,
261
+ "chars": 1775,
262
+ "approx_tokens": 444
258
263
  },
259
264
  "theater-pattern-library": {
260
- "bytes": 11992,
261
- "chars": 11976,
262
- "approx_tokens": 2994
265
+ "bytes": 12043,
266
+ "chars": 12027,
267
+ "approx_tokens": 3007
263
268
  },
264
269
  "analysis-procedure": {
265
270
  "bytes": 943,
@@ -280,10 +285,10 @@
280
285
  },
281
286
  "exploit-scoring": {
282
287
  "path": "skills/exploit-scoring/skill.md",
283
- "bytes": 21077,
284
- "chars": 20949,
288
+ "bytes": 22174,
289
+ "chars": 22044,
285
290
  "lines": 338,
286
- "approx_tokens": 5237,
291
+ "approx_tokens": 5511,
287
292
  "approx_chars_per_token": 4,
288
293
  "sections": {
289
294
  "frontmatter-scope": {
@@ -292,9 +297,9 @@
292
297
  "approx_tokens": 154
293
298
  },
294
299
  "threat-context": {
295
- "bytes": 1685,
296
- "chars": 1677,
297
- "approx_tokens": 419
300
+ "bytes": 1989,
301
+ "chars": 1979,
302
+ "approx_tokens": 495
298
303
  },
299
304
  "framework-lag-declaration": {
300
305
  "bytes": 2410,
@@ -302,14 +307,14 @@
302
307
  "approx_tokens": 601
303
308
  },
304
309
  "ttp-mapping": {
305
- "bytes": 1163,
306
- "chars": 1159,
307
- "approx_tokens": 290
310
+ "bytes": 1222,
311
+ "chars": 1218,
312
+ "approx_tokens": 305
308
313
  },
309
314
  "exploit-availability-matrix": {
310
- "bytes": 1287,
311
- "chars": 1283,
312
- "approx_tokens": 321
315
+ "bytes": 1519,
316
+ "chars": 1515,
317
+ "approx_tokens": 379
313
318
  },
314
319
  "rwep-formula": {
315
320
  "bytes": 2866,
@@ -317,14 +322,14 @@
317
322
  "approx_tokens": 714
318
323
  },
319
324
  "pre-calculated-rwep-scores": {
320
- "bytes": 4028,
321
- "chars": 3995,
322
- "approx_tokens": 999
325
+ "bytes": 4183,
326
+ "chars": 4150,
327
+ "approx_tokens": 1038
323
328
  },
324
329
  "rwep-vs-cvss-delta-analysis": {
325
- "bytes": 1395,
326
- "chars": 1377,
327
- "approx_tokens": 344
330
+ "bytes": 1509,
331
+ "chars": 1491,
332
+ "approx_tokens": 373
328
333
  },
329
334
  "analysis-procedure": {
330
335
  "bytes": 1691,
@@ -337,18 +342,18 @@
337
342
  "approx_tokens": 263
338
343
  },
339
344
  "compliance-theater-check": {
340
- "bytes": 1796,
341
- "chars": 1786,
342
- "approx_tokens": 447
345
+ "bytes": 2029,
346
+ "chars": 2019,
347
+ "approx_tokens": 505
343
348
  }
344
349
  }
345
350
  },
346
351
  "rag-pipeline-security": {
347
352
  "path": "skills/rag-pipeline-security/skill.md",
348
- "bytes": 28775,
349
- "chars": 28610,
350
- "lines": 324,
351
- "approx_tokens": 7153,
353
+ "bytes": 30486,
354
+ "chars": 30317,
355
+ "lines": 328,
356
+ "approx_tokens": 7579,
352
357
  "approx_chars_per_token": 4,
353
358
  "sections": {
354
359
  "threat-context": {
@@ -377,9 +382,9 @@
377
382
  "approx_tokens": 301
378
383
  },
379
384
  "attack-class-5-indirect-prompt-injection-via-retrieved-documents": {
380
- "bytes": 1695,
381
- "chars": 1691,
382
- "approx_tokens": 423
385
+ "bytes": 1678,
386
+ "chars": 1676,
387
+ "approx_tokens": 419
383
388
  },
384
389
  "framework-lag-declaration": {
385
390
  "bytes": 2157,
@@ -392,9 +397,9 @@
392
397
  "approx_tokens": 904
393
398
  },
394
399
  "exploit-availability-matrix": {
395
- "bytes": 3610,
396
- "chars": 3570,
397
- "approx_tokens": 893
400
+ "bytes": 5338,
401
+ "chars": 5292,
402
+ "approx_tokens": 1323
398
403
  },
399
404
  "analysis-procedure": {
400
405
  "bytes": 1720,
@@ -425,10 +430,10 @@
425
430
  },
426
431
  "ai-c2-detection": {
427
432
  "path": "skills/ai-c2-detection/skill.md",
428
- "bytes": 33572,
429
- "chars": 33436,
430
- "lines": 470,
431
- "approx_tokens": 8359,
433
+ "bytes": 35429,
434
+ "chars": 35285,
435
+ "lines": 475,
436
+ "approx_tokens": 8821,
432
437
  "approx_chars_per_token": 4,
433
438
  "sections": {
434
439
  "threat-context": {
@@ -457,14 +462,14 @@
457
462
  "approx_tokens": 299
458
463
  },
459
464
  "ttp-mapping": {
460
- "bytes": 2984,
461
- "chars": 2964,
462
- "approx_tokens": 741
465
+ "bytes": 3435,
466
+ "chars": 3411,
467
+ "approx_tokens": 853
463
468
  },
464
469
  "exploit-availability-matrix": {
465
- "bytes": 3953,
466
- "chars": 3919,
467
- "approx_tokens": 980
470
+ "bytes": 5359,
471
+ "chars": 5321,
472
+ "approx_tokens": 1330
468
473
  },
469
474
  "analysis-procedure": {
470
475
  "bytes": 4084,
@@ -495,10 +500,10 @@
495
500
  },
496
501
  "policy-exception-gen": {
497
502
  "path": "skills/policy-exception-gen/skill.md",
498
- "bytes": 28886,
499
- "chars": 28802,
503
+ "bytes": 28969,
504
+ "chars": 28887,
500
505
  "lines": 444,
501
- "approx_tokens": 7201,
506
+ "approx_tokens": 7222,
502
507
  "approx_chars_per_token": 4,
503
508
  "sections": {
504
509
  "frontmatter-scope": {
@@ -517,14 +522,14 @@
517
522
  "approx_tokens": 638
518
523
  },
519
524
  "ttp-mapping": {
520
- "bytes": 1965,
521
- "chars": 1949,
522
- "approx_tokens": 487
525
+ "bytes": 1948,
526
+ "chars": 1934,
527
+ "approx_tokens": 484
523
528
  },
524
529
  "exploit-availability-matrix": {
525
- "bytes": 1924,
526
- "chars": 1910,
527
- "approx_tokens": 478
530
+ "bytes": 2024,
531
+ "chars": 2010,
532
+ "approx_tokens": 503
528
533
  },
529
534
  "exception-template-library": {
530
535
  "bytes": 13218,
@@ -550,10 +555,10 @@
550
555
  },
551
556
  "threat-model-currency": {
552
557
  "path": "skills/threat-model-currency/skill.md",
553
- "bytes": 25608,
554
- "chars": 25506,
558
+ "bytes": 26071,
559
+ "chars": 25967,
555
560
  "lines": 409,
556
- "approx_tokens": 6377,
561
+ "approx_tokens": 6492,
557
562
  "approx_chars_per_token": 4,
558
563
  "sections": {
559
564
  "frontmatter-scope": {
@@ -567,14 +572,14 @@
567
572
  "approx_tokens": 135
568
573
  },
569
574
  "the-14-threat-class-checklist": {
570
- "bytes": 10146,
571
- "chars": 10138,
572
- "approx_tokens": 2535
575
+ "bytes": 10476,
576
+ "chars": 10466,
577
+ "approx_tokens": 2617
573
578
  },
574
579
  "threat-context": {
575
- "bytes": 1828,
576
- "chars": 1824,
577
- "approx_tokens": 456
580
+ "bytes": 1831,
581
+ "chars": 1827,
582
+ "approx_tokens": 457
578
583
  },
579
584
  "framework-lag-declaration": {
580
585
  "bytes": 2588,
@@ -582,14 +587,14 @@
582
587
  "approx_tokens": 646
583
588
  },
584
589
  "ttp-mapping": {
585
- "bytes": 2897,
586
- "chars": 2859,
587
- "approx_tokens": 715
590
+ "bytes": 2981,
591
+ "chars": 2943,
592
+ "approx_tokens": 736
588
593
  },
589
594
  "exploit-availability-matrix": {
590
- "bytes": 1799,
591
- "chars": 1785,
592
- "approx_tokens": 446
595
+ "bytes": 1845,
596
+ "chars": 1831,
597
+ "approx_tokens": 458
593
598
  },
594
599
  "compliance-theater-check": {
595
600
  "bytes": 1568,
@@ -615,10 +620,10 @@
615
620
  },
616
621
  "global-grc": {
617
622
  "path": "skills/global-grc/skill.md",
618
- "bytes": 39735,
619
- "chars": 39541,
620
- "lines": 565,
621
- "approx_tokens": 9885,
623
+ "bytes": 39881,
624
+ "chars": 39687,
625
+ "lines": 566,
626
+ "approx_tokens": 9922,
622
627
  "approx_chars_per_token": 4,
623
628
  "sections": {
624
629
  "framework-registry-mid-2026-currency": {
@@ -647,9 +652,9 @@
647
652
  "approx_tokens": 1932
648
653
  },
649
654
  "ttp-mapping": {
650
- "bytes": 1990,
651
- "chars": 1975,
652
- "approx_tokens": 494
655
+ "bytes": 2136,
656
+ "chars": 2121,
657
+ "approx_tokens": 530
653
658
  },
654
659
  "exploit-availability-matrix": {
655
660
  "bytes": 2899,
@@ -675,10 +680,10 @@
675
680
  },
676
681
  "zeroday-gap-learn": {
677
682
  "path": "skills/zeroday-gap-learn/skill.md",
678
- "bytes": 22718,
679
- "chars": 22600,
680
- "lines": 357,
681
- "approx_tokens": 5650,
683
+ "bytes": 31609,
684
+ "chars": 31473,
685
+ "lines": 401,
686
+ "approx_tokens": 7868,
682
687
  "approx_chars_per_token": 4,
683
688
  "sections": {
684
689
  "frontmatter-scope": {
@@ -702,9 +707,9 @@
702
707
  "approx_tokens": 298
703
708
  },
704
709
  "exploit-availability-matrix": {
705
- "bytes": 1589,
706
- "chars": 1575,
707
- "approx_tokens": 394
710
+ "bytes": 2371,
711
+ "chars": 2353,
712
+ "approx_tokens": 588
708
713
  },
709
714
  "the-learning-loop": {
710
715
  "bytes": 1417,
@@ -712,9 +717,9 @@
712
717
  "approx_tokens": 343
713
718
  },
714
719
  "pre-run-lessons-encoded-from-documented-zero-days": {
715
- "bytes": 7673,
716
- "chars": 7657,
717
- "approx_tokens": 1914
720
+ "bytes": 15782,
721
+ "chars": 15752,
722
+ "approx_tokens": 3938
718
723
  },
719
724
  "analysis-procedure": {
720
725
  "bytes": 2122,
@@ -735,10 +740,10 @@
735
740
  },
736
741
  "pqc-first": {
737
742
  "path": "skills/pqc-first/skill.md",
738
- "bytes": 33339,
739
- "chars": 33193,
743
+ "bytes": 33357,
744
+ "chars": 33211,
740
745
  "lines": 547,
741
- "approx_tokens": 8298,
746
+ "approx_tokens": 8303,
742
747
  "approx_chars_per_token": 4,
743
748
  "sections": {
744
749
  "threat-context": {
@@ -752,9 +757,9 @@
752
757
  "approx_tokens": 1976
753
758
  },
754
759
  "ttp-mapping": {
755
- "bytes": 2102,
756
- "chars": 2090,
757
- "approx_tokens": 523
760
+ "bytes": 2120,
761
+ "chars": 2108,
762
+ "approx_tokens": 527
758
763
  },
759
764
  "exploit-availability-matrix": {
760
765
  "bytes": 2472,
@@ -815,10 +820,10 @@
815
820
  },
816
821
  "skill-update-loop": {
817
822
  "path": "skills/skill-update-loop/skill.md",
818
- "bytes": 43027,
819
- "chars": 42921,
820
- "lines": 502,
821
- "approx_tokens": 10730,
823
+ "bytes": 47110,
824
+ "chars": 46978,
825
+ "lines": 518,
826
+ "approx_tokens": 11745,
822
827
  "approx_chars_per_token": 4,
823
828
  "sections": {
824
829
  "frontmatter-scope": {
@@ -827,14 +832,14 @@
827
832
  "approx_tokens": 113
828
833
  },
829
834
  "threat-context": {
830
- "bytes": 1510,
831
- "chars": 1504,
832
- "approx_tokens": 376
835
+ "bytes": 1548,
836
+ "chars": 1542,
837
+ "approx_tokens": 386
833
838
  },
834
839
  "ttp-mapping": {
835
- "bytes": 1071,
836
- "chars": 1069,
837
- "approx_tokens": 267
840
+ "bytes": 1092,
841
+ "chars": 1090,
842
+ "approx_tokens": 273
838
843
  },
839
844
  "why-skills-decay": {
840
845
  "bytes": 887,
@@ -872,23 +877,28 @@
872
877
  "approx_tokens": 699
873
878
  },
874
879
  "exploit-availability-matrix": {
875
- "bytes": 2718,
876
- "chars": 2712,
877
- "approx_tokens": 678
880
+ "bytes": 2730,
881
+ "chars": 2724,
882
+ "approx_tokens": 681
878
883
  },
879
884
  "compliance-theater-check": {
880
- "bytes": 1671,
881
- "chars": 1671,
882
- "approx_tokens": 418
885
+ "bytes": 1677,
886
+ "chars": 1677,
887
+ "approx_tokens": 419
888
+ },
889
+ "defensive-countermeasure-mapping": {
890
+ "bytes": 4006,
891
+ "chars": 3980,
892
+ "approx_tokens": 995
883
893
  }
884
894
  }
885
895
  },
886
896
  "security-maturity-tiers": {
887
897
  "path": "skills/security-maturity-tiers/skill.md",
888
- "bytes": 29805,
889
- "chars": 29641,
898
+ "bytes": 30252,
899
+ "chars": 30088,
890
900
  "lines": 489,
891
- "approx_tokens": 7410,
901
+ "approx_tokens": 7522,
892
902
  "approx_chars_per_token": 4,
893
903
  "sections": {
894
904
  "frontmatter-scope": {
@@ -957,23 +967,23 @@
957
967
  "approx_tokens": 974
958
968
  },
959
969
  "ttp-mapping": {
960
- "bytes": 2373,
961
- "chars": 2371,
962
- "approx_tokens": 593
970
+ "bytes": 2506,
971
+ "chars": 2504,
972
+ "approx_tokens": 626
963
973
  },
964
974
  "exploit-availability-matrix": {
965
- "bytes": 2378,
966
- "chars": 2374,
967
- "approx_tokens": 594
975
+ "bytes": 2692,
976
+ "chars": 2688,
977
+ "approx_tokens": 672
968
978
  }
969
979
  }
970
980
  },
971
981
  "researcher": {
972
982
  "path": "skills/researcher/skill.md",
973
- "bytes": 29009,
974
- "chars": 28839,
975
- "lines": 317,
976
- "approx_tokens": 7210,
983
+ "bytes": 32034,
984
+ "chars": 31862,
985
+ "lines": 334,
986
+ "approx_tokens": 7966,
977
987
  "approx_chars_per_token": 4,
978
988
  "sections": {
979
989
  "frontmatter-scope": {
@@ -982,9 +992,9 @@
982
992
  "approx_tokens": 134
983
993
  },
984
994
  "threat-context": {
985
- "bytes": 2945,
986
- "chars": 2937,
987
- "approx_tokens": 734
995
+ "bytes": 3129,
996
+ "chars": 3121,
997
+ "approx_tokens": 780
988
998
  },
989
999
  "framework-lag-declaration": {
990
1000
  "bytes": 2413,
@@ -992,9 +1002,9 @@
992
1002
  "approx_tokens": 603
993
1003
  },
994
1004
  "ttp-mapping": {
995
- "bytes": 1577,
996
- "chars": 1573,
997
- "approx_tokens": 393
1005
+ "bytes": 1713,
1006
+ "chars": 1709,
1007
+ "approx_tokens": 427
998
1008
  },
999
1009
  "exploit-availability-matrix": {
1000
1010
  "bytes": 1512,
@@ -1011,6 +1021,11 @@
1011
1021
  "chars": 2577,
1012
1022
  "approx_tokens": 644
1013
1023
  },
1024
+ "defensive-countermeasure-mapping": {
1025
+ "bytes": 2705,
1026
+ "chars": 2703,
1027
+ "approx_tokens": 676
1028
+ },
1014
1029
  "compliance-theater-check": {
1015
1030
  "bytes": 2113,
1016
1031
  "chars": 2107,
@@ -1020,16 +1035,16 @@
1020
1035
  },
1021
1036
  "attack-surface-pentest": {
1022
1037
  "path": "skills/attack-surface-pentest/skill.md",
1023
- "bytes": 32110,
1024
- "chars": 31971,
1038
+ "bytes": 32368,
1039
+ "chars": 32229,
1025
1040
  "lines": 385,
1026
- "approx_tokens": 7993,
1041
+ "approx_tokens": 8057,
1027
1042
  "approx_chars_per_token": 4,
1028
1043
  "sections": {
1029
1044
  "threat-context": {
1030
- "bytes": 4447,
1031
- "chars": 4433,
1032
- "approx_tokens": 1108
1045
+ "bytes": 4704,
1046
+ "chars": 4690,
1047
+ "approx_tokens": 1173
1033
1048
  },
1034
1049
  "framework-lag-declaration": {
1035
1050
  "bytes": 4561,
@@ -1037,14 +1052,14 @@
1037
1052
  "approx_tokens": 1138
1038
1053
  },
1039
1054
  "ttp-mapping": {
1040
- "bytes": 2217,
1041
- "chars": 2196,
1042
- "approx_tokens": 549
1055
+ "bytes": 2231,
1056
+ "chars": 2210,
1057
+ "approx_tokens": 553
1043
1058
  },
1044
1059
  "exploit-availability-matrix": {
1045
- "bytes": 2468,
1046
- "chars": 2452,
1047
- "approx_tokens": 613
1060
+ "bytes": 2455,
1061
+ "chars": 2439,
1062
+ "approx_tokens": 610
1048
1063
  },
1049
1064
  "analysis-procedure": {
1050
1065
  "bytes": 9703,
@@ -1120,10 +1135,10 @@
1120
1135
  },
1121
1136
  "dlp-gap-analysis": {
1122
1137
  "path": "skills/dlp-gap-analysis/skill.md",
1123
- "bytes": 40295,
1124
- "chars": 40036,
1125
- "lines": 341,
1126
- "approx_tokens": 10009,
1138
+ "bytes": 41718,
1139
+ "chars": 41451,
1140
+ "lines": 345,
1141
+ "approx_tokens": 10363,
1127
1142
  "approx_chars_per_token": 4,
1128
1143
  "sections": {
1129
1144
  "threat-context": {
@@ -1142,9 +1157,9 @@
1142
1157
  "approx_tokens": 881
1143
1158
  },
1144
1159
  "exploit-availability-matrix": {
1145
- "bytes": 4339,
1146
- "chars": 4316,
1147
- "approx_tokens": 1079
1160
+ "bytes": 5762,
1161
+ "chars": 5731,
1162
+ "approx_tokens": 1433
1148
1163
  },
1149
1164
  "analysis-procedure": {
1150
1165
  "bytes": 8473,
@@ -1170,16 +1185,16 @@
1170
1185
  },
1171
1186
  "supply-chain-integrity": {
1172
1187
  "path": "skills/supply-chain-integrity/skill.md",
1173
- "bytes": 39747,
1174
- "chars": 39613,
1188
+ "bytes": 39822,
1189
+ "chars": 39688,
1175
1190
  "lines": 323,
1176
- "approx_tokens": 9903,
1191
+ "approx_tokens": 9922,
1177
1192
  "approx_chars_per_token": 4,
1178
1193
  "sections": {
1179
1194
  "threat-context": {
1180
- "bytes": 5391,
1181
- "chars": 5377,
1182
- "approx_tokens": 1344
1195
+ "bytes": 5466,
1196
+ "chars": 5452,
1197
+ "approx_tokens": 1363
1183
1198
  },
1184
1199
  "framework-lag-declaration": {
1185
1200
  "bytes": 10483,
@@ -1270,16 +1285,16 @@
1270
1285
  },
1271
1286
  "identity-assurance": {
1272
1287
  "path": "skills/identity-assurance/skill.md",
1273
- "bytes": 32857,
1274
- "chars": 32710,
1288
+ "bytes": 32920,
1289
+ "chars": 32773,
1275
1290
  "lines": 278,
1276
- "approx_tokens": 8178,
1291
+ "approx_tokens": 8193,
1277
1292
  "approx_chars_per_token": 4,
1278
1293
  "sections": {
1279
1294
  "threat-context": {
1280
- "bytes": 2646,
1281
- "chars": 2636,
1282
- "approx_tokens": 659
1295
+ "bytes": 2649,
1296
+ "chars": 2639,
1297
+ "approx_tokens": 660
1283
1298
  },
1284
1299
  "framework-lag-declaration": {
1285
1300
  "bytes": 7273,
@@ -1292,9 +1307,9 @@
1292
1307
  "approx_tokens": 470
1293
1308
  },
1294
1309
  "exploit-availability-matrix": {
1295
- "bytes": 2890,
1296
- "chars": 2865,
1297
- "approx_tokens": 716
1310
+ "bytes": 2950,
1311
+ "chars": 2925,
1312
+ "approx_tokens": 731
1298
1313
  },
1299
1314
  "analysis-procedure": {
1300
1315
  "bytes": 5828,
@@ -1325,10 +1340,10 @@
1325
1340
  },
1326
1341
  "ot-ics-security": {
1327
1342
  "path": "skills/ot-ics-security/skill.md",
1328
- "bytes": 36323,
1329
- "chars": 36127,
1343
+ "bytes": 36339,
1344
+ "chars": 36143,
1330
1345
  "lines": 344,
1331
- "approx_tokens": 9032,
1346
+ "approx_tokens": 9036,
1332
1347
  "approx_chars_per_token": 4,
1333
1348
  "sections": {
1334
1349
  "threat-context": {
@@ -1347,9 +1362,9 @@
1347
1362
  "approx_tokens": 927
1348
1363
  },
1349
1364
  "exploit-availability-matrix": {
1350
- "bytes": 2282,
1351
- "chars": 2254,
1352
- "approx_tokens": 564
1365
+ "bytes": 2298,
1366
+ "chars": 2270,
1367
+ "approx_tokens": 568
1353
1368
  },
1354
1369
  "analysis-procedure": {
1355
1370
  "bytes": 8792,
@@ -1435,10 +1450,10 @@
1435
1450
  },
1436
1451
  "threat-modeling-methodology": {
1437
1452
  "path": "skills/threat-modeling-methodology/skill.md",
1438
- "bytes": 30544,
1439
- "chars": 30367,
1453
+ "bytes": 30592,
1454
+ "chars": 30415,
1440
1455
  "lines": 316,
1441
- "approx_tokens": 7592,
1456
+ "approx_tokens": 7604,
1442
1457
  "approx_chars_per_token": 4,
1443
1458
  "sections": {
1444
1459
  "purpose": {
@@ -1447,9 +1462,9 @@
1447
1462
  "approx_tokens": 171
1448
1463
  },
1449
1464
  "threat-context": {
1450
- "bytes": 4365,
1451
- "chars": 4346,
1452
- "approx_tokens": 1087
1465
+ "bytes": 4405,
1466
+ "chars": 4386,
1467
+ "approx_tokens": 1097
1453
1468
  },
1454
1469
  "framework-lag-declaration": {
1455
1470
  "bytes": 4571,
@@ -1457,14 +1472,14 @@
1457
1472
  "approx_tokens": 1141
1458
1473
  },
1459
1474
  "ttp-mapping": {
1460
- "bytes": 3915,
1461
- "chars": 3901,
1462
- "approx_tokens": 975
1475
+ "bytes": 3902,
1476
+ "chars": 3888,
1477
+ "approx_tokens": 972
1463
1478
  },
1464
1479
  "exploit-availability-matrix": {
1465
- "bytes": 2302,
1466
- "chars": 2284,
1467
- "approx_tokens": 571
1480
+ "bytes": 2323,
1481
+ "chars": 2305,
1482
+ "approx_tokens": 576
1468
1483
  },
1469
1484
  "analysis-procedure": {
1470
1485
  "bytes": 6607,
@@ -1495,10 +1510,10 @@
1495
1510
  },
1496
1511
  "webapp-security": {
1497
1512
  "path": "skills/webapp-security/skill.md",
1498
- "bytes": 28689,
1499
- "chars": 28517,
1513
+ "bytes": 28791,
1514
+ "chars": 28619,
1500
1515
  "lines": 285,
1501
- "approx_tokens": 7129,
1516
+ "approx_tokens": 7155,
1502
1517
  "approx_chars_per_token": 4,
1503
1518
  "sections": {
1504
1519
  "threat-context": {
@@ -1522,9 +1537,9 @@
1522
1537
  "approx_tokens": 853
1523
1538
  },
1524
1539
  "analysis-procedure": {
1525
- "bytes": 6501,
1526
- "chars": 6455,
1527
- "approx_tokens": 1614
1540
+ "bytes": 6603,
1541
+ "chars": 6557,
1542
+ "approx_tokens": 1639
1528
1543
  },
1529
1544
  "output-format": {
1530
1545
  "bytes": 3142,
@@ -1550,10 +1565,10 @@
1550
1565
  },
1551
1566
  "ai-risk-management": {
1552
1567
  "path": "skills/ai-risk-management/skill.md",
1553
- "bytes": 33571,
1554
- "chars": 33395,
1555
- "lines": 315,
1556
- "approx_tokens": 8349,
1568
+ "bytes": 34005,
1569
+ "chars": 33827,
1570
+ "lines": 316,
1571
+ "approx_tokens": 8457,
1557
1572
  "approx_chars_per_token": 4,
1558
1573
  "sections": {
1559
1574
  "purpose": {
@@ -1562,9 +1577,9 @@
1562
1577
  "approx_tokens": 194
1563
1578
  },
1564
1579
  "threat-context": {
1565
- "bytes": 3602,
1566
- "chars": 3582,
1567
- "approx_tokens": 896
1580
+ "bytes": 3666,
1581
+ "chars": 3646,
1582
+ "approx_tokens": 912
1568
1583
  },
1569
1584
  "framework-lag-declaration": {
1570
1585
  "bytes": 5286,
@@ -1572,9 +1587,9 @@
1572
1587
  "approx_tokens": 1313
1573
1588
  },
1574
1589
  "ttp-mapping": {
1575
- "bytes": 2201,
1576
- "chars": 2191,
1577
- "approx_tokens": 548
1590
+ "bytes": 2571,
1591
+ "chars": 2559,
1592
+ "approx_tokens": 640
1578
1593
  },
1579
1594
  "exploit-availability-matrix": {
1580
1595
  "bytes": 2466,
@@ -1610,10 +1625,10 @@
1610
1625
  },
1611
1626
  "sector-healthcare": {
1612
1627
  "path": "skills/sector-healthcare/skill.md",
1613
- "bytes": 47391,
1614
- "chars": 47209,
1628
+ "bytes": 47755,
1629
+ "chars": 47567,
1615
1630
  "lines": 377,
1616
- "approx_tokens": 11802,
1631
+ "approx_tokens": 11892,
1617
1632
  "approx_chars_per_token": 4,
1618
1633
  "sections": {
1619
1634
  "threat-context": {
@@ -1627,9 +1642,9 @@
1627
1642
  "approx_tokens": 2401
1628
1643
  },
1629
1644
  "ttp-mapping": {
1630
- "bytes": 4703,
1631
- "chars": 4686,
1632
- "approx_tokens": 1172
1645
+ "bytes": 5067,
1646
+ "chars": 5044,
1647
+ "approx_tokens": 1261
1633
1648
  },
1634
1649
  "exploit-availability-matrix": {
1635
1650
  "bytes": 3334,
@@ -1665,10 +1680,10 @@
1665
1680
  },
1666
1681
  "sector-financial": {
1667
1682
  "path": "skills/sector-financial/skill.md",
1668
- "bytes": 49827,
1669
- "chars": 49664,
1683
+ "bytes": 49847,
1684
+ "chars": 49684,
1670
1685
  "lines": 402,
1671
- "approx_tokens": 12416,
1686
+ "approx_tokens": 12421,
1672
1687
  "approx_chars_per_token": 4,
1673
1688
  "sections": {
1674
1689
  "threat-context": {
@@ -1682,19 +1697,19 @@
1682
1697
  "approx_tokens": 2235
1683
1698
  },
1684
1699
  "ttp-mapping": {
1685
- "bytes": 4497,
1686
- "chars": 4471,
1700
+ "bytes": 4499,
1701
+ "chars": 4473,
1687
1702
  "approx_tokens": 1118
1688
1703
  },
1689
1704
  "exploit-availability-matrix": {
1690
- "bytes": 2886,
1691
- "chars": 2868,
1692
- "approx_tokens": 717
1705
+ "bytes": 2902,
1706
+ "chars": 2884,
1707
+ "approx_tokens": 721
1693
1708
  },
1694
1709
  "analysis-procedure": {
1695
- "bytes": 8754,
1696
- "chars": 8724,
1697
- "approx_tokens": 2181
1710
+ "bytes": 8756,
1711
+ "chars": 8726,
1712
+ "approx_tokens": 2182
1698
1713
  },
1699
1714
  "output-format": {
1700
1715
  "bytes": 2755,
@@ -1720,10 +1735,10 @@
1720
1735
  },
1721
1736
  "sector-federal-government": {
1722
1737
  "path": "skills/sector-federal-government/skill.md",
1723
- "bytes": 44111,
1724
- "chars": 43938,
1738
+ "bytes": 44168,
1739
+ "chars": 43995,
1725
1740
  "lines": 306,
1726
- "approx_tokens": 10985,
1741
+ "approx_tokens": 10999,
1727
1742
  "approx_chars_per_token": 4,
1728
1743
  "sections": {
1729
1744
  "threat-context": {
@@ -1742,9 +1757,9 @@
1742
1757
  "approx_tokens": 603
1743
1758
  },
1744
1759
  "exploit-availability-matrix": {
1745
- "bytes": 6139,
1746
- "chars": 6057,
1747
- "approx_tokens": 1514
1760
+ "bytes": 6196,
1761
+ "chars": 6114,
1762
+ "approx_tokens": 1529
1748
1763
  },
1749
1764
  "analysis-procedure": {
1750
1765
  "bytes": 8040,
@@ -1775,10 +1790,10 @@
1775
1790
  },
1776
1791
  "sector-energy": {
1777
1792
  "path": "skills/sector-energy/skill.md",
1778
- "bytes": 53821,
1779
- "chars": 53615,
1793
+ "bytes": 53837,
1794
+ "chars": 53631,
1780
1795
  "lines": 413,
1781
- "approx_tokens": 13404,
1796
+ "approx_tokens": 13408,
1782
1797
  "approx_chars_per_token": 4,
1783
1798
  "sections": {
1784
1799
  "threat-context": {
@@ -1797,9 +1812,9 @@
1797
1812
  "approx_tokens": 1589
1798
1813
  },
1799
1814
  "exploit-availability-matrix": {
1800
- "bytes": 3990,
1801
- "chars": 3964,
1802
- "approx_tokens": 991
1815
+ "bytes": 4006,
1816
+ "chars": 3980,
1817
+ "approx_tokens": 995
1803
1818
  },
1804
1819
  "analysis-procedure": {
1805
1820
  "bytes": 10946,
@@ -1830,16 +1845,16 @@
1830
1845
  },
1831
1846
  "api-security": {
1832
1847
  "path": "skills/api-security/skill.md",
1833
- "bytes": 34661,
1834
- "chars": 34434,
1848
+ "bytes": 34862,
1849
+ "chars": 34633,
1835
1850
  "lines": 291,
1836
- "approx_tokens": 8609,
1851
+ "approx_tokens": 8658,
1837
1852
  "approx_chars_per_token": 4,
1838
1853
  "sections": {
1839
1854
  "threat-context": {
1840
- "bytes": 5107,
1841
- "chars": 5075,
1842
- "approx_tokens": 1269
1855
+ "bytes": 5180,
1856
+ "chars": 5146,
1857
+ "approx_tokens": 1287
1843
1858
  },
1844
1859
  "framework-lag-declaration": {
1845
1860
  "bytes": 3278,
@@ -1847,14 +1862,14 @@
1847
1862
  "approx_tokens": 817
1848
1863
  },
1849
1864
  "ttp-mapping": {
1850
- "bytes": 2205,
1851
- "chars": 2175,
1852
- "approx_tokens": 544
1865
+ "bytes": 2299,
1866
+ "chars": 2269,
1867
+ "approx_tokens": 567
1853
1868
  },
1854
1869
  "exploit-availability-matrix": {
1855
- "bytes": 4434,
1856
- "chars": 4377,
1857
- "approx_tokens": 1094
1870
+ "bytes": 4468,
1871
+ "chars": 4411,
1872
+ "approx_tokens": 1103
1858
1873
  },
1859
1874
  "analysis-procedure": {
1860
1875
  "bytes": 7799,
@@ -1885,10 +1900,10 @@
1885
1900
  },
1886
1901
  "cloud-security": {
1887
1902
  "path": "skills/cloud-security/skill.md",
1888
- "bytes": 55647,
1889
- "chars": 55411,
1903
+ "bytes": 55732,
1904
+ "chars": 55494,
1890
1905
  "lines": 388,
1891
- "approx_tokens": 13853,
1906
+ "approx_tokens": 13874,
1892
1907
  "approx_chars_per_token": 4,
1893
1908
  "sections": {
1894
1909
  "threat-context": {
@@ -1902,9 +1917,9 @@
1902
1917
  "approx_tokens": 2259
1903
1918
  },
1904
1919
  "ttp-mapping": {
1905
- "bytes": 3186,
1906
- "chars": 3174,
1907
- "approx_tokens": 794
1920
+ "bytes": 3271,
1921
+ "chars": 3257,
1922
+ "approx_tokens": 814
1908
1923
  },
1909
1924
  "exploit-availability-matrix": {
1910
1925
  "bytes": 5222,
@@ -1940,10 +1955,10 @@
1940
1955
  },
1941
1956
  "container-runtime-security": {
1942
1957
  "path": "skills/container-runtime-security/skill.md",
1943
- "bytes": 48824,
1944
- "chars": 48666,
1958
+ "bytes": 48840,
1959
+ "chars": 48682,
1945
1960
  "lines": 383,
1946
- "approx_tokens": 12167,
1961
+ "approx_tokens": 12171,
1947
1962
  "approx_chars_per_token": 4,
1948
1963
  "sections": {
1949
1964
  "threat-context": {
@@ -1962,9 +1977,9 @@
1962
1977
  "approx_tokens": 1116
1963
1978
  },
1964
1979
  "exploit-availability-matrix": {
1965
- "bytes": 3987,
1966
- "chars": 3937,
1967
- "approx_tokens": 984
1980
+ "bytes": 4003,
1981
+ "chars": 3953,
1982
+ "approx_tokens": 988
1968
1983
  },
1969
1984
  "analysis-procedure": {
1970
1985
  "bytes": 10858,
@@ -1995,16 +2010,16 @@
1995
2010
  },
1996
2011
  "mlops-security": {
1997
2012
  "path": "skills/mlops-security/skill.md",
1998
- "bytes": 43702,
1999
- "chars": 43420,
2000
- "lines": 329,
2001
- "approx_tokens": 10855,
2013
+ "bytes": 45173,
2014
+ "chars": 44881,
2015
+ "lines": 330,
2016
+ "approx_tokens": 11220,
2002
2017
  "approx_chars_per_token": 4,
2003
2018
  "sections": {
2004
2019
  "threat-context": {
2005
- "bytes": 4350,
2006
- "chars": 4310,
2007
- "approx_tokens": 1078
2020
+ "bytes": 5830,
2021
+ "chars": 5780,
2022
+ "approx_tokens": 1445
2008
2023
  },
2009
2024
  "framework-lag-declaration": {
2010
2025
  "bytes": 5782,
@@ -2012,9 +2027,9 @@
2012
2027
  "approx_tokens": 1441
2013
2028
  },
2014
2029
  "ttp-mapping": {
2015
- "bytes": 4385,
2016
- "chars": 4361,
2017
- "approx_tokens": 1090
2030
+ "bytes": 4376,
2031
+ "chars": 4352,
2032
+ "approx_tokens": 1088
2018
2033
  },
2019
2034
  "exploit-availability-matrix": {
2020
2035
  "bytes": 5486,
@@ -2050,10 +2065,10 @@
2050
2065
  },
2051
2066
  "incident-response-playbook": {
2052
2067
  "path": "skills/incident-response-playbook/skill.md",
2053
- "bytes": 63019,
2054
- "chars": 62769,
2068
+ "bytes": 63247,
2069
+ "chars": 62995,
2055
2070
  "lines": 553,
2056
- "approx_tokens": 15692,
2071
+ "approx_tokens": 15749,
2057
2072
  "approx_chars_per_token": 4,
2058
2073
  "sections": {
2059
2074
  "threat-context": {
@@ -2067,9 +2082,9 @@
2067
2082
  "approx_tokens": 2541
2068
2083
  },
2069
2084
  "ttp-mapping": {
2070
- "bytes": 4755,
2071
- "chars": 4749,
2072
- "approx_tokens": 1187
2085
+ "bytes": 4845,
2086
+ "chars": 4837,
2087
+ "approx_tokens": 1209
2073
2088
  },
2074
2089
  "exploit-availability-matrix": {
2075
2090
  "bytes": 3811,
@@ -2077,9 +2092,9 @@
2077
2092
  "approx_tokens": 952
2078
2093
  },
2079
2094
  "analysis-procedure": {
2080
- "bytes": 14328,
2081
- "chars": 14255,
2082
- "approx_tokens": 3564
2095
+ "bytes": 14455,
2096
+ "chars": 14382,
2097
+ "approx_tokens": 3596
2083
2098
  },
2084
2099
  "output-format": {
2085
2100
  "bytes": 9127,
@@ -2105,16 +2120,16 @@
2105
2120
  },
2106
2121
  "email-security-anti-phishing": {
2107
2122
  "path": "skills/email-security-anti-phishing/skill.md",
2108
- "bytes": 26463,
2109
- "chars": 26365,
2123
+ "bytes": 26531,
2124
+ "chars": 26433,
2110
2125
  "lines": 215,
2111
- "approx_tokens": 6591,
2126
+ "approx_tokens": 6608,
2112
2127
  "approx_chars_per_token": 4,
2113
2128
  "sections": {
2114
2129
  "threat-context": {
2115
- "bytes": 4362,
2116
- "chars": 4346,
2117
- "approx_tokens": 1087
2130
+ "bytes": 4430,
2131
+ "chars": 4414,
2132
+ "approx_tokens": 1104
2118
2133
  },
2119
2134
  "framework-lag-declaration": {
2120
2135
  "bytes": 3683,