-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathmarketplace.json
More file actions
1377 lines (1377 loc) · 70.8 KB
/
Copy pathmarketplace.json
File metadata and controls
1377 lines (1377 loc) · 70.8 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
{
"$schema": "https://json.schemastore.org/claude-code-marketplace.json",
"name": "awesome-journal-skills",
"version": "1.0.0",
"description": "Per-journal fit-and-house-style agent skills across economics, business, social science, humanities, natural science, clinical medicine, engineering, and CS conferences — per-journal depth packs plus discipline breadth bundles. Add this marketplace once, then `/plugin install <pack-name>` for any venue.",
"owner": {
"name": "Bryce Wang",
"email": "brycew6m@stanford.edu"
},
"plugins": [
{
"name": "aaai-skills",
"source": "./AAAI-Skills",
"description": "Twelve AAAI-specific skills for AI conference submission strategy, grounded in official AAAI-26 submission instructions, review process, author policies, rebuttal FAQ, supplementary-material rules, and AI-assisted review FAQ.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "academy-of-management-annals-skills",
"source": "./Academy-of-Management-Annals-Skills",
"description": "Twelve-skill bundle covering the Academy of Management Annals manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "amj-skills",
"source": "./Academy-of-Management-Journal-Skills",
"description": "Twelve-skill bundle covering the Academy of Management Journal (AMJ) manuscript lifecycle.",
"version": "0.2.0",
"category": "academic"
},
{
"name": "amr-skills",
"source": "./Academy-of-Management-Review-Skills",
"description": "Twelve-skill theory-development bundle for the Academy of Management Review (AMR), AOM's conceptual/theory journal. Theory-puzzle framing, construct clarity, propositions (not hypotheses tested), argument-logic stress-testing, contribution differentiation, conceptual figures, APA/AOM style, ScholarOne double-anonymous developmental review. NO empirical data — that is AMJ's lane.",
"version": "0.2.0",
"category": "academic"
},
{
"name": "accounting-research-skills",
"source": "./Accounting-Research-Skills",
"description": "Thirteen-skill bundle covering the 《会计研究》 manuscript lifecycle: workflow router, accounting-vs-finance fit positioning, topic selection, literature review, institutional/standards background, accounting measurement, quasi-experimental identification, information mechanism, robustness, tables/figures, standard-setter/regulator implications, submission preflight, and rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "asq-skills",
"source": "./Administrative-Science-Quarterly-Skills",
"description": "Twelve-skill bundle covering the Administrative Science Quarterly (ASQ) manuscript lifecycle.",
"version": "0.2.0",
"category": "academic"
},
{
"name": "aej-applied-economics-skills",
"source": "./AEJ-Applied-Economics-Skills",
"description": "Twelve-skill bundle covering the American Economic Journal: Applied Economics (AEJ: Applied) manuscript lifecycle, from topic selection through the AEA Data Editor reproducibility check and R&R rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "aej-economic-policy-skills",
"source": "./AEJ-Economic-Policy-Skills",
"description": "Twelve-skill bundle covering the American Economic Journal: Economic Policy (AEJ: Policy) manuscript lifecycle, from a policy-question-first topic through credible quasi-experimental identification, the AEA Data Editor reproducibility check, and R&R rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "aej-macroeconomics-skills",
"source": "./AEJ-Macroeconomics-Skills",
"description": "Twelve-skill bundle covering the American Economic Journal: Macroeconomics (AEJ: Macro) manuscript lifecycle, from topic selection through the AEA Data Editor reproducibility check and R&R rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "aej-microeconomics-skills",
"source": "./AEJ-Microeconomics-Skills",
"description": "Twelve-skill bundle covering the American Economic Journal: Microeconomics (AEJ: Micro) manuscript lifecycle, from topic selection through the central theory-model and proof craft to the AEA Data Editor reproducibility check and R&R rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "aer-insights-skills",
"source": "./AER-Insights-Skills",
"description": "Twelve-skill bundle covering the American Economic Review: Insights (AER: Insights) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "agsy-skills",
"source": "./Agricultural-Systems-Skills",
"description": "Twelve-skill bundle covering the Agricultural Systems manuscript lifecycle, centered on systems analysis and modelling — whole-farm and food-system interactions, trade-offs, model description and evaluation, and decision support.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "agriculture-environment-journal-skills",
"source": "./Agriculture-Environment-Journal-Skills",
"description": "English agriculture / environment / earth-science journal routing and per-journal fit skills with official-submission-check discipline.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "aistats-skills",
"source": "./AISTATS-Skills",
"description": "Twelve AISTATS-specific skills for AI/statistics conference submission strategy, grounded in official AISTATS 2026 CFP, OpenReview group, PMLR proceedings pages, and Code of Conduct.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "american-anthropologist-skills",
"source": "./American-Anthropologist-Skills",
"description": "Twelve-skill bundle covering the American Anthropologist (AA) manuscript lifecycle across the four subfields, with ethnographic/qualitative inference as first-class and research ethics, consent, and accountability at the center.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "aerj-skills",
"source": "./American-Educational-Research-Journal-Skills",
"description": "Twelve-skill bundle covering the American Educational Research Journal (AERJ) manuscript lifecycle across quantitative, qualitative, and mixed-methods education research and the journal's two sections (Social and Institutional Analysis; Teaching, Learning, and Human Development).",
"version": "0.1.0",
"category": "academic"
},
{
"name": "ahr-skills",
"source": "./American-Historical-Review-Skills",
"description": "Twelve-skill bundle covering The American Historical Review (AHR) manuscript lifecycle — historiographical intervention, archival source criticism, interpretation, Chicago-style prose, and the review and submission process for a humanities flagship.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "ajps-skills",
"source": "./American-Journal-of-Political-Science-Skills",
"description": "Twelve-skill bundle covering the American Journal of Political Science (AJPS) manuscript lifecycle, with a dedicated skill for the journal's mandatory third-party verified replication package deposited to the AJPS Dataverse.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "ajs-skills",
"source": "./American-Journal-of-Sociology-Skills",
"description": "Twelve-skill bundle covering the American Journal of Sociology (AJS) manuscript lifecycle — UChicago Press house style, double-blind student-run review, the $30 submission fee, the Comment-and-Reply tradition, and AJS's strength in social theory and comparative-historical sociology.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "apsr-skills",
"source": "./American-Political-Science-Review-Skills",
"description": "Twelve-skill bundle covering the American Political Science Review (APSR) manuscript lifecycle across all political-science subfields and the journal's five publication tracks.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "asr-skills",
"source": "./American-Sociological-Review-Skills",
"description": "Twelve-skill bundle covering the American Sociological Review (ASR) manuscript lifecycle across sociological subfields and methods.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "annals-of-mathematics-skills",
"source": "./Annals-of-Mathematics-Skills",
"description": "Twelve-skill bundle covering the Annals of Mathematics manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "annals-aag-skills",
"source": "./Annals-of-the-American-Association-of-Geographers-Skills",
"description": "Twelve-skill bundle covering the Annals of the American Association of Geographers (Annals of the AAG) manuscript lifecycle across the journal's four areas and cross-disciplinary track.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "annual-review-of-economics-skills",
"source": "./Annual-Review-of-Economics-Skills",
"description": "Twelve-skill bundle covering the Annual Review of Economics manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "annual-review-of-psychology-skills",
"source": "./Annual-Review-of-Psychology-Skills",
"description": "Twelve-skill bundle covering the Annual Review of Psychology invited-review lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "annual-review-of-sociology-skills",
"source": "./Annual-Review-of-Sociology-Skills",
"description": "Twelve-skill bundle covering the Annual Review of Sociology invited-review lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "british-journal-of-political-science-skills",
"source": "./British-Journal-of-Political-Science-Skills",
"description": "Twelve-skill bundle covering the British Journal of Political Science (BJPS) manuscript lifecycle across all political-science subfields and the journal's Research Article, Letter, and Comment formats.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "cancer-cell-skills",
"source": "./Cancer-Cell-Skills",
"description": "Twelve-skill bundle covering the Cancer Cell (Cell Press) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "cell-skills",
"source": "./Cell-Skills",
"description": "Twelve-skill bundle covering the Cell manuscript lifecycle: workflow router, scope/significance fit, single-narrative framing, the Highlights + eTOC + Graphical Abstract trio, the ≤150-word Summary, main-text writing, display items, STAR Methods + Key Resources Table, data/code availability, Cell Press author–date references, submission preflight + cover letter, and reviewer rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "china-economic-quarterly-skills",
"source": "./China-Economic-Quarterly-Skills",
"description": "Twelve-skill bundle covering the 《经济学(季刊)》 manuscript lifecycle: workflow router, fit positioning, internationally-legible topic selection, field-benchmarked literature review, structural / quasi-experimental identification, modern staggered-DID compliance, inference rigor, mechanism evidence, figures-over-tables, English abstract, submission preflight, and rebuttal.",
"version": "0.2.0",
"category": "academic"
},
{
"name": "china-industrial-economics-skills",
"source": "./China-Industrial-Economics-Skills",
"description": "Thirteen-skill bundle covering the 《中国工业经济》 manuscript lifecycle: workflow router, fit positioning, topic selection, literature review, institutional background, multi-period DID / event-study identification, mechanism, heterogeneity, the signature robustness arms race, tables/figures with economic-magnitude interpretation, actionable policy implications, submission preflight, and rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "china-rural-economy-skills",
"source": "./China-Rural-Economy-Skills",
"description": "Twelve-skill bundle covering the 《中国农村经济》 manuscript lifecycle: workflow router, 三农 topic selection, literature review, micro-household identification, mechanism, heterogeneity, tables / figures, rural-revitalization policy implications, abstract, house style, submission preflight, and R&R rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "chinese-public-administration-skills",
"source": "./Chinese-Public-Administration-Skills",
"description": "Twelve-skill bundle covering the 《中国行政管理》 manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "chinese-socsci-journal-skills",
"source": "./Chinese-SocialScience-Journal-Skills",
"description": "Chinese social-science journal routing and per-journal fit skills with official-submission-check discipline.",
"version": "0.2.0",
"category": "academic"
},
{
"name": "chinese-sport-science-journal-skills",
"source": "./Chinese-Sport-Science-Journal-Skills",
"description": "Chinese sport-science journal routing and per-journal fit skills with official-submission-check discipline.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "clinical-medicine-journal-skills",
"source": "./Clinical-Medicine-Journal-Skills",
"description": "English specialty clinical-medicine journal routing and per-journal fit skills with reporting-guideline, trial-registration, and official-submission-check discipline.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "cognitive-psychology-skills",
"source": "./Cognitive-Psychology-Skills",
"description": "Twelve-skill bundle covering the Cognitive Psychology (Elsevier) manuscript lifecycle, including its long-form, multi-experiment, computational-modeling house style and code-transparency expectations.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "communication-research-skills",
"source": "./Communication-Research-Skills",
"description": "Twelve-skill bundle covering the Communication Research (CR) manuscript lifecycle — hypothesis-testing experiments, surveys, and content analysis with rigorous measurement, mediation/moderation, and APA reporting.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "comparative-political-studies-skills",
"source": "./Comparative-Political-Studies-Skills",
"description": "Twelve-skill bundle covering the Comparative Political Studies (CPS) manuscript lifecycle across comparative-politics subfields and methods, from comparative-fit framing through the CPS Dataverse replication deposit.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "computer-science-conference-skills",
"source": "./Computer-Science-Conference-Skills",
"description": "AI-first computer-science conference skill stack: 155 conference fit-and-submission profiles plus a CS/AI router. Covers top AI/ML, data mining, vision, NLP, robotics, HCI, systems, security, software engineering, programming languages, databases, and theory venues, with current-cycle CFP and author-kit re-check discipline.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "conbio-skills",
"source": "./Conservation-Biology-Skills",
"description": "Twelve-skill bundle covering the Conservation Biology manuscript lifecycle — from conservation-relevant topic fit through study design, analysis, data archiving, and revision — for the flagship journal of the Society for Conservation Biology.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "car-skills",
"source": "./Contemporary-Accounting-Research-Skills",
"description": "Twelve-skill bundle covering the Contemporary Accounting Research (CAR) manuscript lifecycle, from topic selection through R&R rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "crim-skills",
"source": "./Criminology-Skills",
"description": "Twelve-skill bundle covering the Criminology (ASC / Wiley) manuscript lifecycle, from theory-forward topic selection through crime-data analysis, transparency, blinded review, and R&R rebuttals.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "ci-skills",
"source": "./Critical-Inquiry-Skills",
"description": "Twelve-skill bundle covering the Critical Inquiry essay lifecycle — from a bold interdisciplinary theoretical intervention through the reading of texts, images, and objects, to Chicago-style submission and revision.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "current-anthropology-skills",
"source": "./Current-Anthropology-Skills",
"description": "Twelve-skill bundle covering the Current Anthropology (CA) manuscript lifecycle across all subfields, with ethnographic/qualitative inference as first-class, research ethics and accountability at the center, and the distinctive CA✩ comment-and-reply Treatment encoded into review and rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "demog-skills",
"source": "./Demography-Skills",
"description": "Twelve-skill bundle covering the Demography manuscript lifecycle across population science, with demographic methods (life tables, decomposition, event history, age-period-cohort, multistate, microsimulation, projections) and the journal's Subscribe to Open access model.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "developmental-psychology-skills",
"source": "./Developmental-Psychology-Skills",
"description": "Twelve-skill bundle covering the Developmental Psychology (APA) manuscript lifecycle, including developmental-change designs, JARS reporting, and the journal's open-science requirements.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "ectheory-skills",
"source": "./Econometric-Theory-Skills",
"description": "Twelve-skill bundle covering the Econometric Theory (ET) manuscript lifecycle, from theorem-driven topic selection through single-anonymous review and rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "econometrica-skills",
"source": "./Econometrica-Skills",
"description": "Twelve-skill bundle covering the Econometrica manuscript lifecycle.",
"version": "0.2.0",
"category": "academic"
},
{
"name": "economic-policy-skills",
"source": "./Economic-Policy-Skills",
"description": "Twelve-skill bundle covering the Economic Policy manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "economic-research-skills",
"source": "./Economic-Research-Journal-Skills",
"description": "Eighteen-skill bundle covering the 《经济研究》 manuscript lifecycle: workflow router, topic selection, introduction, literature review, theory & hypotheses, data & sample, modern identification (DID/IV/RDD/DML), mechanism (post-江艇 2022), heterogeneity, robustness, tables / figures, policy implications, abstract, house style, reviewer-lens self-audit, reproducibility, submission preflight, and R&R rebuttal — plus a runnable Stata + Python code library.",
"version": "0.3.0",
"category": "academic"
},
{
"name": "engineering-technology-journal-skills",
"source": "./Engineering-Technology-Journal-Skills",
"description": "English engineering / technology journal routing and per-journal fit skills with official-submission-check discipline.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "english-humanities-journal-skills",
"source": "./English-Humanities-Journal-Skills",
"description": "English humanities journal routing and per-journal fit skills with argument-, source-, and style-guide discipline.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "english-natsci-journal-skills",
"source": "./English-NaturalScience-Journal-Skills",
"description": "English natural-science / clinical / physical / formal-science journal routing and per-journal fit skills with official-submission-check discipline.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "english-socsci-journal-skills",
"source": "./English-SocialScience-Journal-Skills",
"description": "English economics / business journal routing and per-journal fit skills with official-submission-check discipline.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "entrepreneurship-theory-and-practice-skills",
"source": "./Entrepreneurship-Theory-and-Practice-Skills",
"description": "Twelve-skill bundle covering the Entrepreneurship Theory and Practice manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "est-skills",
"source": "./Environmental-Science-and-Technology-Skills",
"description": "Twelve-skill bundle covering the Environmental Science & Technology (ES&T) manuscript lifecycle — from environmental-significance framing through study design, QA/QC, the SI + TOC-graphic workflow, ACS submission, and revision.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "eer-skills",
"source": "./European-Economic-Review-Skills",
"description": "Twelve-skill bundle covering the European Economic Review (EER) manuscript lifecycle, from topic selection through the mandatory replication package and R&R rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "european-sociological-review-skills",
"source": "./European-Sociological-Review-Skills",
"description": "Twelve-skill bundle covering the European Sociological Review (ESR) manuscript lifecycle for comparative and longitudinal quantitative sociology.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "experimental-economics-skills",
"source": "./Experimental-Economics-Skills",
"description": "Twelve-skill bundle covering the Experimental Economics manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "fcr-skills",
"source": "./Field-Crops-Research-Skills",
"description": "Twelve-skill bundle covering the Field Crops Research (FCR) manuscript lifecycle for empirical agronomy and crop science — from multi-environment field-experiment design through mixed-model analysis, yield-gap framing, data-availability declaration, and revision.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "financial-management-skills",
"source": "./Financial-Management-Skills",
"description": "Twelve-skill bundle covering the Financial Management manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "geb-skills",
"source": "./Games-and-Economic-Behavior-Skills",
"description": "Twelve-skill bundle covering the Games and Economic Behavior (GEB) manuscript lifecycle, from game-theoretic topic selection through the Editor-in-Charge review process and R&R rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "gcb-skills",
"source": "./Global-Change-Biology-Skills",
"description": "Twelve-skill bundle covering the Global Change Biology (GCB) manuscript lifecycle — from global-change significance and study design through mechanism-first exhibits, open-data archiving, submission via ScholarOne, and revision.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "gec-skills",
"source": "./Global-Environmental-Change-Skills",
"description": "Twelve-skill bundle covering the Global Environmental Change (GEC) manuscript lifecycle for interdisciplinary, policy-relevant research on the human dimensions of environmental change.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "governance-journal-skills",
"source": "./Governance-Journal-Skills",
"description": "Twelve-skill bundle covering the Governance: An International Journal of Policy, Administration, and Institutions manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "harvard-law-review-skills",
"source": "./Harvard-Law-Review-Skills",
"description": "Twelve-skill bundle covering the Harvard Law Review (HLR) article lifecycle — from legal thesis and preemption check through Bluebook footnoting, Scholastica placement and expedites, student-editor review, and the cite-check.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "human-relations-skills",
"source": "./Human-Relations-Skills",
"description": "Twelve-skill bundle covering the Human Relations manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "human-resource-management-skills",
"source": "./Human-Resource-Management-Skills",
"description": "Twelve-skill bundle covering the Human Resource Management manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "iclr-skills",
"source": "./ICLR-Skills",
"description": "Twelve ICLR-specific skills for ML conference submission strategy, grounded in official ICLR 2026 CFP, Author Guide, Reviewer Guide, Code of Ethics, Code of Conduct, and LLM-use policy.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "icml-skills",
"source": "./ICML-Skills",
"description": "Twelve ICML-specific skills for ML conference submission strategy, grounded in official ICML 2026 author instructions, CFP, Peer Review FAQ, review instructions, and LLM-review policy.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "ijcai-skills",
"source": "./IJCAI-Skills",
"description": "Twelve IJCAI-specific skills for AI conference submission strategy, grounded in official IJCAI-ECAI 2026 CFP, submissions FAQ, author response FAQ, reproducibility guidelines, author kit, important dates, peer-review principles, and conflict policy.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "imf-economic-review-skills",
"source": "./IMF-Economic-Review-Skills",
"description": "Twelve-skill bundle covering the IMF Economic Review manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "isr-skills",
"source": "./Information-Systems-Research-Skills",
"description": "Twelve-skill bundle covering the Information Systems Research (ISR) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "informs-journal-on-computing-skills",
"source": "./INFORMS-Journal-on-Computing-Skills",
"description": "Twelve-skill bundle covering the INFORMS Journal on Computing manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "ier-skills",
"source": "./International-Economic-Review-Skills",
"description": "Twelve-skill bundle covering the International Economic Review manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "io-skills",
"source": "./International-Organization-Skills",
"description": "Twelve-skill bundle covering the International Organization (IO) manuscript lifecycle for international-relations research, centered on IR theory, IPE/security scope, and IO's verify-before-publication transparency policy.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jama-skills",
"source": "./JAMA-Skills",
"description": "Twelve-skill bundle covering the JAMA (Journal of the American Medical Association) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jae-skills",
"source": "./Journal-of-Accounting-and-Economics-Skills",
"description": "Twelve-skill bundle covering the Journal of Accounting and Economics (JAE) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jar-skills",
"source": "./Journal-of-Accounting-Research-Skills",
"description": "Twelve-skill bundle covering the Journal of Accounting Research (JAR) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jape-skills",
"source": "./Journal-of-Applied-Econometrics-Skills",
"description": "Twelve-skill bundle covering the Journal of Applied Econometrics (JAE) manuscript lifecycle — from topic fit and identification on real data to the mandatory JAE Data Archive deposit.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "journal-of-applied-psychology-skills",
"source": "./Journal-of-Applied-Psychology-Skills",
"description": "Twelve-skill bundle covering the Journal of Applied Psychology manuscript lifecycle — I-O theory, measurement and design rigor, SEM/HLM/meta-analysis, masked review, and TOP-aligned open science.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jbf-skills",
"source": "./Journal-of-Banking-and-Finance-Skills",
"description": "Twelve-skill bundle covering the Journal of Banking & Finance (JBF) manuscript lifecycle: from topic selection through Editorial Manager submission and R&R rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jbes-skills",
"source": "./Journal-of-Business-and-Economic-Statistics-Skills",
"description": "Twelve-skill bundle covering the Journal of Business & Economic Statistics (JBES) manuscript lifecycle, from method-fit topic selection through submission and rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jbv-skills",
"source": "./Journal-of-Business-Venturing-Skills",
"description": "Twelve-skill bundle covering the Journal of Business Venturing (JBV) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "joc-skills",
"source": "./Journal-of-Communication-Skills",
"description": "Twelve-skill bundle covering the Journal of Communication (JoC) manuscript lifecycle across communication research traditions — quantitative, computational, qualitative, and critical.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jcp-skills",
"source": "./Journal-of-Consumer-Psychology-Skills",
"description": "Twelve-skill bundle covering the Journal of Consumer Psychology manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jcr-skills",
"source": "./Journal-of-Consumer-Research-Skills",
"description": "Twelve-skill bundle covering the Journal of Consumer Research (JCR) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jcf-skills",
"source": "./Journal-of-Corporate-Finance-Skills",
"description": "Twelve-skill bundle covering the Journal of Corporate Finance (JCF) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jde-skills",
"source": "./Journal-of-Development-Economics-Skills",
"description": "Twelve-skill bundle covering the Journal of Development Economics (JDE) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "joe-skills",
"source": "./Journal-of-Econometrics-Skills",
"description": "Twelve-skill bundle covering the Journal of Econometrics (JoE) manuscript lifecycle, from methodological topic selection through asymptotics, Monte Carlo, proof exposition, and revision rebuttals.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jebo-skills",
"source": "./Journal-of-Economic-Behavior-and-Organization-Skills",
"description": "Twelve-skill bundle covering the Journal of Economic Behavior and Organization manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "journal-of-economic-geography-skills",
"source": "./Journal-of-Economic-Geography-Skills",
"description": "Twelve-skill bundle covering the Journal of Economic Geography manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jeg-skills",
"source": "./Journal-of-Economic-Growth-Skills",
"description": "Twelve-skill bundle covering the Journal of Economic Growth (JEG) manuscript lifecycle, calibrated to a specialist growth and dynamic-macroeconomics outlet spanning theory and empirics.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jel-skills",
"source": "./Journal-of-Economic-Literature-Skills",
"description": "Twelve-skill bundle covering the Journal of Economic Literature (JEL) survey-article lifecycle, from topic selection and the proposal/commissioning route through synthesis, framework-building, balance, submission, and revision.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jep-skills",
"source": "./Journal-of-Economic-Perspectives-Skills",
"description": "Twelve-skill bundle covering the Journal of Economic Perspectives (JEP) lifecycle, from judging whether a topic is JEP-shaped, through the 2–5 page proposal/symposium pitch, accessible non-technical writing, and balance, to the email submission and editor-driven revision.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jet-skills",
"source": "./Journal-of-Economic-Theory-Skills",
"description": "Twelve-skill bundle covering the Journal of Economic Theory (JET) theorem-proof manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "journal-of-educational-psychology-skills",
"source": "./Journal-of-Educational-Psychology-Skills",
"description": "Twelve-skill bundle covering the Journal of Educational Psychology manuscript lifecycle, including its classroom/school study designs, multilevel/SEM analysis, APA 7th format, and Transparency and Openness requirements.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jeem-skills",
"source": "./Journal-of-Environmental-Economics-and-Management-Skills",
"description": "Twelve-skill bundle covering the Journal of Environmental Economics and Management manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "journal-of-finance-and-economics-skills",
"source": "./Journal-of-Finance-and-Economics-Skills",
"description": "Twelve-skill bundle covering the 《财经研究》 manuscript lifecycle: workflow router, topic selection, literature review, identification, mechanism, heterogeneity, tables / figures, policy implications, abstract, house style, submission preflight, and R&R rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jf-skills",
"source": "./Journal-of-Finance-Skills",
"description": "Twelve-skill bundle covering the The Journal of Finance (JF) manuscript lifecycle, with JF-specific mechanics (AFA portal, tiered submission fee, 60-page limit, bundled Internet Appendix, Data and Code Sharing Policy).",
"version": "0.2.0",
"category": "academic"
},
{
"name": "jfqa-skills",
"source": "./Journal-of-Financial-and-Quantitative-Analysis-Skills",
"description": "Twelve-skill bundle covering the Journal of Financial and Quantitative Analysis (JFQA) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jfe-skills",
"source": "./Journal-of-Financial-Economics-Skills",
"description": "Twelve-skill bundle covering the Journal of Financial Economics (JFE) manuscript lifecycle.",
"version": "0.2.0",
"category": "academic"
},
{
"name": "jfi-skills",
"source": "./Journal-of-Financial-Intermediation-Skills",
"description": "Twelve-skill bundle covering the Journal of Financial Intermediation (JFI) manuscript lifecycle — banking and financial-intermediation research, theory and empirics, Editorial Manager submission with a non-refundable fee, single-blind review, and Elsevier data-sharing norms.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jfm-skills",
"source": "./Journal-of-Financial-Markets-Skills",
"description": "Twelve-skill bundle covering the Journal of Financial Markets manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "journal-of-financial-research-skills",
"source": "./Journal-of-Financial-Research-Skills",
"description": "Twelve-skill bundle covering the 《金融研究》 manuscript lifecycle: workflow router, macro vs micro fit positioning, topic selection, literature review, financial-system institutional background, policy-shock and high-frequency identification, financial-channel mechanism, heterogeneity, tables and figures, operational policy implications, submission preflight, and rebuttal.",
"version": "0.2.0",
"category": "academic"
},
{
"name": "jhe-skills",
"source": "./Journal-of-Health-Economics-Skills",
"description": "Twelve-skill bundle covering the Journal of Health Economics manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jhr-skills",
"source": "./Journal-of-Human-Resources-Skills",
"description": "Twelve-skill bundle covering the Journal of Human Resources (JHR) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jibs-skills",
"source": "./Journal-of-International-Business-Studies-Skills",
"description": "Twelve-skill bundle covering the Journal of International Business Studies (JIBS) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jie-skills",
"source": "./Journal-of-International-Economics-Skills",
"description": "Twelve-skill bundle covering the Journal of International Economics (JIE) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jimf-skills",
"source": "./Journal-of-International-Money-and-Finance-Skills",
"description": "Twelve-skill bundle covering the Journal of International Money and Finance manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jole-skills",
"source": "./Journal-of-Labor-Economics-Skills",
"description": "Twelve-skill bundle covering the Journal of Labor Economics (JOLE) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jle-skills",
"source": "./Journal-of-Law-and-Economics-Skills",
"description": "Twelve-skill bundle covering the The Journal of Law and Economics manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jleo-skills",
"source": "./Journal-of-Law-Economics-and-Organization-Skills",
"description": "Twelve-skill bundle covering the Journal of Law, Economics, and Organization manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jmis-skills",
"source": "./Journal-of-Management-Information-Systems-Skills",
"description": "Twelve-skill bundle covering the Journal of Management Information Systems manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "journal-of-management-sciences-in-china-skills",
"source": "./Journal-of-Management-Sciences-in-China-Skills",
"description": "Twelve-skill bundle covering the 《管理科学学报》 manuscript lifecycle: workflow router, fit positioning (数理 vs 经验实证), problem formulation, model building, proofs, algorithm design, numerical experiments, behavioral OM, managerial insights, notation style, submission preflight, and rebuttal.",
"version": "0.2.0",
"category": "academic"
},
{
"name": "journal-of-management-skills",
"source": "./Journal-of-Management-Skills",
"description": "Twelve-skill bundle covering the Journal of Management manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jms-skills",
"source": "./Journal-of-Management-Studies-Skills",
"description": "Twelve-skill bundle covering the Journal of Management Studies manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "management-world-skills",
"source": "./Journal-of-Management-World-Skills",
"description": "Eleven-skill bundle covering the 《管理世界》 manuscript lifecycle: workflow router, China-context topic selection, literature review, identification, institutional background, mechanism / heterogeneity, tables and figures, policy implications, submission preflight, R&R rebuttal, and post-acceptance data-and-code replication package.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jmr-skills",
"source": "./Journal-of-Marketing-Research-Skills",
"description": "Twelve-skill bundle covering the Journal of Marketing Research (JMR) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jm-skills",
"source": "./Journal-of-Marketing-Skills",
"description": "Twelve-skill bundle covering the Journal of Marketing (JM) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jmf-skills",
"source": "./Journal-of-Marriage-and-Family-Skills",
"description": "Twelve-skill bundle covering the Journal of Marriage and Family (JMF) manuscript lifecycle for family-science research — family demography, relationships, parenting, child wellbeing, and family policy across sociology, psychology, demography, and family studies.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jme-skills",
"source": "./Journal-of-Monetary-Economics-Skills",
"description": "Twelve-skill bundle covering the Journal of Monetary Economics (JME) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jmcb-skills",
"source": "./Journal-of-Money-Credit-and-Banking-Skills",
"description": "Twelve-skill bundle covering the Journal of Money, Credit and Banking manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jom-skills",
"source": "./Journal-of-Operations-Management-Skills",
"description": "Twelve-skill bundle covering the Journal of Operations Management (JOM) empirical-OM manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jpsp-skills",
"source": "./Journal-of-Personality-and-Social-Psychology-Skills",
"description": "Twelve-skill bundle covering the Journal of Personality and Social Psychology (JPSP) manuscript lifecycle: choosing the right section (Attitudes and Social Cognition, Interpersonal Relations and Group Processes, Personality Processes and Individual Differences), building multi-study packages, internal meta-analysis, JARS reporting, APA 7th style, TOP-Level-2 transparency, masked review, and the per-section editorial process.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jpam-skills",
"source": "./Journal-of-Policy-Analysis-and-Management-Skills",
"description": "Twelve-skill bundle covering the Journal of Policy Analysis and Management (JPAM) manuscript lifecycle — credible policy evaluation, cost-benefit and distributional analysis, and clear policy implications across the policy fields.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jpe-skills",
"source": "./Journal-of-Political-Economy-Skills",
"description": "Twelve-skill bundle covering the Journal of Political Economy (JPE) manuscript lifecycle.",
"version": "0.2.0",
"category": "academic"
},
{
"name": "jop-skills",
"source": "./Journal-of-Politics-Skills",
"description": "Twelve-skill bundle covering The Journal of Politics (JOP) manuscript lifecycle across all political-science subfields, tuned to the journal's page-based length limits and its replication-analyst data-access policy.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jpart-skills",
"source": "./Journal-of-Public-Administration-Research-and-Theory-Skills",
"description": "Twelve-skill bundle covering the Journal of Public Administration Research and Theory (JPART) manuscript lifecycle — public-management theory building, experimental and causal research design, and the journal's double-blind, public-data-and-code submission process.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jpube-skills",
"source": "./Journal-of-Public-Economics-Skills",
"description": "Twelve-skill bundle covering the Journal of Public Economics (JPubE) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "journal-of-quantitative-and-technological-economics-skills",
"source": "./Journal-of-Quantitative-and-Technological-Economics-Skills",
"description": "Thirteen-skill bundle covering the 《数量经济技术经济研究》 manuscript lifecycle: workflow router, fit positioning (measurement/forecasting vs causal), topic selection, literature review, productivity/efficiency measurement, time-series & macro-econometric methods, out-of-sample forecasting evaluation, input-output / CGE / structural decomposition, measurement & parameter sensitivity, quantitative tables/figures, planning/forecasting/industry implications, submission preflight, and rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jru-skills",
"source": "./Journal-of-Risk-and-Uncertainty-Skills",
"description": "Twelve-skill bundle covering the Journal of Risk and Uncertainty manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jams-skills",
"source": "./Journal-of-the-Academy-of-Marketing-Science-Skills",
"description": "Twelve-skill bundle covering the Journal of the Academy of Marketing Science manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jaar-skills",
"source": "./Journal-of-the-American-Academy-of-Religion-Skills",
"description": "Twelve-skill bundle covering the Journal of the American Academy of Religion (JAAR) manuscript lifecycle for humanities scholarship in the academic study of religion — argument, primary texts and traditions, theory and method, and reflexive scholarly prose.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jacs-skills",
"source": "./Journal-of-the-American-Chemical-Society-Skills",
"description": "Twelve-skill bundle covering the Journal of the American Chemical Society (JACS) manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jais-skills",
"source": "./Journal-of-the-Association-for-Information-Systems-Skills",
"description": "Twelve-skill bundle covering the Journal of the Association for Information Systems manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jeea-skills",
"source": "./Journal-of-the-European-Economic-Association-Skills",
"description": "Twelve-skill bundle covering the Journal of the European Economic Association (JEEA) manuscript lifecycle, from topic selection through the JEEA Data Editor replication check and R&R rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "jue-skills",
"source": "./Journal-of-Urban-Economics-Skills",
"description": "Twelve-skill bundle covering the Journal of Urban Economics manuscript lifecycle.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "journal-of-world-economy-skills",
"source": "./Journal-of-World-Economy-Skills",
"description": "Twelve-skill bundle covering the 《世界经济》 manuscript lifecycle: workflow router, open-economy fit positioning, international causal topic, international-literature dialogue, customs / cross-country / GVC data sources, external-shock + shift-share / gravity identification, transmission channels, heterogeneity, tables and figures, opening-up policy implications, submission preflight, and rebuttal.",
"version": "0.2.0",
"category": "academic"
},
{
"name": "lancet-skills",
"source": "./Lancet-Skills",
"description": "Twelve-skill bundle covering the Lancet manuscript lifecycle: workflow router, scope/significance fit, study design + trial registration, EQUATOR reporting guidelines, the Research in context panel, the structured abstract, main-text writing, clinical statistics, clinical figures/tables, ethics + declaration of interests + role of funding source, submission preflight, and reviewer rebuttal.",
"version": "0.1.0",
"category": "academic"
},
{
"name": "mgsci-skills",
"source": "./Management-Science-Skills",