Back
LUNARTECH Superpowers: The Complete Claude AI Skills Library
March 8, 2026

What Is the LUNARTECH Superpowers Skills Library?

The LUNARTECH Superpowers Skills Library is the official catalog of specialized capabilities built for Claude and other AI agents. It is not a prompt library. It is not a list of instructions pasted into a chat window. It is a production-grade collection of 246+ modular Skill packages — each one a self-contained directory containing a SKILL.md, executable scripts, reference documentation, and assets — that teach Claude exactly how to accomplish a specific category of work to professional standards.

The architecture behind every Skill is the same: a YAML frontmatter block that determines when the Skill triggers, a body of procedural knowledge Claude reads when the task is relevant, and optional bundled resources loaded on demand. The result is an AI that arrives at your task already knowing your standards — not one you have to re-brief from scratch every session.

Below is a complete breakdown of every skill category in the library as of March 2026, including what each one does and why it exists.

Core Agent Skills

The foundation of the Superpowers library. These 20 skills govern how Claude thinks, plans, executes, verifies, and improves across all other tasks. They are not domain-specific — they are the operating system on top of which every other Skill runs.

using-superpowers is the entry point. It establishes how Claude finds and uses skills, and requires Skill invocation before any response including clarifying questions. It is the skill that makes all other skills discoverable.

subagent-driven-development and dispatching-parallel-agents handle concurrent execution — the former coordinates independent tasks within a single session, the latter dispatches multiple browser or code agents simultaneously so work that could take hours serially completes in minutes in parallel.

writing-plans and executing-plans separate the thinking from the doing. When a spec or set of requirements arrives, Claude writes a structured plan before touching code. When the plan is approved, a separate Skill governs disciplined execution step by step.

verification-before-completion is one of the most consequential skills in the library. It prevents Claude from declaring success without evidence. Before committing or creating a PR, Claude must run verification commands and confirm actual output — not infer it from the fact that no errors appeared.

systematic-debugging defines the diagnostic approach for any bug, test failure, or unexpected behavior. It requires hypothesis formation and evidence-gathering before proposing fixes — ruling out the single most common failure mode in AI-assisted development: guessing at a fix without understanding the cause.

test-driven-development enforces TDD discipline: tests are written before implementation code, not after. This Skill is triggered any time a feature or bugfix is being implemented.

writing-skills and antigravity-skill-creator cover meta-capabilities: creating new Superpowers skills from scratch, editing existing ones, and verifying they work before deployment.

Additional core skills include brainstorming for structured ideation, brand-identity for identity design and guidelines, receiving-code-review and requesting-code-review for structured review workflows, documenting-work for clear post-task documentation, finishing-a-development-branch for clean merge preparation, project-bootstrapper for initializing new projects with proper structure, using-git-worktrees for isolated feature work, video-to-frames-workflow for scroll-animations and sprite extraction, and ai-website-deployment for shipping AI-powered web applications.

Design Skills

Seventeen skills covering the full spectrum of visual interface design — from component-level UI patterns to full design system implementation to production-ready animation.

phoenix-design-system encodes the Phoenix component library with its guidelines and usage patterns. whisk-product-visuals handles the Whisk design language specifically, ensuring visual consistency across product surfaces. dark-mode-design implements dark mode design systems correctly — not just inverting colors, but rebuilding the entire palette hierarchy for low-light environments.

Component-level skills include badge-pill-components, stats-metrics-display, section-headers, bento-grid-layouts, feature-grid-sections, team-about-sections, and interactive-icon-demos — each encoding the correct implementation patterns for its specific UI element type.

Animation skills cover two distinct paradigms: scroll-based-3d-animations for parallax and scroll-triggered 3D effects, and micro-interactions for the subtle hover states, transitions, and feedback animations that define polished user experiences. glassmorphism-design implements the frosted-glass aesthetic with correct backdrop filters, opacity, and border treatments.

