@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,536 @@
1
+ {
2
+ "EU": {
3
+ "skills": [
4
+ "age-gates-child-safety",
5
+ "ai-risk-management",
6
+ "api-security",
7
+ "attack-surface-pentest",
8
+ "cloud-security",
9
+ "compliance-theater",
10
+ "container-runtime-security",
11
+ "coordinated-vuln-disclosure",
12
+ "defensive-countermeasure-mapping",
13
+ "dlp-gap-analysis",
14
+ "email-security-anti-phishing",
15
+ "exploit-scoring",
16
+ "framework-gap-analysis",
17
+ "fuzz-testing-strategy",
18
+ "global-grc",
19
+ "identity-assurance",
20
+ "incident-response-playbook",
21
+ "kernel-lpe-triage",
22
+ "mcp-agent-trust",
23
+ "mlops-security",
24
+ "ot-ics-security",
25
+ "policy-exception-gen",
26
+ "pqc-first",
27
+ "researcher",
28
+ "sector-energy",
29
+ "sector-federal-government",
30
+ "sector-financial",
31
+ "sector-healthcare",
32
+ "security-maturity-tiers",
33
+ "skill-update-loop",
34
+ "supply-chain-integrity",
35
+ "threat-model-currency",
36
+ "threat-modeling-methodology",
37
+ "webapp-security",
38
+ "zeroday-gap-learn"
39
+ ],
40
+ "example_excerpts": {},
41
+ "skill_count": 35
42
+ },
43
+ "UK": {
44
+ "skills": [
45
+ "age-gates-child-safety",
46
+ "ai-risk-management",
47
+ "api-security",
48
+ "attack-surface-pentest",
49
+ "cloud-security",
50
+ "compliance-theater",
51
+ "container-runtime-security",
52
+ "coordinated-vuln-disclosure",
53
+ "defensive-countermeasure-mapping",
54
+ "dlp-gap-analysis",
55
+ "email-security-anti-phishing",
56
+ "framework-gap-analysis",
57
+ "fuzz-testing-strategy",
58
+ "global-grc",
59
+ "identity-assurance",
60
+ "incident-response-playbook",
61
+ "kernel-lpe-triage",
62
+ "mlops-security",
63
+ "ot-ics-security",
64
+ "pqc-first",
65
+ "researcher",
66
+ "sector-energy",
67
+ "sector-federal-government",
68
+ "sector-financial",
69
+ "sector-healthcare",
70
+ "security-maturity-tiers",
71
+ "skill-update-loop",
72
+ "supply-chain-integrity",
73
+ "threat-model-currency",
74
+ "threat-modeling-methodology",
75
+ "webapp-security"
76
+ ],
77
+ "example_excerpts": {},
78
+ "skill_count": 31
79
+ },
80
+ "AU": {
81
+ "skills": [
82
+ "age-gates-child-safety",
83
+ "ai-risk-management",
84
+ "api-security",
85
+ "attack-surface-pentest",
86
+ "cloud-security",
87
+ "compliance-theater",
88
+ "container-runtime-security",
89
+ "coordinated-vuln-disclosure",
90
+ "defensive-countermeasure-mapping",
91
+ "dlp-gap-analysis",
92
+ "email-security-anti-phishing",
93
+ "exploit-scoring",
94
+ "framework-gap-analysis",
95
+ "fuzz-testing-strategy",
96
+ "global-grc",
97
+ "identity-assurance",
98
+ "incident-response-playbook",
99
+ "kernel-lpe-triage",
100
+ "mcp-agent-trust",
101
+ "mlops-security",
102
+ "ot-ics-security",
103
+ "pqc-first",
104
+ "researcher",
105
+ "sector-energy",
106
+ "sector-federal-government",
107
+ "sector-financial",
108
+ "sector-healthcare",
109
+ "security-maturity-tiers",
110
+ "skill-update-loop",
111
+ "supply-chain-integrity",
112
+ "threat-model-currency",
113
+ "threat-modeling-methodology",
114
+ "webapp-security",
115
+ "zeroday-gap-learn"
116
+ ],
117
+ "example_excerpts": {},
118
+ "skill_count": 34
119
+ },
120
+ "SG": {
121
+ "skills": [
122
+ "age-gates-child-safety",
123
+ "api-security",
124
+ "cloud-security",
125
+ "container-runtime-security",
126
+ "coordinated-vuln-disclosure",
127
+ "email-security-anti-phishing",
128
+ "framework-gap-analysis",
129
+ "global-grc",
130
+ "identity-assurance",
131
+ "incident-response-playbook",
132
+ "mlops-security",
133
+ "researcher",
134
+ "sector-federal-government",
135
+ "sector-financial",
136
+ "sector-healthcare",
137
+ "threat-modeling-methodology",
138
+ "webapp-security"
139
+ ],
140
+ "example_excerpts": {},
141
+ "skill_count": 17
142
+ },
143
+ "JP": {
144
+ "skills": [
145
+ "age-gates-child-safety",
146
+ "ai-risk-management",
147
+ "api-security",
148
+ "cloud-security",
149
+ "container-runtime-security",
150
+ "coordinated-vuln-disclosure",
151
+ "dlp-gap-analysis",
152
+ "email-security-anti-phishing",
153
+ "framework-gap-analysis",
154
+ "global-grc",
155
+ "identity-assurance",
156
+ "incident-response-playbook",
157
+ "mlops-security",
158
+ "ot-ics-security",
159
+ "pqc-first",
160
+ "sector-energy",
161
+ "sector-federal-government",
162
+ "sector-financial",
163
+ "sector-healthcare",
164
+ "supply-chain-integrity",
165
+ "threat-modeling-methodology",
166
+ "webapp-security"
167
+ ],
168
+ "example_excerpts": {},
169
+ "skill_count": 22
170
+ },
171
+ "IN": {
172
+ "skills": [
173
+ "age-gates-child-safety",
174
+ "ai-risk-management",
175
+ "api-security",
176
+ "cloud-security",
177
+ "dlp-gap-analysis",
178
+ "email-security-anti-phishing",
179
+ "framework-gap-analysis",
180
+ "global-grc",
181
+ "identity-assurance",
182
+ "incident-response-playbook",
183
+ "mlops-security",
184
+ "researcher",
185
+ "sector-financial",
186
+ "sector-healthcare",
187
+ "threat-modeling-methodology"
188
+ ],
189
+ "example_excerpts": {},
190
+ "skill_count": 15
191
+ },
192
+ "CA": {
193
+ "skills": [
194
+ "age-gates-child-safety",
195
+ "ai-c2-detection",
196
+ "cloud-security",
197
+ "defensive-countermeasure-mapping",
198
+ "dlp-gap-analysis",
199
+ "framework-gap-analysis",
200
+ "global-grc",
201
+ "identity-assurance",
202
+ "sector-energy",
203
+ "sector-federal-government",
204
+ "sector-financial",
205
+ "sector-healthcare",
206
+ "zeroday-gap-learn"
207
+ ],
208
+ "example_excerpts": {},
209
+ "skill_count": 13
210
+ },
211
+ "BR": {
212
+ "skills": [
213
+ "age-gates-child-safety",
214
+ "ai-risk-management",
215
+ "api-security",
216
+ "cloud-security",
217
+ "dlp-gap-analysis",
218
+ "framework-gap-analysis",
219
+ "global-grc",
220
+ "incident-response-playbook",
221
+ "pqc-first",
222
+ "sector-financial",
223
+ "sector-healthcare",
224
+ "supply-chain-integrity",
225
+ "threat-modeling-methodology"
226
+ ],
227
+ "example_excerpts": {},
228
+ "skill_count": 13
229
+ },
230
+ "CN": {
231
+ "skills": [
232
+ "age-gates-child-safety",
233
+ "ai-risk-management",
234
+ "cloud-security",
235
+ "dlp-gap-analysis",
236
+ "framework-gap-analysis",
237
+ "global-grc",
238
+ "identity-assurance",
239
+ "incident-response-playbook",
240
+ "pqc-first",
241
+ "sector-federal-government",
242
+ "supply-chain-integrity",
243
+ "threat-modeling-methodology"
244
+ ],
245
+ "example_excerpts": {},
246
+ "skill_count": 12
247
+ },
248
+ "ZA": {
249
+ "skills": [
250
+ "sector-healthcare"
251
+ ],
252
+ "example_excerpts": {},
253
+ "skill_count": 1
254
+ },
255
+ "AE": {
256
+ "skills": [
257
+ "incident-response-playbook",
258
+ "sector-financial"
259
+ ],
260
+ "example_excerpts": {},
261
+ "skill_count": 2
262
+ },
263
+ "SA": {
264
+ "skills": [
265
+ "age-gates-child-safety",
266
+ "compliance-theater",
267
+ "defensive-countermeasure-mapping",
268
+ "dlp-gap-analysis",
269
+ "framework-gap-analysis",
270
+ "fuzz-testing-strategy",
271
+ "global-grc",
272
+ "mcp-agent-trust",
273
+ "mlops-security",
274
+ "pqc-first",
275
+ "sector-energy",
276
+ "sector-federal-government",
277
+ "sector-financial",
278
+ "sector-healthcare",
279
+ "supply-chain-integrity",
280
+ "zeroday-gap-learn"
281
+ ],
282
+ "example_excerpts": {},
283
+ "skill_count": 16
284
+ },
285
+ "NZ": {
286
+ "skills": [
287
+ "sector-financial"
288
+ ],
289
+ "example_excerpts": {},
290
+ "skill_count": 1
291
+ },
292
+ "KR": {
293
+ "skills": [
294
+ "age-gates-child-safety",
295
+ "dlp-gap-analysis",
296
+ "framework-gap-analysis",
297
+ "global-grc",
298
+ "supply-chain-integrity"
299
+ ],
300
+ "example_excerpts": {},
301
+ "skill_count": 5
302
+ },
303
+ "CL": {
304
+ "skills": [],
305
+ "example_excerpts": {},
306
+ "skill_count": 0
307
+ },
308
+ "IL": {
309
+ "skills": [
310
+ "ai-risk-management",
311
+ "api-security",
312
+ "cloud-security",
313
+ "container-runtime-security",
314
+ "coordinated-vuln-disclosure",
315
+ "dlp-gap-analysis",
316
+ "email-security-anti-phishing",
317
+ "framework-gap-analysis",
318
+ "global-grc",
319
+ "identity-assurance",
320
+ "incident-response-playbook",
321
+ "mlops-security",
322
+ "ot-ics-security",
323
+ "pqc-first",
324
+ "sector-energy",
325
+ "sector-federal-government",
326
+ "sector-financial",
327
+ "sector-healthcare",
328
+ "supply-chain-integrity",
329
+ "threat-modeling-methodology",
330
+ "webapp-security"
331
+ ],
332
+ "example_excerpts": {},
333
+ "skill_count": 21
334
+ },
335
+ "CH": {
336
+ "skills": [
337
+ "dlp-gap-analysis",
338
+ "framework-gap-analysis",
339
+ "global-grc",
340
+ "identity-assurance",
341
+ "pqc-first",
342
+ "supply-chain-integrity"
343
+ ],
344
+ "example_excerpts": {},
345
+ "skill_count": 6
346
+ },
347
+ "HK": {
348
+ "skills": [
349
+ "dlp-gap-analysis",
350
+ "framework-gap-analysis",
351
+ "global-grc",
352
+ "pqc-first",
353
+ "sector-financial",
354
+ "supply-chain-integrity"
355
+ ],
356
+ "example_excerpts": {},
357
+ "skill_count": 6
358
+ },
359
+ "TW": {
360
+ "skills": [
361
+ "cloud-security",
362
+ "container-runtime-security",
363
+ "dlp-gap-analysis",
364
+ "framework-gap-analysis",
365
+ "global-grc",
366
+ "ot-ics-security",
367
+ "pqc-first",
368
+ "supply-chain-integrity"
369
+ ],
370
+ "example_excerpts": {},
371
+ "skill_count": 8
372
+ },
373
+ "ID": {
374
+ "skills": [
375
+ "age-gates-child-safety",
376
+ "ai-attack-surface",
377
+ "ai-c2-detection",
378
+ "ai-risk-management",
379
+ "api-security",
380
+ "attack-surface-pentest",
381
+ "cloud-security",
382
+ "compliance-theater",
383
+ "container-runtime-security",
384
+ "coordinated-vuln-disclosure",
385
+ "defensive-countermeasure-mapping",
386
+ "dlp-gap-analysis",
387
+ "email-security-anti-phishing",
388
+ "exploit-scoring",
389
+ "framework-gap-analysis",
390
+ "fuzz-testing-strategy",
391
+ "global-grc",
392
+ "identity-assurance",
393
+ "incident-response-playbook",
394
+ "kernel-lpe-triage",
395
+ "mcp-agent-trust",
396
+ "mlops-security",
397
+ "ot-ics-security",
398
+ "policy-exception-gen",
399
+ "pqc-first",
400
+ "rag-pipeline-security",
401
+ "researcher",
402
+ "sector-energy",
403
+ "sector-federal-government",
404
+ "sector-financial",
405
+ "sector-healthcare",
406
+ "skill-update-loop",
407
+ "supply-chain-integrity",
408
+ "threat-model-currency",
409
+ "threat-modeling-methodology",
410
+ "webapp-security",
411
+ "zeroday-gap-learn"
412
+ ],
413
+ "example_excerpts": {},
414
+ "skill_count": 37
415
+ },
416
+ "VN": {
417
+ "skills": [
418
+ "dlp-gap-analysis",
419
+ "framework-gap-analysis",
420
+ "global-grc",
421
+ "supply-chain-integrity"
422
+ ],
423
+ "example_excerpts": {},
424
+ "skill_count": 4
425
+ },
426
+ "US_NYDFS": {
427
+ "skills": [
428
+ "ai-risk-management",
429
+ "api-security",
430
+ "cloud-security",
431
+ "coordinated-vuln-disclosure",
432
+ "dlp-gap-analysis",
433
+ "email-security-anti-phishing",
434
+ "framework-gap-analysis",
435
+ "global-grc",
436
+ "identity-assurance",
437
+ "incident-response-playbook",
438
+ "mlops-security",
439
+ "pqc-first",
440
+ "researcher",
441
+ "sector-financial",
442
+ "skill-update-loop",
443
+ "supply-chain-integrity",
444
+ "webapp-security"
445
+ ],
446
+ "example_excerpts": {},
447
+ "skill_count": 17
448
+ },
449
+ "NO": {
450
+ "skills": [
451
+ "sector-energy",
452
+ "skill-update-loop"
453
+ ],
454
+ "example_excerpts": {},
455
+ "skill_count": 2
456
+ },
457
+ "MX": {
458
+ "skills": [
459
+ "sector-financial"
460
+ ],
461
+ "example_excerpts": {},
462
+ "skill_count": 1
463
+ },
464
+ "AR": {
465
+ "skills": [
466
+ "age-gates-child-safety"
467
+ ],
468
+ "example_excerpts": {},
469
+ "skill_count": 1
470
+ },
471
+ "TR": {
472
+ "skills": [],
473
+ "example_excerpts": {},
474
+ "skill_count": 0
475
+ },
476
+ "TH": {
477
+ "skills": [],
478
+ "example_excerpts": {},
479
+ "skill_count": 0
480
+ },
481
+ "PH": {
482
+ "skills": [],
483
+ "example_excerpts": {},
484
+ "skill_count": 0
485
+ },
486
+ "US_CALIFORNIA": {
487
+ "skills": [
488
+ "age-gates-child-safety",
489
+ "compliance-theater",
490
+ "dlp-gap-analysis",
491
+ "framework-gap-analysis",
492
+ "global-grc"
493
+ ],
494
+ "example_excerpts": {},
495
+ "skill_count": 5
496
+ },
497
+ "EU_DE_BSI": {
498
+ "skills": [
499
+ "age-gates-child-safety",
500
+ "cloud-security",
501
+ "coordinated-vuln-disclosure",
502
+ "fuzz-testing-strategy",
503
+ "pqc-first"
504
+ ],
505
+ "example_excerpts": {},
506
+ "skill_count": 5
507
+ },
508
+ "EU_FR_ANSSI": {
509
+ "skills": [
510
+ "cloud-security",
511
+ "pqc-first"
512
+ ],
513
+ "example_excerpts": {},
514
+ "skill_count": 2
515
+ },
516
+ "EU_ES_AEPD": {
517
+ "skills": [
518
+ "sector-financial"
519
+ ],
520
+ "example_excerpts": {},
521
+ "skill_count": 1
522
+ },
523
+ "EU_IT_AgID_ACN": {
524
+ "skills": [
525
+ "cloud-security",
526
+ "fuzz-testing-strategy"
527
+ ],
528
+ "example_excerpts": {},
529
+ "skill_count": 2
530
+ },
531
+ "EU_ENISA": {
532
+ "skills": [],
533
+ "example_excerpts": {},
534
+ "skill_count": 0
535
+ }
536
+ }