gitextract_rdf422j9/ ├── .claude-plugin/ │ └── marketplace.json ├── .gitattributes ├── .github/ │ └── workflows/ │ └── release.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── docs/ │ ├── examples.md │ ├── open-source-sponsors.md │ └── scientific-skills.md └── scientific-skills/ ├── adaptyv/ │ ├── SKILL.md │ └── reference/ │ ├── api_reference.md │ ├── examples.md │ ├── experiments.md │ └── protein_optimization.md ├── aeon/ │ ├── SKILL.md │ └── references/ │ ├── anomaly_detection.md │ ├── classification.md │ ├── clustering.md │ ├── datasets_benchmarking.md │ ├── distances.md │ ├── forecasting.md │ ├── networks.md │ ├── regression.md │ ├── segmentation.md │ ├── similarity_search.md │ └── transformations.md ├── alpha-vantage/ │ ├── SKILL.md │ └── references/ │ ├── commodities.md │ ├── economic-indicators.md │ ├── forex-crypto.md │ ├── fundamentals.md │ ├── intelligence.md │ ├── options.md │ ├── technical-indicators.md │ └── time-series.md ├── alphafold-database/ │ ├── SKILL.md │ └── references/ │ └── api_reference.md ├── anndata/ │ ├── SKILL.md │ └── references/ │ ├── best_practices.md │ ├── concatenation.md │ ├── data_structure.md │ ├── io_operations.md │ └── manipulation.md ├── arboreto/ │ ├── SKILL.md │ ├── references/ │ │ ├── algorithms.md │ │ ├── basic_inference.md │ │ └── distributed_computing.md │ └── scripts/ │ └── basic_grn_inference.py ├── arxiv-database/ │ ├── SKILL.md │ ├── references/ │ │ └── api_reference.md │ └── scripts/ │ └── arxiv_search.py ├── astropy/ │ ├── SKILL.md │ └── references/ │ ├── coordinates.md │ ├── cosmology.md │ ├── fits.md │ ├── tables.md │ ├── time.md │ ├── units.md │ └── wcs_and_other_modules.md ├── benchling-integration/ │ ├── SKILL.md │ └── references/ │ ├── api_endpoints.md │ ├── authentication.md │ └── sdk_reference.md ├── bgpt-paper-search/ │ └── SKILL.md ├── bindingdb-database/ │ ├── SKILL.md │ └── references/ │ └── affinity_queries.md ├── biopython/ │ ├── SKILL.md │ └── references/ │ ├── advanced.md │ ├── alignment.md │ ├── blast.md │ ├── databases.md │ ├── phylogenetics.md │ ├── sequence_io.md │ └── structure.md ├── biorxiv-database/ │ ├── SKILL.md │ ├── references/ │ │ └── api_reference.md │ └── scripts/ │ └── biorxiv_search.py ├── bioservices/ │ ├── SKILL.md │ ├── references/ │ │ ├── identifier_mapping.md │ │ ├── services_reference.md │ │ └── workflow_patterns.md │ └── scripts/ │ ├── batch_id_converter.py │ ├── compound_cross_reference.py │ ├── pathway_analysis.py │ └── protein_analysis_workflow.py ├── brenda-database/ │ ├── SKILL.md │ ├── references/ │ │ └── api_reference.md │ └── scripts/ │ ├── brenda_queries.py │ ├── brenda_visualization.py │ └── enzyme_pathway_builder.py ├── cbioportal-database/ │ ├── SKILL.md │ └── references/ │ └── study_exploration.md ├── cellxgene-census/ │ ├── SKILL.md │ └── references/ │ ├── census_schema.md │ └── common_patterns.md ├── chembl-database/ │ ├── SKILL.md │ ├── references/ │ │ └── api_reference.md │ └── scripts/ │ └── example_queries.py ├── cirq/ │ ├── SKILL.md │ └── references/ │ ├── building.md │ ├── experiments.md │ ├── hardware.md │ ├── noise.md │ ├── simulation.md │ └── transformation.md ├── citation-management/ │ ├── SKILL.md │ ├── assets/ │ │ ├── bibtex_template.bib │ │ └── citation_checklist.md │ ├── references/ │ │ ├── bibtex_formatting.md │ │ ├── citation_validation.md │ │ ├── google_scholar_search.md │ │ ├── metadata_extraction.md │ │ └── pubmed_search.md │ └── scripts/ │ ├── doi_to_bibtex.py │ ├── extract_metadata.py │ ├── format_bibtex.py │ ├── search_google_scholar.py │ ├── search_pubmed.py │ └── validate_citations.py ├── clinical-decision-support/ │ ├── SKILL.md │ ├── assets/ │ │ ├── biomarker_report_template.tex │ │ ├── clinical_pathway_template.tex │ │ ├── cohort_analysis_template.tex │ │ ├── color_schemes.tex │ │ ├── example_gbm_cohort.md │ │ ├── recommendation_strength_guide.md │ │ └── treatment_recommendation_template.tex │ ├── references/ │ │ ├── README.md │ │ ├── biomarker_classification.md │ │ ├── clinical_decision_algorithms.md │ │ ├── evidence_synthesis.md │ │ ├── outcome_analysis.md │ │ ├── patient_cohort_analysis.md │ │ └── treatment_recommendations.md │ └── scripts/ │ ├── biomarker_classifier.py │ ├── build_decision_tree.py │ ├── create_cohort_tables.py │ ├── generate_survival_analysis.py │ └── validate_cds_document.py ├── clinical-reports/ │ ├── SKILL.md │ ├── assets/ │ │ ├── case_report_template.md │ │ ├── clinical_trial_csr_template.md │ │ ├── clinical_trial_sae_template.md │ │ ├── consult_note_template.md │ │ ├── discharge_summary_template.md │ │ ├── hipaa_compliance_checklist.md │ │ ├── history_physical_template.md │ │ ├── lab_report_template.md │ │ ├── pathology_report_template.md │ │ ├── quality_checklist.md │ │ ├── radiology_report_template.md │ │ └── soap_note_template.md │ ├── references/ │ │ ├── README.md │ │ ├── case_report_guidelines.md │ │ ├── clinical_trial_reporting.md │ │ ├── data_presentation.md │ │ ├── diagnostic_reports_standards.md │ │ ├── medical_terminology.md │ │ ├── patient_documentation.md │ │ ├── peer_review_standards.md │ │ └── regulatory_compliance.md │ └── scripts/ │ ├── check_deidentification.py │ ├── compliance_checker.py │ ├── extract_clinical_data.py │ ├── format_adverse_events.py │ ├── generate_report_template.py │ ├── terminology_validator.py │ ├── validate_case_report.py │ └── validate_trial_report.py ├── clinicaltrials-database/ │ ├── SKILL.md │ ├── references/ │ │ └── api_reference.md │ └── scripts/ │ └── query_clinicaltrials.py ├── clinpgx-database/ │ ├── SKILL.md │ ├── references/ │ │ └── api_reference.md │ └── scripts/ │ └── query_clinpgx.py ├── clinvar-database/ │ ├── SKILL.md │ └── references/ │ ├── api_reference.md │ ├── clinical_significance.md │ └── data_formats.md ├── cobrapy/ │ ├── SKILL.md │ └── references/ │ ├── api_quick_reference.md │ └── workflows.md ├── consciousness-council/ │ ├── SKILL.md │ └── references/ │ └── advanced-configurations.md ├── cosmic-database/ │ ├── SKILL.md │ ├── references/ │ │ └── cosmic_data_reference.md │ └── scripts/ │ └── download_cosmic.py ├── dask/ │ ├── SKILL.md │ └── references/ │ ├── arrays.md │ ├── bags.md │ ├── best-practices.md │ ├── dataframes.md │ ├── futures.md │ └── schedulers.md ├── datacommons-client/ │ ├── SKILL.md │ └── references/ │ ├── getting_started.md │ ├── node.md │ ├── observation.md │ └── resolve.md ├── datamol/ │ ├── SKILL.md │ └── references/ │ ├── conformers_module.md │ ├── core_api.md │ ├── descriptors_viz.md │ ├── fragments_scaffolds.md │ ├── io_module.md │ └── reactions_data.md ├── deepchem/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_reference.md │ │ └── workflows.md │ └── scripts/ │ ├── graph_neural_network.py │ ├── predict_solubility.py │ └── transfer_learning.py ├── deeptools/ │ ├── SKILL.md │ ├── assets/ │ │ └── quick_reference.md │ ├── references/ │ │ ├── effective_genome_sizes.md │ │ ├── normalization_methods.md │ │ ├── tools_reference.md │ │ └── workflows.md │ └── scripts/ │ ├── validate_files.py │ └── workflow_generator.py ├── denario/ │ ├── SKILL.md │ └── references/ │ ├── examples.md │ ├── installation.md │ ├── llm_configuration.md │ └── research_pipeline.md ├── depmap/ │ ├── SKILL.md │ └── references/ │ └── dependency_analysis.md ├── dhdna-profiler/ │ ├── SKILL.md │ └── references/ │ └── advanced-profiling.md ├── diffdock/ │ ├── SKILL.md │ ├── assets/ │ │ ├── batch_template.csv │ │ └── custom_inference_config.yaml │ ├── references/ │ │ ├── confidence_and_limitations.md │ │ ├── parameters_reference.md │ │ └── workflows_examples.md │ └── scripts/ │ ├── analyze_results.py │ ├── prepare_batch_csv.py │ └── setup_check.py ├── dnanexus-integration/ │ ├── SKILL.md │ └── references/ │ ├── app-development.md │ ├── configuration.md │ ├── data-operations.md │ ├── job-execution.md │ └── python-sdk.md ├── docx/ │ ├── LICENSE.txt │ ├── SKILL.md │ └── scripts/ │ ├── __init__.py │ ├── accept_changes.py │ ├── comment.py │ ├── office/ │ │ ├── helpers/ │ │ │ ├── __init__.py │ │ │ ├── merge_runs.py │ │ │ └── simplify_redlines.py │ │ ├── pack.py │ │ ├── schemas/ │ │ │ ├── ISO-IEC29500-4_2016/ │ │ │ │ ├── dml-chart.xsd │ │ │ │ ├── dml-chartDrawing.xsd │ │ │ │ ├── dml-diagram.xsd │ │ │ │ ├── dml-lockedCanvas.xsd │ │ │ │ ├── dml-main.xsd │ │ │ │ ├── dml-picture.xsd │ │ │ │ ├── dml-spreadsheetDrawing.xsd │ │ │ │ ├── dml-wordprocessingDrawing.xsd │ │ │ │ ├── pml.xsd │ │ │ │ ├── shared-additionalCharacteristics.xsd │ │ │ │ ├── shared-bibliography.xsd │ │ │ │ ├── shared-commonSimpleTypes.xsd │ │ │ │ ├── shared-customXmlDataProperties.xsd │ │ │ │ ├── shared-customXmlSchemaProperties.xsd │ │ │ │ ├── shared-documentPropertiesCustom.xsd │ │ │ │ ├── shared-documentPropertiesExtended.xsd │ │ │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ │ │ ├── shared-math.xsd │ │ │ │ ├── shared-relationshipReference.xsd │ │ │ │ ├── sml.xsd │ │ │ │ ├── vml-main.xsd │ │ │ │ ├── vml-officeDrawing.xsd │ │ │ │ ├── vml-presentationDrawing.xsd │ │ │ │ ├── vml-spreadsheetDrawing.xsd │ │ │ │ ├── vml-wordprocessingDrawing.xsd │ │ │ │ ├── wml.xsd │ │ │ │ └── xml.xsd │ │ │ ├── ecma/ │ │ │ │ └── fouth-edition/ │ │ │ │ ├── opc-contentTypes.xsd │ │ │ │ ├── opc-coreProperties.xsd │ │ │ │ ├── opc-digSig.xsd │ │ │ │ └── opc-relationships.xsd │ │ │ ├── mce/ │ │ │ │ └── mc.xsd │ │ │ └── microsoft/ │ │ │ ├── wml-2010.xsd │ │ │ ├── wml-2012.xsd │ │ │ ├── wml-2018.xsd │ │ │ ├── wml-cex-2018.xsd │ │ │ ├── wml-cid-2016.xsd │ │ │ ├── wml-sdtdatahash-2020.xsd │ │ │ └── wml-symex-2015.xsd │ │ ├── soffice.py │ │ ├── unpack.py │ │ ├── validate.py │ │ └── validators/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── docx.py │ │ ├── pptx.py │ │ └── redlining.py │ └── templates/ │ ├── comments.xml │ ├── commentsExtended.xml │ ├── commentsExtensible.xml │ ├── commentsIds.xml │ └── people.xml ├── drugbank-database/ │ ├── SKILL.md │ ├── references/ │ │ ├── chemical-analysis.md │ │ ├── data-access.md │ │ ├── drug-queries.md │ │ ├── interactions.md │ │ └── targets-pathways.md │ └── scripts/ │ └── drugbank_helper.py ├── edgartools/ │ ├── SKILL.md │ └── references/ │ ├── ai-integration.md │ ├── companies.md │ ├── data-objects.md │ ├── entity-facts.md │ ├── filings.md │ ├── financial-data.md │ └── xbrl.md ├── ena-database/ │ ├── SKILL.md │ └── references/ │ └── api_reference.md ├── ensembl-database/ │ ├── SKILL.md │ ├── references/ │ │ └── api_endpoints.md │ └── scripts/ │ └── ensembl_query.py ├── esm/ │ ├── SKILL.md │ └── references/ │ ├── esm-c-api.md │ ├── esm3-api.md │ ├── forge-api.md │ └── workflows.md ├── etetoolkit/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_reference.md │ │ ├── visualization.md │ │ └── workflows.md │ └── scripts/ │ ├── quick_visualize.py │ └── tree_operations.py ├── exploratory-data-analysis/ │ ├── SKILL.md │ ├── assets/ │ │ └── report_template.md │ ├── references/ │ │ ├── bioinformatics_genomics_formats.md │ │ ├── chemistry_molecular_formats.md │ │ ├── general_scientific_formats.md │ │ ├── microscopy_imaging_formats.md │ │ ├── proteomics_metabolomics_formats.md │ │ └── spectroscopy_analytical_formats.md │ └── scripts/ │ └── eda_analyzer.py ├── fda-database/ │ ├── SKILL.md │ ├── references/ │ │ ├── animal_veterinary.md │ │ ├── api_basics.md │ │ ├── devices.md │ │ ├── drugs.md │ │ ├── foods.md │ │ └── other.md │ └── scripts/ │ ├── fda_examples.py │ └── fda_query.py ├── flowio/ │ ├── SKILL.md │ └── references/ │ └── api_reference.md ├── fluidsim/ │ ├── SKILL.md │ └── references/ │ ├── advanced_features.md │ ├── installation.md │ ├── output_analysis.md │ ├── parameters.md │ ├── simulation_workflow.md │ └── solvers.md ├── fred-economic-data/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_basics.md │ │ ├── categories.md │ │ ├── geofred.md │ │ ├── releases.md │ │ ├── series.md │ │ ├── sources.md │ │ └── tags.md │ └── scripts/ │ ├── fred_examples.py │ └── fred_query.py ├── gene-database/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_reference.md │ │ └── common_workflows.md │ └── scripts/ │ ├── batch_gene_lookup.py │ ├── fetch_gene_data.py │ └── query_gene.py ├── generate-image/ │ ├── SKILL.md │ └── scripts/ │ └── generate_image.py ├── geniml/ │ ├── SKILL.md │ └── references/ │ ├── bedspace.md │ ├── consensus_peaks.md │ ├── region2vec.md │ ├── scembed.md │ └── utilities.md ├── geo-database/ │ ├── SKILL.md │ └── references/ │ └── geo_reference.md ├── geomaster/ │ ├── README.md │ ├── SKILL.md │ └── references/ │ ├── advanced-gis.md │ ├── big-data.md │ ├── code-examples.md │ ├── coordinate-systems.md │ ├── core-libraries.md │ ├── data-sources.md │ ├── gis-software.md │ ├── industry-applications.md │ ├── machine-learning.md │ ├── programming-languages.md │ ├── remote-sensing.md │ ├── scientific-domains.md │ ├── specialized-topics.md │ └── troubleshooting.md ├── geopandas/ │ ├── SKILL.md │ └── references/ │ ├── crs-management.md │ ├── data-io.md │ ├── data-structures.md │ ├── geometric-operations.md │ ├── spatial-analysis.md │ └── visualization.md ├── get-available-resources/ │ ├── SKILL.md │ └── scripts/ │ └── detect_resources.py ├── gget/ │ ├── SKILL.md │ ├── references/ │ │ ├── database_info.md │ │ ├── module_reference.md │ │ └── workflows.md │ └── scripts/ │ ├── batch_sequence_analysis.py │ ├── enrichment_pipeline.py │ └── gene_analysis.py ├── ginkgo-cloud-lab/ │ ├── SKILL.md │ └── references/ │ ├── cell-free-protein-expression-optimization.md │ ├── cell-free-protein-expression-validation.md │ └── fluorescent-pixel-art-generation.md ├── glycoengineering/ │ ├── SKILL.md │ └── references/ │ └── glycan_databases.md ├── gnomad-database/ │ ├── SKILL.md │ └── references/ │ ├── graphql_queries.md │ └── variant_interpretation.md ├── gtars/ │ ├── SKILL.md │ └── references/ │ ├── cli.md │ ├── coverage.md │ ├── overlap.md │ ├── python-api.md │ ├── refget.md │ └── tokenizers.md ├── gtex-database/ │ ├── SKILL.md │ └── references/ │ └── api_reference.md ├── gwas-database/ │ ├── SKILL.md │ └── references/ │ └── api_reference.md ├── hedgefundmonitor/ │ ├── SKILL.md │ └── references/ │ ├── api-overview.md │ ├── datasets.md │ ├── endpoints-combined.md │ ├── endpoints-metadata.md │ ├── endpoints-series-data.md │ ├── examples.md │ └── parameters.md ├── histolab/ │ ├── SKILL.md │ └── references/ │ ├── filters_preprocessing.md │ ├── slide_management.md │ ├── tile_extraction.md │ ├── tissue_masks.md │ └── visualization.md ├── hmdb-database/ │ ├── SKILL.md │ └── references/ │ └── hmdb_data_fields.md ├── hypogenic/ │ ├── SKILL.md │ └── references/ │ └── config_template.yaml ├── hypothesis-generation/ │ ├── SKILL.md │ ├── assets/ │ │ ├── FORMATTING_GUIDE.md │ │ ├── hypothesis_generation.sty │ │ └── hypothesis_report_template.tex │ └── references/ │ ├── experimental_design_patterns.md │ ├── hypothesis_quality_criteria.md │ └── literature_search_strategies.md ├── imaging-data-commons/ │ ├── SKILL.md │ └── references/ │ ├── bigquery_guide.md │ ├── cli_guide.md │ ├── clinical_data_guide.md │ ├── cloud_storage_guide.md │ ├── dicomweb_guide.md │ ├── digital_pathology_guide.md │ ├── index_tables_guide.md │ ├── sql_patterns.md │ └── use_cases.md ├── infographics/ │ ├── SKILL.md │ ├── references/ │ │ ├── color_palettes.md │ │ ├── design_principles.md │ │ └── infographic_types.md │ └── scripts/ │ ├── generate_infographic.py │ └── generate_infographic_ai.py ├── interpro-database/ │ ├── SKILL.md │ └── references/ │ └── domain_analysis.md ├── iso-13485-certification/ │ ├── SKILL.md │ ├── assets/ │ │ └── templates/ │ │ ├── procedures/ │ │ │ ├── CAPA-procedure-template.md │ │ │ └── document-control-procedure-template.md │ │ └── quality-manual-template.md │ ├── references/ │ │ ├── gap-analysis-checklist.md │ │ ├── iso-13485-requirements.md │ │ ├── mandatory-documents.md │ │ └── quality-manual-guide.md │ └── scripts/ │ └── gap_analyzer.py ├── jaspar-database/ │ ├── SKILL.md │ └── references/ │ └── api_reference.md ├── kegg-database/ │ ├── SKILL.md │ ├── references/ │ │ └── kegg_reference.md │ └── scripts/ │ └── kegg_api.py ├── labarchive-integration/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_reference.md │ │ ├── authentication_guide.md │ │ └── integrations.md │ └── scripts/ │ ├── entry_operations.py │ ├── notebook_operations.py │ └── setup_config.py ├── lamindb/ │ ├── SKILL.md │ └── references/ │ ├── annotation-validation.md │ ├── core-concepts.md │ ├── data-management.md │ ├── integrations.md │ ├── ontologies.md │ └── setup-deployment.md ├── latchbio-integration/ │ ├── SKILL.md │ └── references/ │ ├── data-management.md │ ├── resource-configuration.md │ ├── verified-workflows.md │ └── workflow-creation.md ├── latex-posters/ │ ├── SKILL.md │ ├── assets/ │ │ ├── baposter_template.tex │ │ ├── beamerposter_template.tex │ │ ├── poster_quality_checklist.md │ │ └── tikzposter_template.tex │ ├── references/ │ │ ├── README.md │ │ ├── latex_poster_packages.md │ │ ├── poster_content_guide.md │ │ ├── poster_design_principles.md │ │ └── poster_layout_design.md │ └── scripts/ │ └── review_poster.sh ├── literature-review/ │ ├── SKILL.md │ ├── assets/ │ │ └── review_template.md │ ├── references/ │ │ ├── citation_styles.md │ │ └── database_strategies.md │ └── scripts/ │ ├── generate_pdf.py │ ├── search_databases.py │ └── verify_citations.py ├── markdown-mermaid-writing/ │ ├── SKILL.md │ ├── assets/ │ │ └── examples/ │ │ └── example-research-report.md │ ├── references/ │ │ ├── diagrams/ │ │ │ ├── architecture.md │ │ │ ├── block.md │ │ │ ├── c4.md │ │ │ ├── class.md │ │ │ ├── complex_examples.md │ │ │ ├── er.md │ │ │ ├── flowchart.md │ │ │ ├── gantt.md │ │ │ ├── git_graph.md │ │ │ ├── kanban.md │ │ │ ├── mindmap.md │ │ │ ├── packet.md │ │ │ ├── pie.md │ │ │ ├── quadrant.md │ │ │ ├── radar.md │ │ │ ├── requirement.md │ │ │ ├── sankey.md │ │ │ ├── sequence.md │ │ │ ├── state.md │ │ │ ├── timeline.md │ │ │ ├── treemap.md │ │ │ ├── user_journey.md │ │ │ ├── xy_chart.md │ │ │ └── zenuml.md │ │ ├── markdown_style_guide.md │ │ └── mermaid_style_guide.md │ └── templates/ │ ├── decision_record.md │ ├── how_to_guide.md │ ├── issue.md │ ├── kanban.md │ ├── presentation.md │ ├── project_documentation.md │ ├── pull_request.md │ ├── research_paper.md │ └── status_report.md ├── market-research-reports/ │ ├── SKILL.md │ ├── assets/ │ │ ├── FORMATTING_GUIDE.md │ │ ├── market_report_template.tex │ │ └── market_research.sty │ ├── references/ │ │ ├── data_analysis_patterns.md │ │ ├── report_structure_guide.md │ │ └── visual_generation_guide.md │ └── scripts/ │ └── generate_market_visuals.py ├── markitdown/ │ ├── SKILL.md │ ├── assets/ │ │ └── example_usage.md │ ├── references/ │ │ ├── api_reference.md │ │ └── file_formats.md │ └── scripts/ │ ├── batch_convert.py │ ├── convert_literature.py │ └── convert_with_ai.py ├── matchms/ │ ├── SKILL.md │ └── references/ │ ├── filtering.md │ ├── importing_exporting.md │ ├── similarity.md │ └── workflows.md ├── matlab/ │ ├── SKILL.md │ └── references/ │ ├── data-import-export.md │ ├── executing-scripts.md │ ├── graphics-visualization.md │ ├── mathematics.md │ ├── matrices-arrays.md │ ├── octave-compatibility.md │ ├── programming.md │ └── python-integration.md ├── matplotlib/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_reference.md │ │ ├── common_issues.md │ │ ├── plot_types.md │ │ └── styling_guide.md │ └── scripts/ │ ├── plot_template.py │ └── style_configurator.py ├── medchem/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_guide.md │ │ └── rules_catalog.md │ └── scripts/ │ └── filter_molecules.py ├── metabolomics-workbench-database/ │ ├── SKILL.md │ └── references/ │ └── api_reference.md ├── modal/ │ ├── SKILL.md │ └── references/ │ ├── api_reference.md │ ├── examples.md │ ├── functions.md │ ├── getting-started.md │ ├── gpu.md │ ├── images.md │ ├── resources.md │ ├── scaling.md │ ├── scheduled-jobs.md │ ├── secrets.md │ ├── volumes.md │ └── web-endpoints.md ├── molecular-dynamics/ │ ├── SKILL.md │ └── references/ │ └── mdanalysis_analysis.md ├── molfeat/ │ ├── SKILL.md │ └── references/ │ ├── api_reference.md │ ├── available_featurizers.md │ └── examples.md ├── monarch-database/ │ ├── SKILL.md │ └── references/ │ └── phenotype_ontology.md ├── networkx/ │ ├── SKILL.md │ └── references/ │ ├── algorithms.md │ ├── generators.md │ ├── graph-basics.md │ ├── io.md │ └── visualization.md ├── neurokit2/ │ ├── SKILL.md │ └── references/ │ ├── bio_module.md │ ├── complexity.md │ ├── ecg_cardiac.md │ ├── eda.md │ ├── eeg.md │ ├── emg.md │ ├── eog.md │ ├── epochs_events.md │ ├── hrv.md │ ├── ppg.md │ ├── rsp.md │ └── signal_processing.md ├── neuropixels-analysis/ │ ├── SKILL.md │ ├── assets/ │ │ └── analysis_template.py │ ├── references/ │ │ ├── AI_CURATION.md │ │ ├── ANALYSIS.md │ │ ├── AUTOMATED_CURATION.md │ │ ├── MOTION_CORRECTION.md │ │ ├── PREPROCESSING.md │ │ ├── QUALITY_METRICS.md │ │ ├── SPIKE_SORTING.md │ │ ├── api_reference.md │ │ ├── plotting_guide.md │ │ └── standard_workflow.md │ └── scripts/ │ ├── compute_metrics.py │ ├── explore_recording.py │ ├── export_to_phy.py │ ├── neuropixels_pipeline.py │ ├── preprocess_recording.py │ └── run_sorting.py ├── offer-k-dense-web/ │ └── SKILL.md ├── omero-integration/ │ ├── SKILL.md │ └── references/ │ ├── advanced.md │ ├── connection.md │ ├── data_access.md │ ├── image_processing.md │ ├── metadata.md │ ├── rois.md │ ├── scripts.md │ └── tables.md ├── open-notebook/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_reference.md │ │ ├── architecture.md │ │ ├── configuration.md │ │ └── examples.md │ └── scripts/ │ ├── chat_interaction.py │ ├── notebook_management.py │ ├── source_ingestion.py │ └── test_open_notebook_skill.py ├── openalex-database/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_guide.md │ │ └── common_queries.md │ └── scripts/ │ ├── openalex_client.py │ └── query_helpers.py ├── opentargets-database/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_reference.md │ │ ├── evidence_types.md │ │ └── target_annotations.md │ └── scripts/ │ └── query_opentargets.py ├── opentrons-integration/ │ ├── SKILL.md │ ├── references/ │ │ └── api_reference.md │ └── scripts/ │ ├── basic_protocol_template.py │ ├── pcr_setup_template.py │ └── serial_dilution_template.py ├── paper-2-web/ │ ├── SKILL.md │ └── references/ │ ├── installation.md │ ├── paper2poster.md │ ├── paper2video.md │ ├── paper2web.md │ └── usage_examples.md ├── parallel-web/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_reference.md │ │ ├── deep_research_guide.md │ │ ├── extraction_patterns.md │ │ ├── search_best_practices.md │ │ └── workflow_recipes.md │ └── scripts/ │ └── parallel_web.py ├── pathml/ │ ├── SKILL.md │ └── references/ │ ├── data_management.md │ ├── graphs.md │ ├── image_loading.md │ ├── machine_learning.md │ ├── multiparametric.md │ └── preprocessing.md ├── pdb-database/ │ ├── SKILL.md │ └── references/ │ └── api_reference.md ├── pdf/ │ ├── LICENSE.txt │ ├── SKILL.md │ ├── forms.md │ ├── reference.md │ └── scripts/ │ ├── check_bounding_boxes.py │ ├── check_fillable_fields.py │ ├── convert_pdf_to_images.py │ ├── create_validation_image.py │ ├── extract_form_field_info.py │ ├── extract_form_structure.py │ ├── fill_fillable_fields.py │ └── fill_pdf_form_with_annotations.py ├── peer-review/ │ ├── SKILL.md │ └── references/ │ ├── common_issues.md │ └── reporting_standards.md ├── pennylane/ │ ├── SKILL.md │ └── references/ │ ├── advanced_features.md │ ├── devices_backends.md │ ├── getting_started.md │ ├── optimization.md │ ├── quantum_chemistry.md │ ├── quantum_circuits.md │ └── quantum_ml.md ├── perplexity-search/ │ ├── SKILL.md │ ├── references/ │ │ ├── model_comparison.md │ │ ├── openrouter_setup.md │ │ └── search_strategies.md │ └── scripts/ │ ├── perplexity_search.py │ └── setup_env.py ├── phylogenetics/ │ ├── SKILL.md │ ├── references/ │ │ └── iqtree_inference.md │ └── scripts/ │ └── phylogenetic_analysis.py ├── plotly/ │ ├── SKILL.md │ └── references/ │ ├── chart-types.md │ ├── export-interactivity.md │ ├── graph-objects.md │ ├── layouts-styling.md │ └── plotly-express.md ├── polars/ │ ├── SKILL.md │ └── references/ │ ├── best_practices.md │ ├── core_concepts.md │ ├── io_guide.md │ ├── operations.md │ ├── pandas_migration.md │ └── transformations.md ├── polars-bio/ │ ├── SKILL.md │ └── references/ │ ├── bioframe_migration.md │ ├── configuration.md │ ├── file_io.md │ ├── interval_operations.md │ ├── pileup_operations.md │ └── sql_processing.md ├── pptx/ │ ├── LICENSE.txt │ ├── SKILL.md │ ├── editing.md │ ├── pptxgenjs.md │ └── scripts/ │ ├── __init__.py │ ├── add_slide.py │ ├── clean.py │ ├── office/ │ │ ├── helpers/ │ │ │ ├── __init__.py │ │ │ ├── merge_runs.py │ │ │ └── simplify_redlines.py │ │ ├── pack.py │ │ ├── schemas/ │ │ │ ├── ISO-IEC29500-4_2016/ │ │ │ │ ├── dml-chart.xsd │ │ │ │ ├── dml-chartDrawing.xsd │ │ │ │ ├── dml-diagram.xsd │ │ │ │ ├── dml-lockedCanvas.xsd │ │ │ │ ├── dml-main.xsd │ │ │ │ ├── dml-picture.xsd │ │ │ │ ├── dml-spreadsheetDrawing.xsd │ │ │ │ ├── dml-wordprocessingDrawing.xsd │ │ │ │ ├── pml.xsd │ │ │ │ ├── shared-additionalCharacteristics.xsd │ │ │ │ ├── shared-bibliography.xsd │ │ │ │ ├── shared-commonSimpleTypes.xsd │ │ │ │ ├── shared-customXmlDataProperties.xsd │ │ │ │ ├── shared-customXmlSchemaProperties.xsd │ │ │ │ ├── shared-documentPropertiesCustom.xsd │ │ │ │ ├── shared-documentPropertiesExtended.xsd │ │ │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ │ │ ├── shared-math.xsd │ │ │ │ ├── shared-relationshipReference.xsd │ │ │ │ ├── sml.xsd │ │ │ │ ├── vml-main.xsd │ │ │ │ ├── vml-officeDrawing.xsd │ │ │ │ ├── vml-presentationDrawing.xsd │ │ │ │ ├── vml-spreadsheetDrawing.xsd │ │ │ │ ├── vml-wordprocessingDrawing.xsd │ │ │ │ ├── wml.xsd │ │ │ │ └── xml.xsd │ │ │ ├── ecma/ │ │ │ │ └── fouth-edition/ │ │ │ │ ├── opc-contentTypes.xsd │ │ │ │ ├── opc-coreProperties.xsd │ │ │ │ ├── opc-digSig.xsd │ │ │ │ └── opc-relationships.xsd │ │ │ ├── mce/ │ │ │ │ └── mc.xsd │ │ │ └── microsoft/ │ │ │ ├── wml-2010.xsd │ │ │ ├── wml-2012.xsd │ │ │ ├── wml-2018.xsd │ │ │ ├── wml-cex-2018.xsd │ │ │ ├── wml-cid-2016.xsd │ │ │ ├── wml-sdtdatahash-2020.xsd │ │ │ └── wml-symex-2015.xsd │ │ ├── soffice.py │ │ ├── unpack.py │ │ ├── validate.py │ │ └── validators/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── docx.py │ │ ├── pptx.py │ │ └── redlining.py │ └── thumbnail.py ├── pptx-posters/ │ ├── SKILL.md │ ├── assets/ │ │ ├── poster_html_template.html │ │ └── poster_quality_checklist.md │ └── references/ │ ├── poster_content_guide.md │ ├── poster_design_principles.md │ └── poster_layout_design.md ├── primekg/ │ ├── SKILL.md │ └── scripts/ │ └── query_primekg.py ├── protocolsio-integration/ │ ├── SKILL.md │ └── references/ │ ├── additional_features.md │ ├── authentication.md │ ├── discussions.md │ ├── file_manager.md │ ├── protocols_api.md │ └── workspaces.md ├── pubchem-database/ │ ├── SKILL.md │ ├── references/ │ │ └── api_reference.md │ └── scripts/ │ ├── bioactivity_query.py │ └── compound_search.py ├── pubmed-database/ │ ├── SKILL.md │ └── references/ │ ├── api_reference.md │ ├── common_queries.md │ └── search_syntax.md ├── pufferlib/ │ ├── SKILL.md │ ├── references/ │ │ ├── environments.md │ │ ├── integration.md │ │ ├── policies.md │ │ ├── training.md │ │ └── vectorization.md │ └── scripts/ │ ├── env_template.py │ └── train_template.py ├── pydeseq2/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_reference.md │ │ └── workflow_guide.md │ └── scripts/ │ └── run_deseq2_analysis.py ├── pydicom/ │ ├── SKILL.md │ ├── references/ │ │ ├── common_tags.md │ │ └── transfer_syntaxes.md │ └── scripts/ │ ├── anonymize_dicom.py │ ├── dicom_to_image.py │ └── extract_metadata.py ├── pyhealth/ │ ├── SKILL.md │ └── references/ │ ├── datasets.md │ ├── medical_coding.md │ ├── models.md │ ├── preprocessing.md │ ├── tasks.md │ └── training_evaluation.md ├── pylabrobot/ │ ├── SKILL.md │ └── references/ │ ├── analytical-equipment.md │ ├── hardware-backends.md │ ├── liquid-handling.md │ ├── material-handling.md │ ├── resources.md │ └── visualization.md ├── pymatgen/ │ ├── SKILL.md │ ├── references/ │ │ ├── analysis_modules.md │ │ ├── core_classes.md │ │ ├── io_formats.md │ │ ├── materials_project_api.md │ │ └── transformations_workflows.md │ └── scripts/ │ ├── phase_diagram_generator.py │ ├── structure_analyzer.py │ └── structure_converter.py ├── pymc/ │ ├── SKILL.md │ ├── assets/ │ │ ├── hierarchical_model_template.py │ │ └── linear_regression_template.py │ ├── references/ │ │ ├── distributions.md │ │ ├── sampling_inference.md │ │ └── workflows.md │ └── scripts/ │ ├── model_comparison.py │ └── model_diagnostics.py ├── pymoo/ │ ├── SKILL.md │ ├── references/ │ │ ├── algorithms.md │ │ ├── constraints_mcdm.md │ │ ├── operators.md │ │ ├── problems.md │ │ └── visualization.md │ └── scripts/ │ ├── custom_problem_example.py │ ├── decision_making_example.py │ ├── many_objective_example.py │ ├── multi_objective_example.py │ └── single_objective_example.py ├── pyopenms/ │ ├── SKILL.md │ └── references/ │ ├── data_structures.md │ ├── feature_detection.md │ ├── file_io.md │ ├── identification.md │ ├── metabolomics.md │ └── signal_processing.md ├── pysam/ │ ├── SKILL.md │ └── references/ │ ├── alignment_files.md │ ├── common_workflows.md │ ├── sequence_files.md │ └── variant_files.md ├── pytdc/ │ ├── SKILL.md │ ├── references/ │ │ ├── datasets.md │ │ ├── oracles.md │ │ └── utilities.md │ └── scripts/ │ ├── benchmark_evaluation.py │ ├── load_and_split_data.py │ └── molecular_generation.py ├── pytorch-lightning/ │ ├── SKILL.md │ ├── references/ │ │ ├── best_practices.md │ │ ├── callbacks.md │ │ ├── data_module.md │ │ ├── distributed_training.md │ │ ├── lightning_module.md │ │ ├── logging.md │ │ └── trainer.md │ └── scripts/ │ ├── quick_trainer_setup.py │ ├── template_datamodule.py │ └── template_lightning_module.py ├── pyzotero/ │ ├── SKILL.md │ └── references/ │ ├── authentication.md │ ├── cli.md │ ├── collections.md │ ├── error-handling.md │ ├── exports.md │ ├── files-attachments.md │ ├── full-text.md │ ├── pagination.md │ ├── read-api.md │ ├── saved-searches.md │ ├── search-params.md │ ├── tags.md │ └── write-api.md ├── qiskit/ │ ├── SKILL.md │ └── references/ │ ├── algorithms.md │ ├── backends.md │ ├── circuits.md │ ├── patterns.md │ ├── primitives.md │ ├── setup.md │ ├── transpilation.md │ └── visualization.md ├── qutip/ │ ├── SKILL.md │ └── references/ │ ├── advanced.md │ ├── analysis.md │ ├── core_concepts.md │ ├── time_evolution.md │ └── visualization.md ├── rdkit/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_reference.md │ │ ├── descriptors_reference.md │ │ └── smarts_patterns.md │ └── scripts/ │ ├── molecular_properties.py │ ├── similarity_search.py │ └── substructure_filter.py ├── reactome-database/ │ ├── SKILL.md │ ├── references/ │ │ └── api_reference.md │ └── scripts/ │ └── reactome_query.py ├── research-grants/ │ ├── SKILL.md │ ├── assets/ │ │ ├── budget_justification_template.md │ │ ├── nih_specific_aims_template.md │ │ └── nsf_project_summary_template.md │ └── references/ │ ├── README.md │ ├── broader_impacts.md │ ├── darpa_guidelines.md │ ├── doe_guidelines.md │ ├── nih_guidelines.md │ ├── nsf_guidelines.md │ ├── nstc_guidelines.md │ └── specific_aims_guide.md ├── research-lookup/ │ ├── README.md │ ├── SKILL.md │ ├── examples.py │ ├── lookup.py │ ├── research_lookup.py │ └── scripts/ │ └── research_lookup.py ├── rowan/ │ ├── SKILL.md │ └── references/ │ ├── api_reference.md │ ├── molecule_handling.md │ ├── proteins_and_organization.md │ ├── rdkit_native.md │ ├── results_interpretation.md │ └── workflow_types.md ├── scanpy/ │ ├── SKILL.md │ ├── assets/ │ │ └── analysis_template.py │ ├── references/ │ │ ├── api_reference.md │ │ ├── plotting_guide.md │ │ └── standard_workflow.md │ └── scripts/ │ └── qc_analysis.py ├── scholar-evaluation/ │ ├── SKILL.md │ ├── references/ │ │ └── evaluation_framework.md │ └── scripts/ │ └── calculate_scores.py ├── scientific-brainstorming/ │ ├── SKILL.md │ └── references/ │ └── brainstorming_methods.md ├── scientific-critical-thinking/ │ ├── SKILL.md │ └── references/ │ ├── common_biases.md │ ├── evidence_hierarchy.md │ ├── experimental_design.md │ ├── logical_fallacies.md │ ├── scientific_method.md │ └── statistical_pitfalls.md ├── scientific-schematics/ │ ├── SKILL.md │ ├── references/ │ │ ├── QUICK_REFERENCE.md │ │ ├── README.md │ │ └── best_practices.md │ └── scripts/ │ ├── example_usage.sh │ ├── generate_schematic.py │ └── generate_schematic_ai.py ├── scientific-slides/ │ ├── SKILL.md │ ├── assets/ │ │ ├── beamer_template_conference.tex │ │ ├── beamer_template_defense.tex │ │ ├── beamer_template_seminar.tex │ │ ├── powerpoint_design_guide.md │ │ └── timing_guidelines.md │ ├── references/ │ │ ├── beamer_guide.md │ │ ├── data_visualization_slides.md │ │ ├── presentation_structure.md │ │ ├── slide_design_principles.md │ │ ├── talk_types_guide.md │ │ └── visual_review_workflow.md │ └── scripts/ │ ├── generate_slide_image.py │ ├── generate_slide_image_ai.py │ ├── pdf_to_images.py │ ├── slides_to_pdf.py │ └── validate_presentation.py ├── scientific-visualization/ │ ├── SKILL.md │ ├── assets/ │ │ ├── color_palettes.py │ │ ├── nature.mplstyle │ │ ├── presentation.mplstyle │ │ └── publication.mplstyle │ ├── references/ │ │ ├── color_palettes.md │ │ ├── journal_requirements.md │ │ ├── matplotlib_examples.md │ │ └── publication_guidelines.md │ └── scripts/ │ ├── figure_export.py │ └── style_presets.py ├── scientific-writing/ │ ├── SKILL.md │ ├── assets/ │ │ ├── REPORT_FORMATTING_GUIDE.md │ │ ├── scientific_report.sty │ │ └── scientific_report_template.tex │ └── references/ │ ├── citation_styles.md │ ├── figures_tables.md │ ├── imrad_structure.md │ ├── professional_report_formatting.md │ ├── reporting_guidelines.md │ └── writing_principles.md ├── scikit-bio/ │ ├── SKILL.md │ └── references/ │ └── api_reference.md ├── scikit-learn/ │ ├── SKILL.md │ ├── references/ │ │ ├── model_evaluation.md │ │ ├── pipelines_and_composition.md │ │ ├── preprocessing.md │ │ ├── quick_reference.md │ │ ├── supervised_learning.md │ │ └── unsupervised_learning.md │ └── scripts/ │ ├── classification_pipeline.py │ └── clustering_analysis.py ├── scikit-survival/ │ ├── SKILL.md │ └── references/ │ ├── competing-risks.md │ ├── cox-models.md │ ├── data-handling.md │ ├── ensemble-models.md │ ├── evaluation-metrics.md │ └── svm-models.md ├── scvelo/ │ ├── SKILL.md │ ├── references/ │ │ └── velocity_models.md │ └── scripts/ │ └── rna_velocity_workflow.py ├── scvi-tools/ │ ├── SKILL.md │ └── references/ │ ├── differential-expression.md │ ├── models-atac-seq.md │ ├── models-multimodal.md │ ├── models-scrna-seq.md │ ├── models-spatial.md │ ├── models-specialized.md │ ├── theoretical-foundations.md │ └── workflows.md ├── seaborn/ │ ├── SKILL.md │ └── references/ │ ├── examples.md │ ├── function_reference.md │ └── objects_interface.md ├── shap/ │ ├── SKILL.md │ └── references/ │ ├── explainers.md │ ├── plots.md │ ├── theory.md │ └── workflows.md ├── simpy/ │ ├── SKILL.md │ ├── references/ │ │ ├── events.md │ │ ├── monitoring.md │ │ ├── process-interaction.md │ │ ├── real-time.md │ │ └── resources.md │ └── scripts/ │ ├── basic_simulation_template.py │ └── resource_monitor.py ├── stable-baselines3/ │ ├── SKILL.md │ ├── references/ │ │ ├── algorithms.md │ │ ├── callbacks.md │ │ ├── custom_environments.md │ │ └── vectorized_envs.md │ └── scripts/ │ ├── custom_env_template.py │ ├── evaluate_agent.py │ └── train_rl_agent.py ├── statistical-analysis/ │ ├── SKILL.md │ ├── references/ │ │ ├── assumptions_and_diagnostics.md │ │ ├── bayesian_statistics.md │ │ ├── effect_sizes_and_power.md │ │ ├── reporting_standards.md │ │ └── test_selection_guide.md │ └── scripts/ │ └── assumption_checks.py ├── statsmodels/ │ ├── SKILL.md │ └── references/ │ ├── discrete_choice.md │ ├── glm.md │ ├── linear_models.md │ ├── stats_diagnostics.md │ └── time_series.md ├── string-database/ │ ├── SKILL.md │ ├── references/ │ │ └── string_reference.md │ └── scripts/ │ └── string_api.py ├── sympy/ │ ├── SKILL.md │ └── references/ │ ├── advanced-topics.md │ ├── code-generation-printing.md │ ├── core-capabilities.md │ ├── matrices-linear-algebra.md │ └── physics-mechanics.md ├── tiledbvcf/ │ └── SKILL.md ├── timesfm-forecasting/ │ ├── SKILL.md │ ├── examples/ │ │ ├── anomaly-detection/ │ │ │ ├── detect_anomalies.py │ │ │ └── output/ │ │ │ └── anomaly_detection.json │ │ ├── covariates-forecasting/ │ │ │ ├── demo_covariates.py │ │ │ └── output/ │ │ │ ├── covariates_metadata.json │ │ │ └── sales_with_covariates.csv │ │ └── global-temperature/ │ │ ├── README.md │ │ ├── generate_animation_data.py │ │ ├── generate_gif.py │ │ ├── generate_html.py │ │ ├── output/ │ │ │ ├── animation_data.json │ │ │ ├── forecast_output.csv │ │ │ ├── forecast_output.json │ │ │ └── interactive_forecast.html │ │ ├── run_example.sh │ │ ├── run_forecast.py │ │ ├── temperature_anomaly.csv │ │ └── visualize_forecast.py │ ├── references/ │ │ ├── api_reference.md │ │ ├── data_preparation.md │ │ └── system_requirements.md │ └── scripts/ │ ├── check_system.py │ └── forecast_csv.py ├── torch-geometric/ │ ├── SKILL.md │ ├── references/ │ │ ├── datasets_reference.md │ │ ├── layers_reference.md │ │ └── transforms_reference.md │ └── scripts/ │ ├── benchmark_model.py │ ├── create_gnn_template.py │ └── visualize_graph.py ├── torchdrug/ │ ├── SKILL.md │ └── references/ │ ├── core_concepts.md │ ├── datasets.md │ ├── knowledge_graphs.md │ ├── models_architectures.md │ ├── molecular_generation.md │ ├── molecular_property_prediction.md │ ├── protein_modeling.md │ └── retrosynthesis.md ├── transformers/ │ ├── SKILL.md │ └── references/ │ ├── generation.md │ ├── models.md │ ├── pipelines.md │ ├── tokenizers.md │ └── training.md ├── treatment-plans/ │ ├── SKILL.md │ ├── assets/ │ │ ├── STYLING_QUICK_REFERENCE.md │ │ ├── chronic_disease_management_plan.tex │ │ ├── general_medical_treatment_plan.tex │ │ ├── medical_treatment_plan.sty │ │ ├── mental_health_treatment_plan.tex │ │ ├── one_page_treatment_plan.tex │ │ ├── pain_management_plan.tex │ │ ├── perioperative_care_plan.tex │ │ ├── quality_checklist.md │ │ └── rehabilitation_treatment_plan.tex │ ├── references/ │ │ ├── README.md │ │ ├── goal_setting_frameworks.md │ │ ├── intervention_guidelines.md │ │ ├── regulatory_compliance.md │ │ ├── specialty_specific_guidelines.md │ │ └── treatment_plan_standards.md │ └── scripts/ │ ├── check_completeness.py │ ├── generate_template.py │ ├── timeline_generator.py │ └── validate_treatment_plan.py ├── umap-learn/ │ ├── SKILL.md │ └── references/ │ └── api_reference.md ├── uniprot-database/ │ ├── SKILL.md │ ├── references/ │ │ ├── api_examples.md │ │ ├── api_fields.md │ │ ├── id_mapping_databases.md │ │ └── query_syntax.md │ └── scripts/ │ └── uniprot_client.py ├── usfiscaldata/ │ ├── SKILL.md │ └── references/ │ ├── api-basics.md │ ├── datasets-debt.md │ ├── datasets-fiscal.md │ ├── datasets-interest-rates.md │ ├── datasets-securities.md │ ├── examples.md │ ├── parameters.md │ └── response-format.md ├── uspto-database/ │ ├── SKILL.md │ ├── references/ │ │ ├── additional_apis.md │ │ ├── patentsearch_api.md │ │ ├── peds_api.md │ │ └── trademark_api.md │ └── scripts/ │ ├── patent_search.py │ ├── peds_client.py │ └── trademark_client.py ├── vaex/ │ ├── SKILL.md │ └── references/ │ ├── core_dataframes.md │ ├── data_processing.md │ ├── io_operations.md │ ├── machine_learning.md │ ├── performance.md │ └── visualization.md ├── venue-templates/ │ ├── SKILL.md │ ├── assets/ │ │ ├── examples/ │ │ │ ├── cell_summary_example.md │ │ │ ├── medical_structured_abstract.md │ │ │ ├── nature_abstract_examples.md │ │ │ └── neurips_introduction_example.md │ │ ├── grants/ │ │ │ ├── nih_specific_aims.tex │ │ │ └── nsf_proposal_template.tex │ │ ├── journals/ │ │ │ ├── nature_article.tex │ │ │ ├── neurips_article.tex │ │ │ └── plos_one.tex │ │ └── posters/ │ │ └── beamerposter_academic.tex │ ├── references/ │ │ ├── cell_press_style.md │ │ ├── conferences_formatting.md │ │ ├── cs_conference_style.md │ │ ├── grants_requirements.md │ │ ├── journals_formatting.md │ │ ├── medical_journal_styles.md │ │ ├── ml_conference_style.md │ │ ├── nature_science_style.md │ │ ├── posters_guidelines.md │ │ ├── reviewer_expectations.md │ │ └── venue_writing_styles.md │ └── scripts/ │ ├── customize_template.py │ ├── query_template.py │ └── validate_format.py ├── what-if-oracle/ │ ├── SKILL.md │ └── references/ │ └── scenario-templates.md ├── xlsx/ │ ├── LICENSE.txt │ ├── SKILL.md │ └── scripts/ │ ├── office/ │ │ ├── helpers/ │ │ │ ├── __init__.py │ │ │ ├── merge_runs.py │ │ │ └── simplify_redlines.py │ │ ├── pack.py │ │ ├── schemas/ │ │ │ ├── ISO-IEC29500-4_2016/ │ │ │ │ ├── dml-chart.xsd │ │ │ │ ├── dml-chartDrawing.xsd │ │ │ │ ├── dml-diagram.xsd │ │ │ │ ├── dml-lockedCanvas.xsd │ │ │ │ ├── dml-main.xsd │ │ │ │ ├── dml-picture.xsd │ │ │ │ ├── dml-spreadsheetDrawing.xsd │ │ │ │ ├── dml-wordprocessingDrawing.xsd │ │ │ │ ├── pml.xsd │ │ │ │ ├── shared-additionalCharacteristics.xsd │ │ │ │ ├── shared-bibliography.xsd │ │ │ │ ├── shared-commonSimpleTypes.xsd │ │ │ │ ├── shared-customXmlDataProperties.xsd │ │ │ │ ├── shared-customXmlSchemaProperties.xsd │ │ │ │ ├── shared-documentPropertiesCustom.xsd │ │ │ │ ├── shared-documentPropertiesExtended.xsd │ │ │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ │ │ ├── shared-math.xsd │ │ │ │ ├── shared-relationshipReference.xsd │ │ │ │ ├── sml.xsd │ │ │ │ ├── vml-main.xsd │ │ │ │ ├── vml-officeDrawing.xsd │ │ │ │ ├── vml-presentationDrawing.xsd │ │ │ │ ├── vml-spreadsheetDrawing.xsd │ │ │ │ ├── vml-wordprocessingDrawing.xsd │ │ │ │ ├── wml.xsd │ │ │ │ └── xml.xsd │ │ │ ├── ecma/ │ │ │ │ └── fouth-edition/ │ │ │ │ ├── opc-contentTypes.xsd │ │ │ │ ├── opc-coreProperties.xsd │ │ │ │ ├── opc-digSig.xsd │ │ │ │ └── opc-relationships.xsd │ │ │ ├── mce/ │ │ │ │ └── mc.xsd │ │ │ └── microsoft/ │ │ │ ├── wml-2010.xsd │ │ │ ├── wml-2012.xsd │ │ │ ├── wml-2018.xsd │ │ │ ├── wml-cex-2018.xsd │ │ │ ├── wml-cid-2016.xsd │ │ │ ├── wml-sdtdatahash-2020.xsd │ │ │ └── wml-symex-2015.xsd │ │ ├── soffice.py │ │ ├── unpack.py │ │ ├── validate.py │ │ └── validators/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── docx.py │ │ ├── pptx.py │ │ └── redlining.py │ └── recalc.py ├── zarr-python/ │ ├── SKILL.md │ └── references/ │ └── api_reference.md └── zinc-database/ ├── SKILL.md └── references/ └── api_reference.md