timeline-process-flows handles the design of step-based and chronological visualizations. figma-ai-website-design brings AI-assisted design directly into Figma workflows. ai-website-deployment and video-to-frames-workflow round out the design skill set with production deployment and frame-extraction capabilities.

Developer Essentials

Eleven skills that encode expert-level knowledge for the workflows every software team encounters regardless of their stack or domain.

git-advanced-workflows covers the operations that separate senior engineers from junior ones: rebasing, cherry-picking, interactive history editing, and complex branching strategies that keep repositories navigable as teams scale.

e2e-testing-patterns brings end-to-end testing discipline with framework-agnostic patterns that apply across Playwright, Cypress, and similar tools. auth-implementation-patterns encodes correct authentication and authorization across common approaches — OAuth, JWT, session-based, API key — with the security considerations that apply to each.

Build tooling is covered by three dedicated skills: bazel-build-optimization for Bazel caching and configuration, turborepo-caching for Turborepo’s remote cache setup and invalidation logic, and nx-workspace-patterns for Nx configuration and task graph management. monorepo-management takes a higher-level view — structuring, tooling, and governance for monorepos as they grow.

code-review-excellence defines what a thorough, constructive code review actually looks like — what to look for, how to phrase feedback, what to approve versus block. debugging-strategies and error-handling-patterns cover systematic diagnosis and robust error architecture respectively. sql-optimization-patterns closes the section with query optimization, index design, and database performance tuning.

Python Development

Five skills targeting the Python-specific workflows that trip up even experienced developers.

python-packaging covers the full distribution pipeline — building wheels, configuring pyproject.toml, publishing to PyPI and private registries, and managing package metadata correctly. python-testing-patterns encodes pytest best practices: fixture design, parametrize patterns, mocking strategies, and coverage configuration that produces meaningful rather than inflated numbers.

python-performance-optimization covers profiling with cProfile and line_profiler, memory analysis with tracemalloc, and the optimization patterns that actually move the needle — versus the premature optimizations that add complexity without measurable gain. async-python-patterns handles the asyncio ecosystem: event loop management, task coordination, cancellation, and the concurrency patterns that scale cleanly.

uv-package-manager encodes the uv workflow — the Rust-based package manager that resolves dependencies and creates virtual environments at speeds that make pip feel slow. For teams that have not yet switched, this Skill accelerates the transition.

Backend Development

Eight skills covering advanced backend architecture patterns — the kind typically found in distributed systems and event-driven platforms.

cqrs-implementation encodes Command Query Responsibility Segregation correctly — separate read and write models, command handlers, query handlers, and the infrastructure plumbing that connects them without coupling the models together. event-store-design handles the persistence layer underneath: append-only event logs, snapshot strategies, and the projection patterns that rebuild state from events.

projection-patterns goes deeper on the read side — how projections are built, how they handle replays, and how they stay consistent as event schemas evolve. saga-orchestration addresses distributed transactions using the Saga pattern: compensating transactions, orchestrator design, and the failure modes that make distributed consistency hard.

temporal-python-testing covers testing specifically for Temporal workflows and activities in Python — a non-trivial problem given Temporal’s execution model. workflow-orchestration-patterns takes a broader view across orchestration systems. microservices-patterns encodes service decomposition, inter-service communication, and the operational patterns (circuit breakers, bulkheads, retries) that keep microservice architectures stable. architecture-patterns covers DDD, hexagonal architecture, and clean architecture at the design level.

Data Engineering

Four skills for the tooling stack that moves, transforms, and validates data at scale.

airflow-dag-patterns encodes correct Apache Airflow DAG design — operator selection, XCom usage, dynamic DAG generation, and the common antipatterns (top-level code with side effects, large task granularity) that cause Airflow installations to become unmaintainable. dbt-transformation-patterns covers dbt model design, testing strategies, incremental materialization, and documentation-as-code.

