-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathskill_candidates.json
More file actions
4266 lines (4266 loc) · 154 KB
/
skill_candidates.json
File metadata and controls
4266 lines (4266 loc) · 154 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"candidates": [
{
"built_at": "2026-04-21T17:00:00Z",
"category": "tutorial",
"notes": "Complete, multi-language tutorial (TypeScript, Python, Rust) covering account key generation. Fully self-contained with cookbook-tested code. All three language variants could become one skill or three; one skill covering the PAPI/TypeScript path is recommended.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 25,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K1",
"K2",
"K3",
"K4",
"S1",
"S2",
"S3"
]
},
"skill_id": "create-polkadot-account",
"source_pages": [
"chain-interactions/accounts/create-account.md"
],
"status": "built",
"title": "Create a Polkadot Account Programmatically"
},
{
"built_at": "2026-04-21T17:00:00Z",
"category": "tutorial",
"notes": "Multi-SDK tutorial covering PAPI, Polkadot.js, Dedot, Python Substrate Interface, and Subxt. Each SDK variant is self-contained. Cookbook-backed with CI badges. Recommend one skill targeting the PAPI variant as the primary path.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 25,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K1",
"K2",
"K3",
"K4",
"S1",
"S2",
"S3"
]
},
"skill_id": "query-account-info-sdks",
"source_pages": [
"chain-interactions/accounts/query-accounts.md"
],
"status": "built",
"title": "Query Account Information with SDKs"
},
{
"built_at": "2026-04-21T18:30:00Z",
"category": "tutorial",
"notes": "Covers querying account balances, asset metadata, and block info via curl against the Sidecar REST API. P3 absent (no files to create, only curl commands). Reference tables for response fields contribute to reference score but procedural score still meets tutorial threshold. Has cookbook CI badge (K4).",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 15,
"reference": 8
},
"priority_score": 22,
"signals": [
"P1",
"P2",
"P4",
"R1",
"R3",
"K1",
"K2",
"K3",
"K4",
"S1",
"S2"
]
},
"skill_id": "query-chain-data-sidecar-rest",
"source_pages": [
"chain-interactions/query-data/query-rest.md"
],
"status": "built",
"title": "Query On-Chain State with Sidecar REST API"
},
{
"built_at": "2026-04-21T17:00:00Z",
"category": "tutorial",
"notes": "Multi-SDK tutorial (PAPI, Polkadot.js, Dedot, Python Substrate Interface, Subxt) for querying account balance and asset info. Cookbook-backed. Recommend primary skill targeting PAPI TypeScript path.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 25,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K1",
"K2",
"K3",
"K4",
"S1",
"S2",
"S3"
]
},
"skill_id": "query-chain-state-sdks",
"source_pages": [
"chain-interactions/query-data/query-sdks.md"
],
"status": "built",
"title": "Query On-Chain State with SDKs"
},
{
"built_at": "2026-04-21T17:00:00Z",
"category": "tutorial",
"notes": "Multi-SDK tutorial demonstrating AccountNonceApi and Metadata runtime API calls. Reference API table at the bottom is supplementary. Cookbook-backed with CI badge.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 5
},
"priority_score": 25,
"signals": [
"P1",
"P2",
"P3",
"P4",
"R1",
"K1",
"K2",
"K3",
"K4",
"S1",
"S2",
"S3"
]
},
"skill_id": "call-runtime-apis-sdks",
"source_pages": [
"chain-interactions/query-data/runtime-api-calls.md"
],
"status": "built",
"title": "Call Runtime APIs with SDKs"
},
{
"built_at": "2026-04-21T18:30:00Z",
"category": "tutorial",
"notes": "Covers fee estimation using PAPI and Polkadot.js SDK. Includes a GUI section via Polkadot.js Apps (S2 notes this adds non-deterministic path) but the primary SDK workflow is fully programmatic. No cookbook badge (K4 absent).",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 22,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K1",
"K2",
"K3",
"S1",
"S2",
"S3"
]
},
"skill_id": "calculate-transaction-fees-papi",
"source_pages": [
"chain-interactions/send-transactions/calculate-transaction-fees.md"
],
"status": "built",
"title": "Calculate Transaction Fees Programmatically"
},
{
"built_at": "2026-04-21T19:00:00Z",
"category": "tutorial",
"notes": "Advanced tutorial covering XCM replay and dry-run via Chopsticks local fork. Requires building a Wasm binary and using Subscan to locate call data (partial manual step reduces S2). No cookbook badge. Specialized debugging skill for XCM developers.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 19,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K1",
"K2",
"K3",
"S1",
"S2"
]
},
"skill_id": "replay-dry-run-xcm-chopsticks",
"source_pages": [
"chain-interactions/send-transactions/interoperability/debug-and-preview-xcms.md"
],
"status": "built",
"title": "Replay and Dry-Run XCMs Using Chopsticks"
},
{
"built_at": "2026-04-21T19:00:00Z",
"category": "tutorial",
"notes": "Tutorial for estimating local execution, delivery, and remote execution fees for XCM teleports between Polkadot Hub TestNet and People Chain. Uses Chopsticks for forked chains. Code is presented in segments then assembled; full code collapsible available. No cookbook badge.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 19,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K1",
"K2",
"K3",
"S1",
"S2"
]
},
"skill_id": "estimate-xcm-fees-teleport",
"source_pages": [
"chain-interactions/send-transactions/interoperability/estimate-xcm-fees.md"
],
"status": "built",
"title": "Estimate XCM Fees for Asset Teleport"
},
{
"blocked_reason": "Manual test (2026-05-05) showed the skill cannot run as written. The skill installs @paraspell/sdk (PAPI/viem variant) but Ethereum->Polkadot Snowbridge transfers are only implemented in @paraspell/sdk-pjs. Even sdk-pjs's EvmBuilder hardcodes origin to mainnet chains ('Ethereum' | 'Moonbeam' | 'Moonriver' | 'Darwinia'); no Sepolia/testnet origin exists. The inline bridge.ts calls APIs (.address, .buildEthTransfer with ethSigner) that don't exist in the current SDK. End-to-end testing requires real mainnet WETH + ETH for gas + rewriting the script against sdk-pjs. ParaSpell's Snowbridge surface is in-flux (per upstream docs, PJS-only until migration to PAPI/viem completes). Revisit when the SDK stabilizes.",
"category": "tutorial",
"notes": "Covers bridging ERC-20 tokens (WETH) from Ethereum mainnet to Polkadot Hub using ParaSpell SDK and Snowbridge. K1 absent — requires real mainnet WETH tokens which an agent cannot autonomously obtain. S2 absent — bridge relay takes ~30 minutes with variable external state. Priority reduced to medium.",
"priority": "medium",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 11,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K2",
"K3",
"S1"
]
},
"skill_id": "bridge-eth-to-polkadot-snowbridge",
"source_pages": [
"chain-interactions/send-transactions/interoperability/transfer-assets-into-polkadot.md"
],
"status": "blocked",
"title": "Bridge Assets from Ethereum to Polkadot via Snowbridge"
},
{
"built_at": "2026-04-21T18:30:00Z",
"category": "tutorial",
"notes": "Covers full XCM transfer workflow using ParaSpell SDK: build transaction, dry-run, verify existential deposit, get fee estimates, and submit. Uses Paseo testnet with faucet tokens. Self-contained. No cookbook badge.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 22,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K1",
"K2",
"K3",
"S1",
"S2",
"S3"
]
},
"skill_id": "transfer-assets-parachains-paraspell",
"source_pages": [
"chain-interactions/send-transactions/interoperability/transfer-assets-parachains.md"
],
"status": "built",
"title": "Transfer Assets Between Parachains with ParaSpell XCM SDK"
},
{
"built_at": "2026-04-21T18:30:00Z",
"category": "tutorial",
"notes": "Demonstrates paying DOT transfer fees in USDT using PAPI, Polkadot.js, or Subxt against a Chopsticks local fork (Alice dev account — no real tokens needed). Self-contained. No cookbook badge.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 22,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K1",
"K2",
"K3",
"S1",
"S2",
"S3"
]
},
"skill_id": "pay-fees-alternative-token",
"source_pages": [
"chain-interactions/send-transactions/pay-fees-with-different-tokens.md"
],
"status": "built",
"title": "Pay Transaction Fees with an Alternative Token"
},
{
"built_at": "2026-05-19T12:00:00Z",
"category": "tutorial",
"notes": "Multi-SDK tutorial for constructing, signing, and submitting balance transfers (PAPI, Polkadot.js, Dedot, Python Substrate Interface, Subxt). Cookbook-backed. Fundamental SDK skill and likely prerequisite for other chain-interaction skills.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 25,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K1",
"K2",
"K3",
"K4",
"S1",
"S2",
"S3"
]
},
"skill_id": "send-transactions-sdks",
"source_pages": [
"chain-interactions/send-transactions/with-sdks.md"
],
"status": "built",
"title": "Send Transactions with SDKs"
},
{
"blocked_reason": "Depends on an AMM; replicating locally is tricky and Paseo coverage is limited or absent.",
"category": "tutorial",
"notes": "Covers creating liquidity pools, adding/removing liquidity, and swapping assets using the AssetConversion pallet via Polkadot.js Apps UI. P3 absent (no source files to create); workflow is GUI-dependent (S1 absent). K2 absent. Reaches tutorial threshold via P1+P2+P4=15 with P4 present. Priority medium due to GUI-only execution and absence of programmatic code.",
"priority": "medium",
"scoring": {
"category_scores": {
"conceptual": 3,
"not_applicable": 0,
"procedural": 15,
"reference": 0
},
"priority_score": 11,
"signals": [
"P1",
"P2",
"P4",
"C2",
"K1",
"K3",
"S2"
]
},
"skill_id": "convert-assets-asset-hub",
"source_pages": [
"chain-interactions/token-operations/convert-assets.md"
],
"status": "blocked",
"title": "Convert Assets on Asset Hub via AMM"
},
{
"blocked_reason": "Requires the skill to detect and provision a local asset hub plus parachain network; current generation can't orchestrate that prerequisite.",
"category": "tutorial",
"notes": "Walks through registering a foreign asset via two-step XCM: generate encoded call data on Polkadot Hub, then dispatch via source parachain. Uses Polkadot.js Apps UI (GUI-dependent, S1 absent). P3 absent. Reaches tutorial threshold via P1+P2+P4=15. Priority medium due to GUI-only workflow.",
"priority": "medium",
"scoring": {
"category_scores": {
"conceptual": 3,
"not_applicable": 0,
"procedural": 15,
"reference": 0
},
"priority_score": 11,
"signals": [
"P1",
"P2",
"P4",
"C2",
"K1",
"K3",
"S2"
]
},
"skill_id": "register-foreign-asset-via-xcm-polkadot-hub",
"source_pages": [
"chain-interactions/token-operations/register-foreign-asset.md"
],
"status": "blocked",
"title": "Register a Foreign Asset on Polkadot Hub"
},
{
"blocked_reason": "Requires the skill to set up a parachain with the asset pallet (or use Paseo) — prerequisite provisioning is outside current skill capability.",
"category": "tutorial",
"notes": "Step-by-step guide for creating a local (integer-ID) asset on Polkadot Hub via the Network > Assets UI in Polkadot.js Apps. GUI-dependent throughout (S1 absent). P3 absent. Reaches tutorial threshold via P1+P2+P4=15. Priority medium due to GUI-only execution.",
"priority": "medium",
"scoring": {
"category_scores": {
"conceptual": 3,
"not_applicable": 0,
"procedural": 15,
"reference": 0
},
"priority_score": 11,
"signals": [
"P1",
"P2",
"P4",
"C2",
"K1",
"K3",
"S2"
]
},
"skill_id": "register-local-asset-polkadot-hub",
"source_pages": [
"chain-interactions/token-operations/register-local-asset.md"
],
"status": "blocked",
"title": "Register a Local Asset on Polkadot Hub"
},
{
"built_at": "2026-05-19T12:00:00Z",
"category": "tutorial",
"notes": "Multi-OS installation guide (macOS, Linux, Windows WSL) for the Polkadot SDK. Numbered steps throughout, multiple CLI commands (brew, apt, rustup, cargo build), and verification steps with expected output. Cookbook CI badge present (K4). Self-contained from scratch — covers all dependency installation and SDK build. Optional kitchensink explore step uses Polkadot.js Apps GUI but does not affect the primary installation workflow (S1 still fires). Serves as prerequisite for most parachain development skills (create-frame-pallet, set-up-the-parachain-template, etc.).",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 15,
"reference": 0
},
"priority_score": 25,
"signals": [
"P1",
"P2",
"P4",
"K1",
"K2",
"K3",
"K4",
"S1",
"S2",
"S3"
]
},
"skill_id": "install-polkadot-sdk",
"source_pages": [
"parachains/install-polkadot-sdk.md"
],
"status": "built",
"title": "Install the Polkadot SDK"
},
{
"built_at": "2026-05-19T15:30:00Z",
"category": "tutorial",
"notes": "Full workflow for cloning, building, running, and verifying the Polkadot SDK Parachain Template locally. P1+P2+P4 present (15 = tutorial threshold). P3 absent — directory structure is shown illustratively, not as files to create. GUI verification step (Polkadot.js Apps) does not block S1 since the primary workflow is CLI-only. K1=0 — requires install-polkadot-sdk as prerequisite. Cookbook CI badge present (K4). First step in the three-page parachain launch series (set-up-the-parachain-template → deploy-to-polkadot → obtain-coretime).",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 3,
"not_applicable": 0,
"procedural": 15,
"reference": 0
},
"priority_score": 20,
"signals": [
"P1",
"P2",
"P4",
"C2",
"K2",
"K3",
"K4",
"S1",
"S2",
"S3"
]
},
"skill_id": "set-up-parachain-template",
"source_pages": [
"parachains/launch-a-parachain/set-up-the-parachain-template.md"
],
"status": "built",
"title": "Set Up the Polkadot SDK Parachain Template"
},
{
"blocked_reason": "Impractical prereq: system parachains are operated by Parity/W3F, not external developers.",
"category": "tutorial",
"notes": "Covers full collator setup: install binary (Docker or systemd), generate node key, obtain chain spec, run collator, generate session keys, and register on-chain. Registration requires governance approval for system parachains (S2 absent for that step). Core node setup is deterministic. Matches node/validator setup skill shape.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 19,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K1",
"K2",
"K3",
"S1",
"S3"
]
},
"skill_id": "run-collator-system-parachain",
"source_pages": [
"node-infrastructure/run-a-collator.md"
],
"status": "blocked",
"title": "Run a Block-Producing Collator for a System Parachain"
},
{
"built_at": "2026-04-21T18:30:00Z",
"category": "tutorial",
"notes": "Comprehensive setup guide for any parachain RPC node (archive or pruned) via Docker or systemd. Uses People Chain as example; substitution table provided for other system parachains. Covers snapshot download, binary install, service config, and sync verification. Node/validator setup shape.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 22,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K1",
"K2",
"K3",
"S1",
"S2",
"S3"
]
},
"skill_id": "run-parachain-rpc-node",
"source_pages": [
"node-infrastructure/run-a-node/parachain-rpc.md"
],
"status": "built",
"title": "Run a Parachain RPC Node"
},
{
"built_at": "2026-04-21T19:00:00Z",
"category": "tutorial",
"notes": "Setup guide for Polkadot Hub RPC node (archive or pruned) via Docker or systemd, plus optional Ethereum RPC adapter (eth-rpc) for EVM compatibility. Includes snapshot download, service config, and sync verification. CLI flags reference table (R2) is supplementary. Node/validator setup shape.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 4
},
"priority_score": 22,
"signals": [
"P1",
"P2",
"P3",
"P4",
"R2",
"K1",
"K2",
"K3",
"S1",
"S2",
"S3"
]
},
"skill_id": "run-polkadot-hub-rpc-node",
"source_pages": [
"node-infrastructure/run-a-node/polkadot-hub-rpc.md"
],
"status": "built",
"title": "Run an RPC Node for Polkadot Hub"
},
{
"blocked_reason": "Impractical prereq: only relevant when bootstrapping a new network.",
"category": "guide",
"notes": "Guide for running a Polkadot relay chain bootnode with P2P, WS, and WSS endpoints. P1 absent (no numbered-step lists; content is command blocks under section headings). Procedural score 14 → guide category. Includes nginx proxy config file. Prerequisites require an external polkadot binary and nginx install, but core steps are self-contained.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 14,
"reference": 4
},
"priority_score": 22,
"signals": [
"P2",
"P3",
"P4",
"R2",
"K1",
"K2",
"K3",
"S1",
"S2",
"S3"
]
},
"skill_id": "set-up-relay-chain-bootnode",
"source_pages": [
"node-infrastructure/run-a-node/relay-chain/bootnode.md"
],
"status": "blocked",
"title": "Set Up a Relay Chain Bootnode"
},
{
"blocked_reason": "Impractical prereq: hundreds of GB to sync; most developers use public RPC endpoints.",
"category": "guide",
"notes": "Guide covering binary installation (pre-built, compiled, snap, Docker) and startup commands for pruned, custom-pruned, and archive nodes. P1 absent (section headings, not numbered lists); no source files to create (P3 absent). Procedural score 9 → Rule 6 guide. K1=0 — prerequisites reference parachains/install-polkadot-sdk for system dependencies not covered on this page. Companion pages: secure-wss.md (WSS layer), polkadot-hub-rpc.md (hub-specific config).",
"priority": "medium",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 9,
"reference": 4
},
"priority_score": 17,
"signals": [
"P2",
"P4",
"R2",
"K2",
"K3",
"S1",
"S2",
"S3"
]
},
"skill_id": "set-up-relay-chain-full-node",
"source_pages": [
"node-infrastructure/run-a-node/relay-chain/full-node.md"
],
"status": "blocked",
"title": "Set Up a Polkadot Relay Chain Full Node"
},
{
"blocked_reason": "Impractical prereq: mostly TLS/nginx config; minimal Polkadot value.",
"category": "tutorial",
"notes": "Tutorial for enabling WSS on a running Polkadot node via nginx or Apache2 reverse proxy with SSL (Let's Encrypt or self-signed). P1+P2+P3+P4 all present — numbered steps, apt commands, nginx/apache2 config files, and connection verification. K1=0 (requires an existing running node; companion to set-up-relay-chain-full-node). K3=0 (no explicit prerequisites section). No cookbook badge.",
"priority": "medium",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 14,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K2",
"S1",
"S2",
"S3"
]
},
"skill_id": "set-up-secure-wss-relay-node",
"source_pages": [
"node-infrastructure/run-a-node/relay-chain/secure-wss.md"
],
"status": "blocked",
"title": "Set Up Secure WebSocket (WSS) for a Relay Chain Node"
},
{
"blocked_reason": "Tied to a running production validator; key rotation is an operational task, not a one-shot skill flow.",
"category": "tutorial",
"notes": "Covers generating session keys via author_rotateKeysWithOwner RPC, submitting set_keys on-chain (Polkadot Hub path and legacy relay chain path), and generating a static node key. P1+P2+P4 present; P3 absent (no source files). K1=0 — intro explicitly states prerequisite of set-up-validator page. GUI-dependent key submission steps (S1=0). Key output is non-deterministic (S2=0). Part of composite skill onboard-polkadot-validator.",
"priority": "low",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 15,
"reference": 0
},
"priority_score": 7,
"signals": [
"P1",
"P2",
"P4",
"K2",
"S3"
]
},
"skill_id": "manage-validator-session-keys",
"source_pages": [
"node-infrastructure/run-a-validator/onboarding-and-offboarding/key-management.md"
],
"status": "blocked",
"title": "Manage Validator Session Keys and Node Key"
},
{
"built_at": "2026-04-21T19:30:00Z",
"category": "tutorial",
"notes": "Complete binary installation guide covering NTP setup, Landlock verification, and installing polkadot/polkadot-prepare-worker/polkadot-execute-worker via four methods (curl+GPG, APT, Docker, build from source). P1+P2+P4 present; P3 absent (no source files). K1=5 — the installation workflow itself is self-contained; listed prerequisites are knowledge reading, not procedural dependencies. No cookbook badge (K4 absent). First step in the broader validator onboarding flow; see composite onboard-polkadot-validator.",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 15,
"reference": 0
},
"priority_score": 22,
"signals": [
"P1",
"P2",
"P4",
"K1",
"K2",
"K3",
"S1",
"S2",
"S3"
]
},
"skill_id": "set-up-polkadot-validator-node",
"source_pages": [
"node-infrastructure/run-a-validator/onboarding-and-offboarding/set-up-validator.md"
],
"status": "built",
"title": "Set Up a Polkadot Validator Node"
},
{
"blocked_reason": "Redundant with `onboard-polkadot-validator` (same flow; onboard is the more comprehensive name).",
"category": "tutorial",
"notes": "Covers syncing a validator node (full or warp sync), bonding DOT via Polkadot.js Apps staking UI, activating the validator, and running as a systemd service. P1+P2+P3+P4 all present; systemd unit file is a source file to create. K1=0 — intro states key-management must be completed first. GUI-heavy bonding and activation steps (S1=0). Bonding requires real DOT on mainnet (S2=0). C2 fired (multiple screenshots). Part of composite skill onboard-polkadot-validator.",
"priority": "low",
"scoring": {
"category_scores": {
"conceptual": 3,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 7,
"signals": [
"P1",
"P2",
"P3",
"P4",
"C2",
"K2",
"S3"
]
},
"skill_id": "start-validating-on-polkadot",
"source_pages": [
"node-infrastructure/run-a-validator/onboarding-and-offboarding/start-validating.md"
],
"status": "blocked",
"title": "Start Validating on Polkadot"
},
{
"blocked_reason": "Complex production-only validator flow; meaningful execution requires MainNet bond, real DOT, and infra commitments outside what an automated skill should orchestrate.",
"category": "tutorial",
"composite": true,
"notes": "Composite skill spanning the three validator onboarding pages. Together they cover the complete workflow: install binaries (set-up-validator), generate and register session keys and node key (key-management), sync chain, bond DOT, activate validator, and configure systemd (start-validating). K1 re-evaluated to 5 for the combined set. GUI-dependent bonding and on-chain key submission remain (S1=0, S2=0), limiting priority to medium. Priority score 15 → medium.",
"priority": "medium",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 15,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K1",
"K2",
"K3",
"S3"
]
},
"skill_id": "onboard-polkadot-validator",
"source_pages": [
"node-infrastructure/run-a-validator/onboarding-and-offboarding/set-up-validator.md",
"node-infrastructure/run-a-validator/onboarding-and-offboarding/key-management.md",
"node-infrastructure/run-a-validator/onboarding-and-offboarding/start-validating.md"
],
"status": "blocked",
"title": "Onboard as a Polkadot Validator (Full Flow)"
},
{
"blocked_reason": "Impractical prereq: generic Prometheus/Grafana setup, not Polkadot-specific.",
"category": "tutorial",
"notes": "Broad operational guide covering CPU performance tuning (SMT/NUMA deactivation, Spectre mitigations), full Prometheus+Grafana+Alertmanager monitoring stack setup with systemd service files, and security best practices (key management, secure-validator mode, Linux hardening). P1+P2+P3+P4 all present. K1=5 for the monitoring subsections, which can be set up independently on any Linux server running a Polkadot node. K3 absent (no explicit prerequisites section). Code blocks use MkDocs snippet includes for config files (K2=4). Grafana UI steps required for dashboard configuration (C2 fired).",
"priority": "high",
"scoring": {
"category_scores": {
"conceptual": 8,
"not_applicable": 0,
"procedural": 20,
"reference": 4
},
"priority_score": 19,
"signals": [
"P1",
"P2",
"P3",
"P4",
"R2",
"C1",
"C2",
"K1",
"K2",
"S1",
"S2",
"S3"
]
},
"skill_id": "set-up-validator-monitoring-stack",
"source_pages": [
"node-infrastructure/run-a-validator/operational-tasks/general-management.md"
],
"status": "blocked",
"title": "Set Up Prometheus, Grafana, and Alertmanager for a Validator Node"
},
{
"blocked_reason": "Impractical prereq: requires two pre-configured validator servers (primary + standby).",
"category": "guide",
"notes": "Guide for safely rotating between Validator A and Validator B across session N and N+3 to allow maintenance without downtime or slashing. Numbered steps present (P1); outcome verification via session change logs (P4). No CLI commands on the page itself — delegates to key-management and set-up-validator guides for execution steps (K1=0). K3 present (prerequisites section). No source files. S1 absent (no runnable commands); S2 present (deterministic timing once session key propagation delay is understood). category_ambiguous: procedural=10 vs conceptual=7 (C1: session timing explanation, C3: no runnable code).",
"priority": "low",
"scoring": {
"category_ambiguous": true,
"category_scores": {
"conceptual": 7,
"not_applicable": 0,
"procedural": 10,
"reference": 3
},
"contending_categories": [
"guide",
"conceptual"
],
"priority_score": 9,
"signals": [
"P1",
"P4",
"R3",
"C1",
"C3",
"K3",
"S2",
"S3"
]
},
"skill_id": "upgrade-validator-node-backup",
"source_pages": [
"node-infrastructure/run-a-validator/operational-tasks/upgrade-your-node.md"
],
"status": "blocked",
"title": "Upgrade a Validator Node Using a Backup Server"
},
{
"built_at": "2026-04-21T22:30:00Z",
"category": "tutorial",
"notes": "Complete guide for integrating a new pallet (pallet-utility as example) into a Polkadot SDK parachain runtime: add Cargo.toml dependency, implement Config trait in mod.rs, register in runtime construct in lib.rs, compile, generate chain spec, and run locally. P1+P2+P3+P4 all present. K1=0 — requires an existing working parachain template dev environment (set-up-the-parachain-template.md as prerequisite). K4 present (cookbook CI badge). Final verification step uses Polkadot.js Apps GUI (S1 absent). Same applies to adding any SDK pallet. Priority score 16 → medium.",
"priority": "medium",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 16,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K2",
"K3",
"K4",
"S2",
"S3"
]
},
"skill_id": "add-existing-pallet-to-runtime",
"source_pages": [
"parachains/customize-runtime/add-existing-pallets.md"
],
"status": "built",
"title": "Add an Existing Pallet to a Parachain Runtime"
},
{
"built_at": "2026-04-21T22:30:00Z",
"category": "tutorial",
"notes": "Demonstrates adding two instances of pallet-collective (TechnicalCommittee and Council) to a parachain runtime. Covers identifying instantiable pallets, defining instance parameters, implementing Config<Instance1> and Config<Instance2> traits, registering both in the runtime construct, compiling, generating a chain spec, and launching the node. P1+P2+P3+P4 all present. K1=0 — requires existing parachain template setup; also builds on add-existing-pallets.md concepts. K4 present (cookbook CI badge). Final instance-independence test uses Polkadot.js Apps GUI (S1 absent). Priority score 16 → medium.",
"priority": "medium",
"scoring": {
"category_scores": {
"conceptual": 0,
"not_applicable": 0,
"procedural": 20,
"reference": 0
},
"priority_score": 16,
"signals": [
"P1",
"P2",
"P3",
"P4",
"K2",
"K3",
"K4",
"S2",
"S3"