-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathstarter-kit-registry.json
More file actions
1031 lines (1031 loc) · 43.3 KB
/
Copy pathstarter-kit-registry.json
File metadata and controls
1031 lines (1031 loc) · 43.3 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
{
"schemaVersion": "1.0.0",
"generatedAt": "2026-06-01T21:28:53Z",
"commitSha": "d2ff53289094dfe60841dbfecdf412ee2495036c",
"kits": [
{
"$schema": "../../docs/schemas/starter-kit-schema.json",
"name": "chemistry-and-materials",
"version": "1.0.0",
"description": "Chemistry and materials science workbench spanning cheminformatics, retrosynthesis, docking, quantum chemistry, molecular dynamics, and generative materials design.",
"displayName": "Chemistry and Materials",
"longDescription": "# Chemistry and Materials\n\nA comprehensive starter kit for chemistry and materials science research that combines cheminformatics, retrosynthetic planning, molecular docking, quantum chemistry, classical and ab-initio molecular dynamics, and generative materials design.\n\n**What you can do:**\n- Plan retrosynthetic routes for organic molecules\n- Search chemical and natural-product databases\n- Dock small molecules against protein targets\n- Run DFT, ab-initio MD, and conformer searches\n- Run classical molecular dynamics with GROMACS, LAMMPS, and OpenMM\n- Generate novel inorganic materials and analyze functional groups\n\n**Ideal for:** computational chemists, medicinal chemists, materials scientists, and catalysis researchers.",
"author": {
"name": "Microsoft",
"email": "discovery-catalog@microsoft.com",
"url": "https://github.com/microsoft/discovery"
},
"license": "MIT",
"keywords": [
"chemistry",
"materials science",
"cheminformatics",
"retrosynthesis",
"quantum chemistry",
"molecular dynamics",
"drug discovery",
"generative design"
],
"category": "Chemistry",
"homepage": "https://github.com/microsoft/discovery/tree/main/starter-kits/chemistry-and-materials",
"party": "1p",
"lifecycle": "active",
"agentRefs": [
{
"ref": "agents/aizynthfinder",
"role": "primary",
"required": true,
"description": "Retrosynthetic planning for organic molecules.",
"agentMeta": {
"name": "aizynthfinder",
"displayName": "AiZynthFinder",
"version": "1.0.0",
"tags": [
"retrosynthesis",
"drug-discovery",
"trained-model"
],
"description": "Expert agent for retrosynthetic route planning using AiZynthFinder. Breaks down target drug-like molecules into purchasable precursors using neural-network-guided MCTS with USPTO reaction templates.\n"
}
},
{
"ref": "agents/autodock",
"role": "supporting",
"required": false,
"description": "Molecular docking of small-molecule ligands to protein targets.",
"agentMeta": {
"name": "autodock",
"displayName": "AutoDock Vina",
"version": "1.0.0",
"tags": [
"molecule-docking",
"drug-discovery",
"virtual-screening"
],
"description": "Expert molecular docking agent using AutoDock Vina for protein-ligand binding affinity prediction, virtual screening, and structure-based drug design.\n"
}
},
{
"ref": "agents/bindingdb",
"role": "supporting",
"required": false,
"description": "Search BindingDB for measured protein-ligand binding affinities.",
"agentMeta": {
"name": "bindingdb",
"displayName": "BindingDB",
"version": "1.0.0",
"tags": [
"binding-affinity",
"drug-discovery",
"database"
],
"description": "BindingDB agent for retrieving comprehensive binding affinity data for protein-ligand interactions. Provides access to local SQLite database with sub-millisecond query performance.\n"
}
},
{
"ref": "agents/chemberta",
"role": "supporting",
"required": false,
"description": "ChemBERTa embeddings and predictions for molecules.",
"agentMeta": {
"name": "chemberta",
"displayName": "ChemBERTa",
"version": "1.0.0",
"tags": [
"cheminformatics",
"molecular-property-prediction",
"trained-model",
"transformer"
],
"description": "Molecular property prediction agent using ChemBERTa-2 transformer. Provides SMILES-based molecular embeddings, classification and regression fine-tuning, SMILES augmentation, confidence scoring, similarity search, and clustering.\n"
}
},
{
"ref": "agents/chembl",
"role": "supporting",
"required": false,
"description": "Query ChEMBL for bioactivity, targets, and assays.",
"agentMeta": {
"name": "chembl",
"displayName": "ChEMBL",
"version": "1.0.0",
"tags": [
"cheminformatics",
"bioactivity",
"database"
],
"description": "ChEMBL agent for retrieving chemical and bioactivity data from the ChEMBL database. Provides access to compound information, target data, bioactivity measurements, and cross-references with PDB structures.\n"
}
},
{
"ref": "agents/chemprop",
"role": "supporting",
"required": false,
"description": "Train and apply Chemprop message-passing neural networks.",
"agentMeta": {
"name": "chemprop",
"displayName": "Chemprop",
"version": "1.0.0",
"tags": [
"molecular-properties",
"trained-model",
"d-mpnn",
"property-prediction"
],
"description": "Expert agent for molecular property prediction using Chemprop v2 (D-MPNN). Trains, evaluates, and deploys message-passing neural networks for regression, classification, and multi-task molecular property prediction.\n"
}
},
{
"ref": "agents/coconut",
"role": "supporting",
"required": false,
"description": "Search the COCONUT natural products database.",
"agentMeta": {
"name": "coconut",
"displayName": "COCONUT",
"version": "1.0.0",
"tags": [
"cheminformatics",
"natural-products",
"database"
],
"description": "Agent for searching and retrieving natural product structures from the COCONUT (Collection of Open Natural Products) database. Provides access to natural product chemical data, molecular properties, and taxonomic classifications.\n"
}
},
{
"ref": "agents/cp2k",
"role": "supporting",
"required": false,
"description": "Run CP2K DFT and ab-initio molecular dynamics calculations.",
"agentMeta": {
"name": "cp2k",
"displayName": "CP2K",
"version": "1.0.0",
"tags": [
"quantum-chemistry",
"materials-science",
"dft"
],
"description": "Expert agent for atomistic simulations using CP2K. Designs and executes DFT calculations with geometry optimization, ab initio MD, vibrational analysis, band structure, NEB, and semi-empirical methods.\n"
}
},
{
"ref": "agents/crest",
"role": "supporting",
"required": false,
"description": "Conformer-rotamer sampling with CREST.",
"agentMeta": {
"name": "crest",
"displayName": "CREST",
"version": "1.0.0",
"tags": [
"conformational-search",
"semiempirical"
],
"description": "Expert agent for conformational sampling and molecular chemical space exploration using CREST 3.0 with GFN-xTB semiempirical methods.\n"
}
},
{
"ref": "agents/gromacs",
"role": "supporting",
"required": false,
"description": "Run GROMACS molecular dynamics simulations.",
"agentMeta": {
"name": "gromacs",
"displayName": "GROMACS",
"version": "1.0.0",
"tags": [
"molecular-dynamics"
],
"description": "Python code environment with Gromacs tool for high-performance molecular dynamics (MD) simulations.\n"
}
},
{
"ref": "agents/lammps",
"role": "supporting",
"required": false,
"description": "Run LAMMPS classical molecular dynamics simulations.",
"agentMeta": {
"name": "lammps",
"displayName": "LAMMPS CPU",
"version": "1.0.0",
"tags": [
"molecular-dynamics",
"materials-science"
],
"description": "Agent for orchestrating LAMMPS CPU tool for molecular simulations. Includes MDAnalysis, ASE, freud, and pandas for self-sufficient trajectory analysis and structure manipulation.\n"
}
},
{
"ref": "agents/janus",
"role": "supporting",
"required": false,
"description": "Janus generative molecular design.",
"agentMeta": {
"name": "janus",
"displayName": "De Novo Molecule Generator (powered by JANUS)",
"version": "1.0.0",
"tags": [
"molecular-design",
"generative",
"de-novo",
"selfies",
"inverse-design",
"genetic-algorithm",
"materials-discovery"
],
"description": "De novo molecule generator wrapping the JANUS algorithm (Nigam et al., Digital Discovery 2022): a parallel-tempered SELFIES-based genetic algorithm with a DNN classifier guiding exploitation. SELFIES encoding guarantees 100% chemical validity. Accepts user-supplied fitness functions and optional custom filters (e.g. `make_pfas_filter()` for PFAS-free runs, applied as a hard post-filter). CPU-only, no bundled weights, no runtime internet.\n"
}
},
{
"ref": "agents/mattergen",
"role": "supporting",
"required": false,
"description": "Generative design of novel inorganic materials with MatterGen.",
"agentMeta": {
"name": "mattergen",
"displayName": "MatterGen Crystal Generator",
"version": "1.0.0",
"tags": [
"materials-science",
"generative-model",
"crystal-structure",
"diffusion-model",
"computational-chemistry",
"trained-model"
],
"description": "Generative AI agent for inorganic crystal structure design using MatterGen (Zeni et al., Nature 2025). Generates novel, stable crystal structures unconditionally or conditioned on target properties including chemical composition, space group, band gap, magnetic density, and bulk modulus. Supports 9 pretrained models from the HuggingFace Hub.\n"
}
},
{
"ref": "agents/mol-toolkit",
"role": "supporting",
"required": false,
"description": "Cheminformatics utilities for molecule manipulation and conversion.",
"agentMeta": {
"name": "mol-toolkit",
"displayName": "MolToolkit",
"version": "1.0.0",
"tags": [
"cheminformatics"
],
"description": "Agent dedicated to cheminformatics.\n"
}
},
{
"ref": "agents/molecular-groups",
"role": "supporting",
"required": false,
"description": "Identify and analyze functional groups in molecules.",
"agentMeta": {
"name": "molecular-groups",
"displayName": "Molecular Groups",
"version": "1.0.0",
"tags": [
"cheminformatics",
"functional-groups",
"safety-screening"
],
"description": "Expert agent for identifying functional groups in molecular structures. Provides both general functional group analysis and safety screening for hazardous groups.\n"
}
},
{
"ref": "agents/openmm",
"role": "supporting",
"required": false,
"description": "Run OpenMM molecular dynamics simulations.",
"agentMeta": {
"name": "openmm",
"displayName": "OpenMM",
"version": "1.0.0",
"tags": [
"molecular-dynamics",
"biomolecular-simulation",
"gpu"
],
"description": "Expert agent for GPU-accelerated molecular dynamics simulations using OpenMM. Handles PDB preparation, system building, energy minimization, equilibration, production MD, and trajectory analysis.\n"
}
},
{
"ref": "agents/psi4",
"role": "supporting",
"required": false,
"description": "Run Psi4 ab-initio quantum chemistry calculations.",
"agentMeta": {
"name": "psi4",
"displayName": "Psi4",
"version": "1.0.0",
"tags": [
"quantum-chemistry",
"dft",
"ab-initio"
],
"description": "Python code environment with Psi4 for ab initio quantum chemistry calculations. HF, DFT, post-HF methods, SAPT, excited states, geometry optimization, frequency analysis, and thermochemistry.\n"
}
},
{
"ref": "agents/pubchem",
"role": "supporting",
"required": false,
"description": "Query PubChem for compounds, properties, and bioassays.",
"agentMeta": {
"name": "pubchem",
"displayName": "PubChem",
"version": "1.0.0",
"tags": [
"cheminformatics",
"database"
],
"description": "Tool for accessing chemical information from the PubChem database using the PubChem API.\n"
}
},
{
"ref": "agents/quantum-espresso",
"role": "supporting",
"required": false,
"description": "Run Quantum ESPRESSO plane-wave DFT calculations.",
"agentMeta": {
"name": "quantum-espresso",
"displayName": "Quantum ESPRESSO",
"version": "1.0.0",
"tags": [
"quantum-chemistry",
"materials-science",
"dft"
],
"description": "Python code environment with Quantum ESPRESSO for first-principles electronic structure calculations and materials modeling. Includes pymatgen, phonopy, seekpath, and ASE.\n"
}
},
{
"ref": "agents/retrochimera",
"role": "supporting",
"required": false,
"description": "Retrosynthesis planning with RetroChimera.",
"agentMeta": {
"name": "retrochimera",
"displayName": "Retrosynthesis Predictor (powered by RetroChimera)",
"version": "1.0.0",
"tags": [
"retrosynthesis",
"computational-chemistry",
"drug-discovery",
"reaction-prediction",
"trained-model",
"gnn"
],
"description": "Expert agent for retrosynthetic analysis using the RetroChimera model (Maziarz et al., 2025). Ensembles template-based and de novo models with complementary inductive biases to predict single-step retrosynthetic disconnections and multi-step synthesis routes. Pre-loaded with the Pistachio-trained checkpoint (strongest model).\n"
}
}
],
"samplePrompts": [
{
"id": "sp-1",
"title": "Plan a retrosynthetic route",
"prompt": "Propose a retrosynthetic route to ibuprofen using AiZynthFinder and rank the routes by estimated feasibility.",
"difficulty": "beginner",
"expectedOutput": "Ranked retrosynthetic routes with intermediates and disconnection logic."
},
{
"id": "sp-2",
"title": "Dock a ligand to a target",
"prompt": "Dock ibuprofen against COX-2 (PDB 5KIR) with AutoDock and report the top binding poses with predicted affinity.",
"difficulty": "intermediate",
"expectedOutput": "Ranked poses, docking scores, and key interacting residues."
},
{
"id": "sp-3",
"title": "Quantum chemistry geometry optimization",
"prompt": "Optimize the geometry of caffeine at the B3LYP/6-31G* level using Psi4 and report the final energy and key bond lengths.",
"difficulty": "intermediate",
"expectedOutput": "Optimized geometry, total energy, and selected geometric parameters."
},
{
"id": "sp-4",
"title": "Generate a novel inorganic material",
"prompt": "Use MatterGen to propose 5 candidate crystal structures for a stable Li-ion conductor and summarize their compositions.",
"difficulty": "advanced",
"expectedOutput": "Candidate compositions, predicted structures, and stability estimates."
}
],
"riskProfile": {
"requiresExternalCompute": true,
"dataResidency": "user-managed Azure subscription"
},
"availability": "healthy",
"missingAgents": [],
"computedAt": "2026-06-01T21:28:53Z",
"kitPath": "starter-kits/chemistry-and-materials"
},
{
"$schema": "../../docs/schemas/starter-kit-schema.json",
"name": "chip-synthesis-timing",
"version": "1.0.0",
"description": "Synthesize Verilog RTL and analyze timing.",
"displayName": "Chip Synthesis & STA",
"longDescription": "# Chip Synthesis and Timing\n\nThis starter kit allows users to synthesize Verilog RTL and analyze timing with the SKY130 or GF180MCU nodes.\n\n**What you can do:**\n- Synthesize Verilog RTL to gate-level netlist\n- Perform static timing analysis (STA)\n- Generate Synopsys Design Constraints (SDC) files\n\n**Ideal for:** digital design and timing optimization.",
"author": {
"name": "Microsoft",
"email": "discovery-catalog@microsoft.com",
"url": "https://github.com/microsoft/discovery"
},
"license": "MIT",
"category": "Silicon",
"homepage": "https://github.com/microsoft/discovery/tree/main/starter-kits/microsoft/chip-synthesis-timing",
"party": "1p",
"lifecycle": "active",
"keywords": [
"chip",
"synthesis",
"timing",
"verilog",
"rtl",
"sta",
"asic",
"sdc"
],
"agentRefs": [
{
"ref": "agents/rtl-yosys-syn",
"role": "primary",
"required": true,
"description": "Runs RTL synthesis based on user-supplied Verilog RTL.",
"agentMeta": {
"name": "rtl-yosys-syn",
"displayName": "Yosys-RTL-Synthesis",
"version": "1.0.0",
"tags": [
"rtl",
"synthesis",
"verilog",
"asic",
"digital-design"
],
"description": "Open-source Verilog RTL synthesis agent powered by Yosys. Synthesizes Verilog designs to gate-level netlists targeting SKY130 or GF180MCU ASIC technology nodes. Produces netlists and synthesis reports with cell count and area statistics.\n"
}
},
{
"ref": "agents/opensta",
"role": "supporting",
"required": true,
"description": "Performs static timing analysis on synthesized netlists.",
"agentMeta": {
"name": "opensta",
"displayName": "OpenSTA-Static-Timing-Analysis",
"version": "1.0.0",
"tags": [
"static-timing-analysis",
"sta",
"verilog",
"netlist",
"sky130",
"gf180mcu",
"timing",
"asic"
],
"description": "Static timing analysis for gate-level Verilog netlists using OpenSTA. Supports SKY130 and GF180MCU technology nodes with built-in liberty models. Auto-generates SDC constraints when not provided by the user.\n"
}
}
],
"samplePrompts": [
{
"id": "sp-1",
"title": "Synthesize an RTL block",
"prompt": "Synthesize this Verilog design for SKY130 and report area, cell count, and estimated max frequency.",
"difficulty": "beginner",
"expectedOutput": "Gate-level netlist, synthesis area and cell summary, and estimated timing/Fmax report."
},
{
"id": "sp-2",
"title": "Run STA on a synthesized design, with auto-generated SDC",
"prompt": "Run static timing analysis on my synthesized netlist with a 10 ns clock and show setup and hold slack for all endpoints.",
"difficulty": "beginner",
"expectedOutput": "STA report with setup and hold checks, worst negative slack (WNS), and total negative slack (TNS)."
},
{
"id": "sp-3",
"title": "Synthesis plus timing with user's SDC",
"prompt": "Synthesize this Verilog design for GF180MCU using my SDC constraints, then run STA and summarize the top 10 critical timing paths.",
"difficulty": "intermediate",
"expectedOutput": "Synthesized netlist plus timing summary with critical paths, slack, and path delay breakdown."
},
{
"id": "sp-4",
"title": "Compare timing at two clock targets",
"prompt": "Synthesize this design once at 5 ns and once at 3.3 ns clock constraints, then compare area and timing closure results.",
"difficulty": "intermediate",
"expectedOutput": "Two-run comparison table including area, cell count, WNS, TNS, and timing pass/fail status."
},
{
"id": "sp-5",
"title": "Diagnose setup timing violations",
"prompt": "After synthesis, run STA at 200 MHz and identify the worst setup violations with suggested RTL or constraint fixes.",
"difficulty": "advanced",
"expectedOutput": "Violation-focused STA report with worst offending paths and concrete optimization recommendations."
}
],
"riskProfile": {
"requiresExternalCompute": true,
"dataResidency": "user-managed Azure subscription"
},
"availability": "healthy",
"missingAgents": [],
"computedAt": "2026-06-01T21:28:53Z",
"kitPath": "starter-kits/chip-synthesis-timing"
},
{
"$schema": "../../docs/schemas/starter-kit-schema.json",
"name": "life-sciences",
"version": "1.0.0",
"description": "End-to-end life sciences workbench spanning protein structure, drug discovery, molecular simulation, omics, and literature mining.",
"displayName": "Life Sciences",
"longDescription": "# Life Sciences\n\nA comprehensive starter kit for life sciences research that combines structural biology, drug discovery, molecular dynamics, cheminformatics, omics, clinical evidence, and scientific literature mining.\n\n**What you can do:**\n- Predict protein structures and design novel binders\n- Search chemical, biological, and patent databases\n- Dock small molecules and run molecular dynamics simulations\n- Train and apply ML models for molecular property prediction\n- Analyze RNA-seq experiments and nucleotide motifs\n- Mine PubMed, clinical trials, and the scientific literature\n\n**Ideal for:** computational biologists, medicinal chemists, structural biologists, and translational research teams.",
"author": {
"name": "Microsoft",
"email": "discovery-catalog@microsoft.com",
"url": "https://github.com/microsoft/discovery"
},
"license": "MIT",
"keywords": [
"life sciences",
"biology",
"drug discovery",
"structural biology",
"cheminformatics",
"molecular dynamics",
"omics",
"literature"
],
"category": "Biology",
"homepage": "https://github.com/microsoft/discovery/tree/main/starter-kits/life-sciences",
"party": "1p",
"lifecycle": "active",
"agentRefs": [
{
"ref": "agents/alphafold",
"role": "primary",
"required": true,
"description": "Predicts 3D protein structures from amino acid sequences.",
"agentMeta": {
"name": "alphafold",
"displayName": "AlphaFold",
"version": "1.0.0",
"tags": [
"structural-biology",
"protein-folding",
"alphafold",
"trained-model",
"structure-prediction"
],
"description": "Agent for protein structure prediction using AlphaFold. Supports monomer and multimer folding, pLDDT and PAE quality assessment, FASTA input handling, and structure analysis for proteins and protein complexes.\n"
}
},
{
"ref": "agents/ambertools",
"role": "supporting",
"required": false,
"description": "Biomolecular preparation and analysis with AmberTools.",
"agentMeta": {
"name": "ambertools",
"displayName": "AmberTools",
"version": "1.0.0",
"tags": [
"molecular-dynamics",
"biomolecular-simulation"
],
"description": "Expert agent for biomolecular simulations using AmberTools (sander, tleap, cpptraj, antechamber).\n"
}
},
{
"ref": "agents/autodock",
"role": "supporting",
"required": false,
"description": "Molecular docking of small-molecule ligands to protein targets.",
"agentMeta": {
"name": "autodock",
"displayName": "AutoDock Vina",
"version": "1.0.0",
"tags": [
"molecule-docking",
"drug-discovery",
"virtual-screening"
],
"description": "Expert molecular docking agent using AutoDock Vina for protein-ligand binding affinity prediction, virtual screening, and structure-based drug design.\n"
}
},
{
"ref": "agents/bindingdb",
"role": "supporting",
"required": false,
"description": "Search BindingDB for measured protein-ligand binding affinities.",
"agentMeta": {
"name": "bindingdb",
"displayName": "BindingDB",
"version": "1.0.0",
"tags": [
"binding-affinity",
"drug-discovery",
"database"
],
"description": "BindingDB agent for retrieving comprehensive binding affinity data for protein-ligand interactions. Provides access to local SQLite database with sub-millisecond query performance.\n"
}
},
{
"ref": "agents/boltzgen",
"role": "supporting",
"required": false,
"description": "Generative biomolecular design with Boltz.",
"agentMeta": {
"name": "boltzgen",
"displayName": "BoltzGen",
"version": "1.0.0",
"tags": [
"protein-design",
"structure-prediction",
"trained-model",
"diffusion-model",
"generative-model"
],
"description": "Expert agent for protein binder design using the BoltzGen diffusion pipeline. Generates, folds, scores, and ranks binder designs using Boltz-2 for structure prediction and filtering.\n"
}
},
{
"ref": "agents/boltztwo",
"role": "supporting",
"required": false,
"description": "Boltz-2 structure and affinity predictions.",
"agentMeta": {
"name": "boltztwo",
"displayName": "Boltz-2",
"version": "1.0.0",
"tags": [
"structure-prediction",
"binding-affinity",
"protein-folding",
"drug-discovery",
"trained-model"
],
"description": "Expert agent for biomolecular structure prediction and binding affinity estimation using Boltz-2. Predicts 3D structures of proteins, nucleic acids, small molecules, and their complexes via co-folding. Features an affinity head that estimates binder probability and pIC50 for protein-ligand and protein-protein interactions. Outputs CIF structures with per-residue confidence (pLDDT), predicted aligned error (pAE), and interface metrics (pTM, iPTM).\n"
}
},
{
"ref": "agents/chembl",
"role": "supporting",
"required": false,
"description": "Query ChEMBL for bioactivity, targets, and assays.",
"agentMeta": {
"name": "chembl",
"displayName": "ChEMBL",
"version": "1.0.0",
"tags": [
"cheminformatics",
"bioactivity",
"database"
],
"description": "ChEMBL agent for retrieving chemical and bioactivity data from the ChEMBL database. Provides access to compound information, target data, bioactivity measurements, and cross-references with PDB structures.\n"
}
},
{
"ref": "agents/clinical-trials",
"role": "supporting",
"required": false,
"description": "Search ClinicalTrials.gov for study metadata and outcomes.",
"agentMeta": {
"name": "clinical-trials",
"displayName": "Clinical Trials",
"version": "1.0.0",
"tags": [
"clinical-trials",
"database"
],
"description": "Tool for accessing clinical trial data from ClinicalTrials.gov. Access over 400,000 clinical studies from around the world.\n"
}
},
{
"ref": "agents/core-python-agent",
"role": "supporting",
"required": false,
"description": "General-purpose Python execution for custom analyses.",
"agentMeta": {
"name": "core-python-agent",
"displayName": "core-python-agent",
"version": "1.0.0",
"tags": [
"cheminformatics",
"python",
"rdkit",
"molecular-science"
],
"description": "A reusable worker agent for RDKit cheminformatics and general Python execution. Writes and runs Python scripts for molecular manipulation, 2D/3D conformer generation, chemical property calculations, and scientific computing.\n"
}
},
{
"ref": "agents/esm-embed",
"role": "supporting",
"required": false,
"description": "Generate protein embeddings with ESM models.",
"agentMeta": {
"name": "esm-embed",
"displayName": "ESM-2 Protein Embeddings",
"version": "1.0.0",
"tags": [
"protein",
"embeddings",
"language-model",
"esm2",
"transformer",
"bioinformatics",
"representation-learning",
"structure-prediction",
"gpu",
"trained-model",
"embedding-model"
],
"description": "Generate per-residue and per-sequence embeddings from protein sequences using Meta AI's ESM-2 transformer protein language models (8M to 650M parameters). Supports mean-pooled sequence embeddings, per-residue embeddings, and contact map predictions. GPU-accelerated via PyTorch + CUDA, with automatic CPU fallback.\n"
}
},
{
"ref": "agents/gromacs",
"role": "supporting",
"required": false,
"description": "Run GROMACS molecular dynamics simulations.",
"agentMeta": {
"name": "gromacs",
"displayName": "GROMACS",
"version": "1.0.0",
"tags": [
"molecular-dynamics"
],
"description": "Python code environment with Gromacs tool for high-performance molecular dynamics (MD) simulations.\n"
}
},
{
"ref": "agents/mol-toolkit",
"role": "supporting",
"required": false,
"description": "Cheminformatics utilities for molecule manipulation and conversion.",
"agentMeta": {
"name": "mol-toolkit",
"displayName": "MolToolkit",
"version": "1.0.0",
"tags": [
"cheminformatics"
],
"description": "Agent dedicated to cheminformatics.\n"
}
},
{
"ref": "agents/molecular-groups",
"role": "supporting",
"required": false,
"description": "Identify and analyze functional groups in molecules.",
"agentMeta": {
"name": "molecular-groups",
"displayName": "Molecular Groups",
"version": "1.0.0",
"tags": [
"cheminformatics",
"functional-groups",
"safety-screening"
],
"description": "Expert agent for identifying functional groups in molecular structures. Provides both general functional group analysis and safety screening for hazardous groups.\n"
}
},
{
"ref": "agents/openmm",
"role": "supporting",
"required": false,
"description": "Run OpenMM molecular dynamics simulations.",
"agentMeta": {
"name": "openmm",
"displayName": "OpenMM",
"version": "1.0.0",
"tags": [
"molecular-dynamics",
"biomolecular-simulation",
"gpu"
],
"description": "Expert agent for GPU-accelerated molecular dynamics simulations using OpenMM. Handles PDB preparation, system building, energy minimization, equilibration, production MD, and trajectory analysis.\n"
}
},
{
"ref": "agents/pdb-insights",
"role": "supporting",
"required": false,
"description": "Extract structural insights from PDB entries.",
"agentMeta": {
"name": "pdb-insights",
"displayName": "PDB Insights",
"version": "1.0.0",
"tags": [
"protein-structure",
"structural-biology"
],
"description": "Advanced agent for comprehensive PDB structure analysis. Uses modern API to search RCSB PDB by UniProt ID, analyze quality metrics, biological assemblies, domain coverage, and binding partners.\n"
}
},
{
"ref": "agents/pdb-search",
"role": "supporting",
"required": false,
"description": "Search the Protein Data Bank for structures.",
"agentMeta": {
"name": "pdb-search",
"displayName": "PDB Search",
"version": "1.0.0",
"tags": [
"protein-structure",
"database"
],
"description": "Tool for managing and analyzing protein structure data from the RCSB PDB. Search, download, and process protein structures.\n"
}
},
{
"ref": "agents/pubchem",
"role": "supporting",
"required": false,
"description": "Query PubChem for compounds, properties, and bioassays.",
"agentMeta": {
"name": "pubchem",
"displayName": "PubChem",
"version": "1.0.0",
"tags": [
"cheminformatics",
"database"
],
"description": "Tool for accessing chemical information from the PubChem database using the PubChem API.\n"
}
},
{
"ref": "agents/pubmed",
"role": "supporting",
"required": false,
"description": "Search PubMed for biomedical literature.",
"agentMeta": {
"name": "pubmed",
"displayName": "PubMed",
"version": "1.0.0",
"tags": [
"literature-search",
"biomedical"
],
"description": "Tool for accessing biomedical literature from PubMed. Search and download articles, citations, and full-text content using PubMed/NCBI API. Includes PMC integration for open access articles.\n"
}
},
{
"ref": "agents/rfdiffusion",
"role": "supporting",
"required": false,
"description": "De novo protein design with RFdiffusion.",
"agentMeta": {
"name": "rfdiffusion",
"displayName": "RFDiffusion",
"version": "1.0.0",
"tags": [
"protein-design",
"trained-model",
"diffusion-model",
"generative-model"
],
"description": "Expert agent for protein backbone design using the RFDiffusion denoising diffusion model. Supports unconditional generation, binder design, motif scaffolding, and symmetric oligomers.\n"
}
},
{
"ref": "agents/toxpred",
"role": "supporting",
"required": false,
"description": "Predict toxicity endpoints for small molecules.",
"agentMeta": {
"name": "toxpred",
"displayName": "ToxPred",
"version": "1.0.0",
"tags": [
"toxicology",
"safety-assessment",
"cheminformatics",
"trained-model",
"d-mpnn",
"property-prediction"
],
"description": "Toxicity prediction agent for chemical compounds. Predicts multiple toxicity endpoints including acute toxicity, mutagenicity, carcinogenicity, and organ-specific effects from molecular structures.\n"
}
}
],
"samplePrompts": [
{
"id": "sp-1",
"title": "Predict a protein structure",
"prompt": "Predict the 3D structure of human lysozyme from its amino acid sequence and summarize the predicted domains and confidence.",
"difficulty": "beginner",
"expectedOutput": "Predicted PDB structure, per-residue confidence scores, and a summary of structural features."
},
{
"id": "sp-2",
"title": "Dock a ligand to a target",
"prompt": "Dock ibuprofen against COX-2 (PDB 5KIR) and report the top binding poses with predicted affinity.",
"difficulty": "intermediate",
"expectedOutput": "Ranked poses, docking scores, and key interacting residues."
},
{
"id": "sp-3",
"title": "Find bioactive analogs",
"prompt": "Search ChEMBL and PubChem for analogs of imatinib with measured activity against BCR-ABL and summarize potency.",
"difficulty": "intermediate",
"expectedOutput": "Table of analogs with structures, IC50/Ki values, and source assays."
},
{
"id": "sp-4",
"title": "Mine the literature",
"prompt": "Summarize recent PubMed publications on GLP-1 receptor agonists for cardiovascular outcomes and list ongoing clinical trials.",
"difficulty": "beginner",
"expectedOutput": "Literature summary with citations and a list of relevant clinical trials."
}
],
"riskProfile": {
"requiresExternalCompute": true,
"dataResidency": "user-managed Azure subscription"
},
"availability": "healthy",
"missingAgents": [],
"computedAt": "2026-06-01T21:28:53Z",
"kitPath": "starter-kits/life-sciences"
},
{
"$schema": "../../docs/schemas/starter-kit-schema.json",
"name": "physics-cfd-sim",
"version": "1.0.0",
"description": "Simulate and analyze computational fluid dynamics (CFD) scenarios using OpenFOAM.",
"displayName": "CFD Simulation",
"longDescription": "# CFD Simulation\n\nThis starter kit allows users to simulate and analyze computational fluid dynamics (CFD) scenarios using OpenFOAM.\n\n**What you can do:**\n- Simulate internal pipe flow and extract pressure drop metrics\n- Analyze axial fan performance using the MRF approach\n- Evaluate external flow over bodies in a box domain\n\n**Ideal for:** engineering analysis, fluid dynamics research, and performance optimization.",
"author": {
"name": "Microsoft",
"email": "discovery-catalog@microsoft.com",
"url": "https://github.com/microsoft/discovery"
},
"license": "MIT",
"keywords": [
"cfd",
"openfoam",
"fluid dynamics",
"simulation",
"engineering",
"physics"
],
"category": "Physics",
"homepage": "https://github.com/microsoft/discovery/tree/main/starter-kits/physics-cfd-sim",
"party": "1p",
"lifecycle": "active",
"agentRefs": [
{
"ref": "agents/openfoam",
"role": "primary",
"required": true,
"description": "Runs OpenFOAM simulations based on user-supplied parameters.",
"agentMeta": {
"name": "openfoam",
"displayName": "CFDopenFOAM",
"version": "1.0.0",
"tags": [
"computational-fluid-dynamics",
"openfoam",
"cfd",
"engineering",
"simulation"
],
"description": "Generalizable CFD agent powered by OpenFOAM. Infers simulation scenarios from natural language prompts, maps physical parameters, executes steady-state and transient solvers, and extracts quantitative metrics (drag, pressure drop, heat transfer, etc.) reported directly in chat. Supports internal flows, external aerodynamics, heat transfer, and rotating machinery via MRF.\n"
}
}
],
"samplePrompts": [
{
"id": "sp-1",