spark-optimization addresses the performance layer of Apache Spark: partition sizing, shuffle minimization, broadcast joins, and the memory configuration that prevents OOM failures on large jobs. data-quality-frameworks encodes systematic data validation — expectation suites, anomaly detection, and monitoring pipelines that catch data quality issues before they propagate downstream.

Database Design

The postgresql Skill is a comprehensive guide to PostgreSQL beyond basic SQL: schema design with proper normalization, indexing strategies (B-tree, GIN, BRIN, partial indexes), query planning and EXPLAIN ANALYZE interpretation, partitioning, replication configuration, and the advanced features (CTEs, window functions, JSONB, full-text search) that differentiate PostgreSQL from a generic relational database.

Document Skills

Four production-grade skills for the most universal file formats in professional environments.

docx creates and manipulates Microsoft Word documents programmatically using the correct XML-level approach — not text with fake formatting, but fully spec-compliant .docx files that open correctly in Word, Google Docs, and LibreOffice. It handles heading hierarchies, native numbering, tables, embedded images, tracked changes, headers and footers, footnotes, and hyperlinks.

pdf covers the full PDF operation set: text and table extraction with pdfplumber, OCR on scanned documents with pytesseract, merging, splitting, rotating, watermarking, form filling with field coordinate identification, encryption, and creation with reportlab. Edge cases — non-fillable forms, large file merges, image-heavy documents — are handled explicitly.

xlsx handles Excel programmatically with openpyxl for formula-preserving output and pandas for bulk data operations. It enforces the core principle that calculated values are always formulas, never hardcoded numbers. Financial model color conventions, number formatting standards, and automated formula error scanning via LibreOffice recalculation are all built in.

pptx manages the full PowerPoint lifecycle — reading with markitdown and visual thumbnail inspection, editing via XML manipulation of the unpacked archive, and creating new presentations with pptxgenjs. The Skill ships detailed design guidance to prevent the visual antipatterns that make AI-generated slides identifiable as AI-generated: accent lines under titles, text-only slides, default color palettes, uneven element spacing.

Document Editorial

Four skills for research, connectivity, and content creation workflows.

lead-research-assistant provides structured deep research methodology for complex topics — source evaluation, synthesis, and structured output that goes beyond surface-level summaries. connect-apps handles third-party application connectivity and integration workflows. image-enhancer applies AI-powered upscaling and enhancement to images. domain-name-brainstormer provides structured methodology for evaluating domain names — availability, brandability, SEO considerations, and competitive landscape.

Scientific Skills

The largest skill category in the library, spanning scientific computing libraries, bioinformatics platforms, research databases, and academic writing workflows. This section covers 80+ specialized skills.

Libraries and Frameworks

The visualization stack includes matplotlib for publication-quality static plots with correct axis formatting and figure sizing for journal submission, plotly for interactive dashboards and Dash applications, and seaborn for statistical graphics with correct application of its categorical and distribution plot types.

For data manipulation at scale: polars for high-performance DataFrame operations using lazy evaluation and the query optimizer, and vaex for out-of-core analysis of datasets with billions of rows that exceed available RAM — using memory-mapped files rather than loading everything into memory.

The mathematical and statistical layer includes sympy for symbolic algebra, calculus, and matrix operations; statsmodels for OLS, GLM, mixed-effects models, and ARIMA with full diagnostic output; and scikit-learn for the complete machine learning workflow — preprocessing, model selection, cross-validation, pipelines, and evaluation.

Deep learning is covered by pytorch-lightning for structured training loops with correct callback design, transformers for the Hugging Face ecosystem across NLP, vision, audio, and multimodal tasks, and torch_geometric (PyG) for Graph Neural Networks applied to node classification, link prediction, and molecular property prediction. torchdrug specializes in drug discovery and protein modeling with PyTorch-native GNNs.

Reinforcement learning is handled by stable-baselines3 for standard RL algorithms and pufferlib for scalable multi-environment training. Model interpretability is served by shap for SHAP value computation and visualization. Dimensionality reduction uses umap-learn for 2D/3D embedding of high-dimensional data prior to visualization or clustering.

