Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Cancer Metabolism Agent

ASecurity

--> --- name: 'cancer-metabolism-agent' description: 'AI-powered analysis of cancer metabolic reprogramming including Warburg effect, glutamine addiction, lipid metabolism, and metabolic vulnerabilities for therapeutic targeting.' measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes. allowed-tools: - read_file - run_shell_command --- The **Cancer Metabolism Agent** analyzes tumor metabolic reprogramming to identify vulnerabilities for therapeutic targeti...

2,984 stars
0 votes
0 copies
1 views
Added 5/30/2026
developmentpythonshellbashreactexpressdatabase

Works with

cli

Security Analysis

A100/100

Scanned 5/30/2026

Install to Claude Code

$npx -y skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill cancer-metabolism-agent --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Cancer Metabolism Agent?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Cancer Metabolism Agent
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/freedomintelligence-cancer-metabolism-agent/badge)](https://www.skillsdirectory.com/skills/freedomintelligence-cancer-metabolism-agent)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
<!--
# COPYRIGHT NOTICE
# This file is part of the "Universal Biomedical Skills" project.
# Copyright (c) 2026 MD BABU MIA, PhD <md.babu.mia@mssm.edu>
# All Rights Reserved.
#
# This code is proprietary and confidential.
# Unauthorized copying of this file, via any medium is strictly prohibited.
#
# Provenance: Authenticated by MD BABU MIA

-->

---
name: 'cancer-metabolism-agent'
description: 'AI-powered analysis of cancer metabolic reprogramming including Warburg effect, glutamine addiction, lipid metabolism, and metabolic vulnerabilities for therapeutic targeting.'
measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes.
allowed-tools:
  - read_file
  - run_shell_command
---


# Cancer Metabolism Agent

The **Cancer Metabolism Agent** analyzes tumor metabolic reprogramming to identify vulnerabilities for therapeutic targeting. It integrates metabolomics, transcriptomics, and flux analysis to characterize Warburg effect, glutamine addiction, lipid synthesis, and other cancer-specific metabolic alterations.

## When to Use This Skill

* When analyzing tumor metabolomic profiles to identify metabolic phenotypes.
* To identify metabolic vulnerabilities as therapeutic targets.
* For predicting response to metabolism-targeting drugs (metformin, 2-DG, CB-839).
* When integrating metabolomics with transcriptomics for pathway analysis.
* To analyze tumor-microenvironment metabolic competition.

## Core Capabilities

1. **Metabolic Phenotyping**: Classify tumors by dominant metabolic programs (glycolytic, oxidative, lipogenic).

2. **Warburg Effect Quantification**: Measure aerobic glycolysis and lactate production signatures.

3. **Glutamine Dependency Analysis**: Identify glutamine-addicted tumors vulnerable to GLS inhibitors.

4. **Lipid Metabolism Profiling**: Analyze de novo lipogenesis and fatty acid oxidation.

5. **Metabolic Flux Analysis**: Integrate 13C tracer data for pathway flux quantification.

6. **Drug Sensitivity Prediction**: Predict response to metabolism-targeting therapeutics.

## Key Metabolic Pathways in Cancer

| Pathway | Key Enzymes | Cancer Relevance | Therapeutic Targets |
|---------|-------------|------------------|---------------------|
| Glycolysis | HK2, PKM2, LDHA | Warburg effect | 2-DG, lonidamine |
| Glutaminolysis | GLS1, GDH | Nitrogen/carbon source | CB-839, BPTES |
| Fatty acid synthesis | FASN, ACC, ACLY | Membrane biogenesis | TVB-2640, ND-646 |
| Oxidative phosphorylation | Complex I-V | OXPHOS tumors | Metformin, IACS-010759 |
| One-carbon metabolism | SHMT, MTHFD | Nucleotide synthesis | Methotrexate |
| Serine synthesis | PHGDH, PSAT1 | Amino acid auxotrophy | NCT-503 |

## Workflow

1. **Input**: Metabolomics data (LC-MS, GC-MS), RNA-seq expression, clinical annotations.

2. **Normalization**: Process metabolomics data with appropriate normalization.

3. **Pathway Scoring**: Calculate metabolic pathway activity scores.

4. **Phenotype Classification**: Assign metabolic phenotype clusters.

5. **Vulnerability Identification**: Identify metabolic dependencies.

6. **Drug Matching**: Predict sensitivity to metabolism-targeting agents.

7. **Output**: Metabolic phenotype, pathway activities, therapeutic recommendations.

## Example Usage

**User**: "Analyze this tumor's metabolic profile and identify targetable metabolic vulnerabilities."

**Agent Action**:
```bash
python3 Skills/Oncology/Cancer_Metabolism_Agent/metabolism_analyzer.py \
    --metabolomics tumor_lcms.csv \
    --rnaseq tumor_expression.tsv \
    --tumor_type NSCLC \
    --normalize mtic \
    --pathway_analysis true \
    --drug_prediction true \
    --output metabolism_report/
```

## Metabolic Phenotype Classification

**Glycolytic (Warburg)**:
- High HK2, PKM2, LDHA expression
- Elevated lactate/pyruvate ratio
- Low mitochondrial gene expression
- Sensitive to glycolysis inhibitors

**Oxidative (OXPHOS-dependent)**:
- High ETC complex expression
- Active TCA cycle
- PGC1α driven
- Sensitive to metformin, IACS-010759

**Lipogenic**:
- High FASN, ACC, SREBP1/2
- Active de novo lipogenesis
- Common in prostate, breast cancer
- Sensitive to FASN inhibitors

**Glutamine-addicted**:
- High GLS1, MYC-driven
- Glutamine-dependent anaplerosis
- Common in KRAS-mutant cancers
- Sensitive to CB-839

## AI/ML Models

**Metabolic Phenotype Classifier**:
- Random forest on metabolite ratios
- 85% accuracy on validation cohorts
- Integrates with molecular subtypes

**Flux Balance Analysis**:
- Genome-scale metabolic models (Recon3D)
- Constraint-based optimization
- Predicts essential metabolic genes

**Drug Response Prediction**:
- GDSC/CCLE metabolic drug data
- Multi-omic feature integration
- AUC 0.75-0.85 for metabolic drugs

## Metabolomics Data Processing

| Step | Method | Purpose |
|------|--------|---------|
| Peak detection | XCMS, MZmine | Identify metabolites |
| Annotation | HMDB, KEGG | Assign identities |
| Normalization | MTIC, median | Remove batch effects |
| Imputation | KNN, RF | Handle missing values |
| Enrichment | MSEA, Mummichog | Pathway analysis |

## TME Metabolic Competition

The agent analyzes tumor-immune metabolic crosstalk:
- Glucose competition (T-cell activation)
- Lactate immunosuppression
- Arginine depletion by MDSCs
- Tryptophan-IDO axis
- Adenosine immunosuppression

## Prerequisites

* Python 3.10+
* COBRApy for flux balance
* MetaboAnalyst interface
* Pathway databases (KEGG, Reactome)

## Related Skills

* Metabolomics_Agent - For general metabolomics
* Multi_Omics_Integration - For omic integration
* Drug_Repurposing - For therapeutic matching

## Clinical Applications

1. **Treatment Selection**: Match metabolic phenotype to drugs
2. **Combination Therapy**: Identify synergistic metabolic targets
3. **Resistance Mechanisms**: Metabolic adaptation under therapy
4. **Diet Interventions**: Ketogenic diet in glycolytic tumors

## Author

AI Group - Biomedical AI Platform


<!-- AUTHOR_SIGNATURE: 9a7f3c2e-MD-BABU-MIA-2026-MSSM-SECURE -->

Attribution

FreedomIntelligenceFreedomIntelligence
View sourceMore from FreedomIntelligence →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

281612 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2132 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →