Comprehensive pathway and systems biology analysis integrating multiple curated databases to provide multi-dimensional view of biological systems, pathway enrichment, and protein-pathway relationships.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiontooluniverse-systems-biologyExecute the skills CLI command in your project's root directory to begin installation:
Fetches tooluniverse-systems-biology from mims-harvard/tooluniverse and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate tooluniverse-systems-biology. Access via /tooluniverse-systems-biology in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
1.2K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
1.2K
stars
Comprehensive pathway and systems biology analysis integrating multiple curated databases to provide multi-dimensional view of biological systems, pathway enrichment, and protein-pathway relationships.
Triggers:
Use Cases:
When analysis requires computation (statistics, data processing, scoring, enrichment), write and run Python code via Bash. Don't describe what you would do — execute it and report actual results. Use ToolUniverse tools to retrieve data, then Python (pandas, scipy, statsmodels, matplotlib) to analyze it.
Pathway analysis answers: which biological processes are enriched in my gene list? But enrichment is not causation. A pathway being enriched means your gene list overlaps it more than expected by chance. Ask: is the enrichment driven by a few hub genes, or by many genes distributed across the pathway? A pathway with 3 input genes but 200 annotated members is less informative than one where 15 of 40 members are in your list.
LOOK UP DON'T GUESS: pathway membership, gene-to-pathway assignments, and enrichment statistics. Do not assume a gene is in a pathway — use Reactome, KEGG, or Enrichr to verify. Pathway databases disagree on membership; cross-validate key findings across at least two sources.
| Database | Strengths |
|---|---|
| Reactome | Detailed mechanistic pathways with reactions; human-curated |
| KEGG | Metabolic maps, disease pathways, drug targets |
| WikiPathways | Emerging and community-curated pathways |
| Pathway Commons | Meta-database aggregating multiple sources |
| BioModels | Mathematical/computational SBML models |
| Enrichr | Statistical over-representation analysis |
Input → Phase 1: Enrichment → Phase 2: Protein Mapping → Phase 3: Keyword Search → Phase 4: Top Pathways → Report
When: Gene list provided (from experiments, screens, differentially expressed genes)
Objective: Identify biological pathways statistically over-represented in gene list
| Tool | Input | Use |
|---|---|---|
ReactomeAnalysis_pathway_enrichment |
identifiers (newline-separated symbols), page_size |
FDR-corrected Reactome enrichment (recommended) |
enrichr_gene_enrichment_analysis |
gene_list (array), libs (array) |
Over-representation with KEGG/Reactome/WikiPathways |
STRING_functional_enrichment |
protein_ids (array), species, category |
Functional enrichment from PPI networks |
intact_get_interactions |
identifier (UniProt accession) |
Binary protein interactions with evidence |
When: Protein UniProt ID provided
Objective: Map protein to all known pathways it participates in
Reactome_map_uniprot_to_pathways:
uniprot_id: UniProt accession (e.g., "P53350")Reactome_get_pathway_reactions:
stId: Reactome pathway stable ID (e.g., "R-HSA-73817")When: User provides keyword or biological process name
Objective: Search multiple pathway databases to find relevant pathways
| Tool | Key Params | Coverage |
|---|---|---|
kegg_search_pathway |
keyword |
Reference, metabolic, disease pathways |
kegg_get_pathway_info |
pathway_id (e.g., "hsa04930") |
Detailed genes/compounds for a pathway |
WikiPathways_search |
query, organism |
Community-curated, emerging pathways |
PathwayCommons_search |
action="search_pathways", keyword |
Meta-database aggregating multiple sources |
biomodels_search |
query, limit |
SBML computational models |
Search all databases in parallel. Group results by pathway concept. BioModels often returns empty — this is normal.
When: Always included to provide context
Objective: Show major biological systems/pathways for organism
Reactome_list_top_pathways:
species (e.g., "Homo sapiens")Create a markdown report progressively: header → Phase 1 enrichment results → Phase 2 protein mapping → Phase 3 keyword search → Phase 4 top pathway catalog. Note empty results explicitly; never silently omit them. Include pathway IDs for follow-up.
Critical Parameter Notes (from testing):
| Tool | Correct Parameter | Common Mistake |
|---|---|---|
Reactome_map_uniprot_to_pathways |
uniprot_id |
id |
PathwayCommons_search |
action + keyword (both required) |
omitting action |
enrichr_gene_enrichment_analysis |
gene_list (array) |
string |
Response Format Notes:
{status, data})total_hits and pathways{status: "success", data: [...]} formatLOOK UP DON'T GUESS: Km values, kcat values, cofactor requirements, and optimal pH/temperature for specific enzymes. Use BindingDB_search_by_target, ChEMBL_get_molecule, BRENDA_search (if available), or EuropePMC_search_articles to retrieve published kinetic parameters. Do not estimate Km from first principles.
The foundational model: v = Vmax * [S] / (Km + [S])
To determine Km and Vmax from data: use Lineweaver-Burk (1/v vs 1/[S]), Eadie-Hofstee (v vs v/[S]), or nonlinear regression (preferred — avoids distortion from reciprocal transforms). See enzyme_kinetics.py in skills/tooluniverse-computational-biophysics/scripts/.
Not all enzymes follow Michaelis-Menten. Sigmoidal v-vs-[S] curves indicate cooperativity.
| Type | Effect on Km | Effect on Vmax | Lineweaver-Burk pattern |
|---|---|---|---|
| Competitive | Increases (Km_app = Km * (1 + [I]/Ki)) | Unchanged | Lines intersect on y-axis |
| Uncompetitive | Decreases | Decreases | Parallel lines |
| Noncompetitive (pure) | Unchanged | Decreases (Vmax_app = Vmax / (1 + [I]/Ki)) | Lines intersect on x-axis |
| Mixed | Changes | Decreases | Lines intersect in quadrant II or III |
To determine Ki: measure v at multiple [I] and [S], fit to the appropriate model. The enzyme_kinetics.py script handles competitive, uncompetitive, and noncompetitive inhibition calculations.
When a purified enzyme shows no catalytic activity, systematically check:
Metabolic flux analysis (MFA) quantifies the rates of metabolic reactions in vivo, not just enzyme activities in vitro.
Key concepts:
biomodels_search to find published SBML models for the organism.LOOK UP DON'T GUESS: stoichiometric coefficients, pathway topology, and published flux distributions. Use KEGG (kegg_get_pathway_info), Reactome (Reactome_get_pathway_reactions), and BioModels (biomodels_search) for these data.
Best for: Gene set analysis, protein function investigation, pathway discovery, systems-level biology
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
ailabs-393/ai-labs-claude-skills
tooluniverse-systems-biology fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
tooluniverse-systems-biology has been reliable in day-to-day use. Documentation quality is above average for community skills.
Keeps context tight: tooluniverse-systems-biology is the kind of skill you can hand to a new teammate without a long onboarding doc.
tooluniverse-systems-biology is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
I recommend tooluniverse-systems-biology for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Solid pick for teams standardizing on skills: tooluniverse-systems-biology is focused, and the summary matches what you get after install.
Solid pick for teams standardizing on skills: tooluniverse-systems-biology is focused, and the summary matches what you get after install.
I recommend tooluniverse-systems-biology for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
tooluniverse-systems-biology is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: tooluniverse-systems-biology is the kind of skill you can hand to a new teammate without a long onboarding doc.
showing 1-10 of 25