Graph and network analysis uses networkx for construction, analysis, and visualization of complex networks. Simulation is handled by simpy for discrete event simulation. Cloud-scale array storage uses zarr-python for chunked N-dimensional arrays with S3 and GCS integration and parallel I/O.

Quantum computing is covered by three skills: pennylane for quantum machine learning and variational circuits, qiskit for IBM-native quantum circuit design and algorithm implementation, and qutip for open quantum systems simulation and density matrix evolution.

Probabilistic programming uses pymc for Bayesian model specification and MCMC inference. Multi-objective optimization uses pymoo. Materials science uses pymatgen for crystal structure analysis and property computation. Computational chemistry uses rowan. Numerical computing uses matlab. GPU-scale ML jobs are deployed with modal.

Bioinformatics and Life Sciences

Single-cell genomics is covered by scanpy for the standard scRNA-seq analysis pipeline (QC, normalization, clustering, trajectory inference), scvi-tools for deep probabilistic models (scVI, scANVI, totalVI) applied to multi-modal single-cell data, and cellxgene-census for querying the CZ CELLxGENE Census — the largest standardized single-cell dataset collection available. pydeseq2 handles differential expression analysis with the DESeq2 statistical framework implemented in Python.

Genomic data processing uses pysam for reading and manipulating SAM/BAM alignment files directly. Mass spectrometry data is handled by pyopenms for the OpenMS framework. Metabolomics datasets are accessed via metabolomics-workbench-database.

Computational pathology and medical imaging are covered by pathml for whole-slide image analysis and pydicom for reading, writing, and processing DICOM files. Clinical data processing and healthcare ML use pyhealth.

Physiological signal processing is handled by neurokit2 for ECG, EEG, and EDA data. Electrophysiology recordings from Neuropixels probes are analyzed with the neuropixels-analysis Skill. Microscopy image management integrates with OMERO via omero-integration.

Drug discovery chemistry uses rdkit for cheminformatics and molecular analysis, molfeat for molecular featurization for ML pipelines, and medchem for medicinal chemistry workflows and drug-likeness evaluation (Lipinski, ADMET properties). Benchmark datasets for therapeutics ML come from pytdc via the Therapeutics Data Commons.

Laboratory automation is handled by two skills: pylabrobot for hardware-agnostic liquid handling robot programming and opentrons-integration specifically for Opentrons OT-2 and Flex robots. Cloud bioinformatics workflows run on latchbio-integration via the Latch Bio platform.

Scientific Databases and APIs

Fifteen database skills provide direct, correctly-formatted access to the most important scientific data sources.

pubmed-database queries NCBI PubMed via the Entrez API for biomedical literature search and retrieval. openalex-database accesses the OpenAlex scholarly graph — works, authors, institutions, concepts, and citation networks — via its REST API. research-lookup and perplexity-search provide AI-powered research summarization and web-grounded scientific search.

Structural biology data comes from pdb-database for 3D macromolecular structures from the RCSB Protein Data Bank. Protein sequence and annotation data comes from uniprot-database via the UniProt REST API. Protein-protein interactions come from string-database, which covers 59 million proteins and 20 billion interactions.

Pathway biology uses reactome-database for curated biological pathway data and enrichment analysis. Target-disease associations for drug discovery come from opentargets-database. Chemical compound data is accessed via pubchem-database for PubChem and chembl-database for ChEMBL bioactivity data. Virtual screening compound libraries use zinc-database, which covers 230 million purchasable compounds. Drug and drug target data comes from drugbank-database. Patent and IP searches use uspto-database via USPTO APIs. Scientific protocol sharing uses protocolsio-integration for accessing and publishing on protocols.io.

Scientific Workflows and Writing

Eighteen skills cover the research output pipeline from hypothesis to publication.

scientific-writing encodes the standards of clear, rigorous scientific manuscript writing — hypothesis framing, results reporting, statistical language, and the structural conventions of different journal formats. scientific-visualization produces publication-quality figures with correct axis labels, font sizes, color palettes appropriate for colorblind readers, and resolution specifications for journal submission.

scientific-schematics designs clear mechanistic diagrams and experimental schematics. scientific-slides creates professional conference and seminar presentations. scientific-brainstorming provides structured hypothesis generation and ideation frameworks. scientific-critical-thinking applies formal critical analysis to scientific problems, claims, and study designs.

statistical-analysis guides the full statistical workflow: choosing the correct test, checking assumptions, computing power, running the analysis, and reporting results in APA format. peer-review produces thorough, structured peer reviews covering methodology, results interpretation, and presentation.

scholar-evaluation assesses scholarly work and academic profiles. research-grants structures and writes grant proposals for major funding bodies. venue-templates provides ready-to-use LaTeX templates formatted to the exact specifications of Nature, Science, IEEE, ACM, NeurIPS, ICML, CVPR, CHI, and more.

pptx-posters creates scientific conference posters in PowerPoint format with correct academic poster layout conventions. paper-2-web converts scientific papers into interactive web pages. treatment-plans generates structured medical treatment plans in LaTeX/PDF across clinical specialties. proposal-cluster-learning writes cluster learning research proposals. textual-metadata-dataset-construction implements the IEEE ICME 2016 methodology for building large-scale image datasets from web sources using textual metadata. offer-k-dense-web implements dense web retrieval for scientific dataset construction.

Composio Automation Skills

The final and largest section of the Superpowers library: 832 integration skills for automating third-party applications via the Composio/Rube MCP platform. Every skill follows the same execution model — read SKILL.md for the tool name, then search for current tool schemas before automating tasks — ensuring that automations stay current as APIs evolve.

The CRM and sales category covers Salesforce, HubSpot, Pipedrive, Zoho CRM, and Copper. Communication platforms include Slack, Gmail, Twilio, SendGrid, and Mailchimp. Project management covers Asana, Trello, Jira, Linear, Basecamp, and Notion. Finance and payments use Stripe, Braintree, QuickBooks, Brex, and Xero.

Developer tooling covers GitHub, GitLab, Bitbucket, Buildkite, and Browserbase. Analytics integrations include Google Analytics, Amplitude, Mixpanel, and Segment. File storage and cloud drives use Google Drive, Dropbox, Box, and BunnyCDN. HR and recruiting platforms include Breezy HR, BambooHR, and Gusto.

E-commerce automations cover Booqable, BoxHero, and Bubble. Browser automation and scraping use Browserless, Browser Tool, and BrowseAI. Marketing automation covers Mailchimp, Campaign Cleaner, Brandfetch, and Brightdata.

The 832 integrations span virtually every SaaS category: help desks, CMS platforms, video conferencing, document signing, event management, customer support, logistics, IoT, data warehouses, BI tools, ad platforms, social media networks, email infrastructure, monitoring systems, and more. For any third-party tool a team uses, there is almost certainly a Composio skill for automating it.

The Scope of What This Means

246 core skills plus 832 Composio integrations represents something qualitatively different from a prompt template library. Each skill is the encoded output of expertise — the kind of knowledge that took practitioners years to accumulate about what actually works, what the edge cases are, and what separates professional output from amateur output.

When Claude arrives at a task with the right Skill loaded, it does not need to be told how to format a scientific figure for Nature, how to avoid accordion scrollbars in a Temporal workflow test, or how to write a compensating transaction in a Saga. That knowledge is already there. It travels from session to session, from user to user, from task to task.

The library continues to expand as new skills are developed and validated. What is listed here reflects the state of the Superpowers repository as of March 8, 2026.

Complete Skills Reference

Core Agent Skills

SkillDescription
using-superpowersUse when starting any conversation — establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions
subagent-driven-developmentUse when executing implementation plans with independent tasks in the current session
dispatching-parallel-agentsDispatch multiple parallel browser/code agents to accomplish tasks concurrently
writing-plansUse when you have a spec or requirements for a multi-step task, before touching code
executing-plansUse when executing a written plan with multiple steps
verification-before-completionUse when about to claim work is complete, fixed, or passing, before committing or creating PRs — requires running verification commands and confirming output before making any success claims
systematic-debuggingUse when encountering any bug, test failure, or unexpected behavior, before proposing fixes
test-driven-developmentUse when implementing any feature or bugfix, before writing implementation code
writing-skillsUse when creating new skills, editing existing skills, or verifying skills work before deployment
antigravity-skill-creatorUse when creating new Antigravity skills from scratch
brainstormingStructured brainstorming methodology for ideation and problem-solving sessions
brand-identityBrand identity design and guidelines creation
receiving-code-reviewBest practices for receiving and responding to code review feedback
requesting-code-reviewBest practices for requesting code reviews
documenting-workDocument completed work in a structured and clear format
finishing-a-development-branchUse when completing work on a development branch and preparing to merge
project-bootstrapperBootstrap new software projects with proper structure and tooling
using-git-worktreesUse when starting feature work that needs isolation from current workspace or before executing implementation plans — creates isolated git worktrees with smart directory selection and safety verification
video-to-frames-workflowExtract and process video frames for scroll-animations, sprites, and AI training
ai-website-deploymentDeploy AI-powered websites and web applications

Design Skills

SkillDescription
phoenix-design-systemPhoenix design system components and guidelines
badge-pill-componentsDesign and implement badge and pill UI components
stats-metrics-displayDesign stats and metrics display components
whisk-product-visualsProduct visual design for the Whisk design language
team-about-sectionsDesign team and about page sections
dark-mode-designImplement dark mode design systems and components
scroll-based-3d-animationsCreate scroll-triggered 3D animation effects
glassmorphism-designImplement glassmorphism design aesthetics
micro-interactionsDesign and implement micro-interaction animations for enhanced UX
section-headersDesign consistent section header components
timeline-process-flowsDesign timeline and process flow visualizations
bento-grid-layoutsDesign bento-style grid layout components
feature-grid-sectionsDesign feature grid section components
interactive-icon-demosCreate interactive icon demo components
figma-ai-website-designAI-assisted website design workflows in Figma
ai-website-deploymentDeploy AI-designed websites to production
video-to-frames-workflowExtract and process video frames for design assets

Developer Essentials

SkillDescription
git-advanced-workflowsAdvanced Git workflows including rebasing, cherry-picking, and complex branching strategies
e2e-testing-patternsEnd-to-end testing patterns and best practices
bazel-build-optimizationOptimize Bazel build configurations and caching
monorepo-managementManage monorepo structures, tooling, and workflows
nx-workspace-patternsNx workspace configuration and best practices
turborepo-cachingConfigure and optimize Turborepo caching
auth-implementation-patternsAuthentication and authorization implementation patterns
code-review-excellencePerform thorough, constructive code reviews
debugging-strategiesSystematic debugging strategies and techniques
error-handling-patternsImplement robust error handling across languages and frameworks
sql-optimization-patternsOptimize SQL queries and database performance

Python Development

SkillDescription
python-packagingPackage Python projects for distribution (PyPI, private registries)
python-testing-patternsPython testing patterns with pytest, fixtures, mocking, and coverage
python-performance-optimizationProfile and optimize Python code for speed and memory efficiency
async-python-patternsAsync/await patterns and concurrency in Python
uv-package-managerUse uv for fast Python package management and virtual environments

Backend Development

SkillDescription
cqrs-implementationImplement Command Query Responsibility Segregation (CQRS) patterns
temporal-python-testingTest Temporal workflows and activities in Python
projection-patternsImplement event sourcing projection patterns
saga-orchestrationDesign and implement Saga orchestration for distributed transactions
workflow-orchestration-patternsWorkflow orchestration design patterns
microservices-patternsMicroservices architecture patterns and best practices
event-store-designDesign and implement event stores for event sourcing
architecture-patternsSoftware architecture patterns (DDD, hexagonal, clean architecture)

Data Engineering

SkillDescription
data-quality-frameworksImplement data quality checks, validation, and monitoring frameworks
airflow-dag-patternsDesign and implement Apache Airflow DAGs
dbt-transformation-patternsdbt data transformation patterns and best practices
spark-optimizationOptimize Apache Spark jobs for performance and efficiency

Database Design

SkillDescription
postgresqlPostgreSQL schema design, indexing, performance tuning, and advanced features

Document Skills

SkillDescription
pdfCreate, manipulate, and extract content from PDF files
docxCreate and manipulate Microsoft Word documents programmatically
xlsxCreate and manipulate Excel spreadsheets programmatically
pptxCreate and manipulate PowerPoint presentations programmatically

Document Editorial

SkillDescription
lead-research-assistantIn-depth research assistance for complex topics
connect-appsConnect and integrate third-party applications
image-enhancerEnhance and upscale images using AI tools
domain-name-brainstormerBrainstorm and evaluate domain names for products and services

Scientific Skills — Libraries & Frameworks

SkillDescription
matplotlibCreate publication-quality plots and visualizations with Matplotlib
plotlyInteractive visualizations with Plotly and Dash
seabornStatistical data visualization with Seaborn
polarsHigh-performance DataFrame operations with Polars
vaexProcess and analyze large tabular datasets (billions of rows) that exceed available RAM
sympySymbolic mathematics in Python — algebraic solving, calculus, matrix operations
statsmodelsStatistical models (OLS, GLM, mixed models, ARIMA) with detailed diagnostics
scikit-learnMachine learning with scikit-learn: classification, regression, clustering, pipelines
scikit-bioBioinformatics analysis with scikit-bio
scikit-survivalSurvival analysis with scikit-survival
shapModel interpretability and explainability with SHAP values
umap-learnUMAP dimensionality reduction for 2D/3D visualization and clustering preprocessing
networkxGraph/network analysis and visualization with NetworkX
simpyDiscrete event simulation with SimPy
zarr-pythonChunked N-D arrays for cloud storage with parallel I/O, S3/GCS integration
transformersPre-trained transformer models for NLP, vision, audio, and multimodal tasks
pytorch-lightningStructured deep learning with PyTorch Lightning
torch_geometricGraph Neural Networks (PyG) for node/graph classification, link prediction, molecular property prediction
torchdrugPyTorch-native GNNs for molecules and proteins — drug discovery, protein modeling, retrosynthesis
stable-baselines3Reinforcement learning with Stable Baselines3
pufferlibScalable reinforcement learning with PufferLib
pennylaneQuantum machine learning and quantum computing with PennyLane
qiskitQuantum computing circuits and algorithms with Qiskit
qutipQuantum mechanics simulation with QuTiP
pymcProbabilistic programming and Bayesian modeling with PyMC
pymooMulti-objective optimization with pymoo
pymatgenMaterials science analysis with pymatgen
matlabMATLAB programming for numerical computing and simulation
modalRun GPU workloads and ML jobs at scale with Modal
rowanComputational chemistry with Rowan

Scientific Skills — Bioinformatics & Life Sciences

SkillDescription
scanpySingle-cell RNA-seq analysis with Scanpy
scvi-toolsDeep probabilistic models for single-cell genomics
cellxgene-censusQuery CZ CELLxGENE Census single-cell datasets
pydeseq2Differential expression analysis with PyDESeq2
pysamRead and manipulate SAM/BAM genomic alignment files
pathmlComputational pathology and whole-slide image analysis
pydicomRead, write, and process DICOM medical imaging files
pyhealthClinical data processing and healthcare ML with PyHealth
neurokit2Physiological signal processing (ECG, EEG, EDA) with NeuroKit2
neuropixels-analysisAnalyze Neuropixels electrophysiology recordings
omero-integrationIntegrate with OMERO image management platform
molfeatMolecular featurization for machine learning
rdkitCheminformatics and molecular analysis with RDKit
pyopenmsMass spectrometry data analysis with PyOpenMS
medchemMedicinal chemistry workflows and drug-likeness evaluation
pytdcTherapeutics Data Commons benchmark datasets
pylabrobotLaboratory robotics automation with PyLabRobot
opentrons-integrationAutomate liquid handling with Opentrons robots
latchbio-integrationRun bioinformatics workflows on Latch Bio
metabolomics-workbench-databaseAccess Metabolomics Workbench database for metabolomics data

Scientific Skills — Databases & APIs

SkillDescription
pubmed-databaseSearch and retrieve biomedical literature from PubMed
openalex-databaseQuery OpenAlex for scholarly works, authors, and institutions
pdb-databaseAccess Protein Data Bank for 3D macromolecular structures
uniprot-databaseDirect REST API access to UniProt for protein sequences and annotations
string-databaseQuery STRING API for protein-protein interactions (59M proteins, 20B interactions)
reactome-databasePathway analysis using the Reactome database
opentargets-databaseTarget-disease association queries via Open Targets
pubchem-databaseChemical compound data from PubChem
zinc-databaseAccess ZINC (230M+ purchasable compounds) for virtual screening and drug discovery
chembl-databaseBioactivity data for drug discovery from ChEMBL
drugbank-databaseDrug and drug target database access
uspto-databaseAccess USPTO APIs for patent/trademark searches and IP analysis
protocolsio-integrationAccess and publish scientific protocols on protocols.io
perplexity-searchAI-powered research search using Perplexity
research-lookupLook up and summarize published research papers

Scientific Skills — Workflows & Writing

SkillDescription
scientific-writingWrite clear, rigorous scientific manuscripts and reports
scientific-visualizationCreate publication-quality scientific figures and visualizations
scientific-schematicsDesign clear scientific schematics and diagrams
scientific-slidesCreate professional scientific presentation slides
scientific-brainstormingStructured scientific ideation and hypothesis generation
scientific-critical-thinkingApply critical thinking frameworks to scientific problems
statistical-analysisGuided statistical analysis with test selection, assumption checking, power analysis, and APA reporting
peer-reviewWrite thorough peer reviews for scientific manuscripts
scholar-evaluationEvaluate scholarly work and academic profiles
research-grantsWrite and structure research grant proposals
venue-templatesLaTeX templates and formatting for Nature, Science, IEEE, ACM, NeurIPS, ICML, CVPR, CHI, and more
pptx-postersCreate scientific conference posters in PowerPoint format
paper-2-webConvert scientific papers to interactive web pages
treatment-plansGenerate concise medical treatment plans in LaTeX/PDF for all clinical specialties
proposal-cluster-learningWrite cluster learning research proposals
textual-metadata-dataset-constructionConstruct large-scale image datasets from web sources using textual metadata (IEEE ICME 2016 methodology)
offer-k-dense-webDense web retrieval methodology for scientific datasets

Composio Automation Skills

Located in skills/document-editorial/composio-skills/, there are 832 integration skills for automating third-party apps via the Composio/Rube MCP platform. Each skill automates a specific SaaS tool — always search for current schemas before executing.

CategorySkills
CRM & Salessalesforce, hubspot, pipedrive, zoho-crm, copper
Communicationslack, gmail, twilio, sendgrid, mailchimp
Project Managementasana, trello, jira, linear, basecamp, notion
Financestripe, braintree, quickbooks, brex, xero
Developer Toolsgithub, gitlab, bitbucket, buildkite, browserbase-tool
Analyticsgoogle-analytics, amplitude, mixpanel, segment
Storagegoogle-drive, dropbox, box, bunnycdn
Marketingmailchimp, campaign-cleaner, brandfetch, brightdata
HR & Recruitingbreezy-hr, bamboo-hr, gusto
E-commercebooqable, boxhero, bubble
Browsers & Scrapingbrowserless, browser-tool, browseai