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

Chromosomal Instability Agent

ASecurity

--> --- name: 'chromosomal-instability-agent' description: 'AI-powered analysis of chromosomal instability (CIN) signatures for cancer prognosis, immunotherapy response prediction, and therapeutic vulnerability identification.' measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes. allowed-tools: - read_file - run_shell_command --- The **Chromosomal Instability Agent** analyzes CIN signatures to predict cancer prognosis, immunotherapy response, and therap...

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

Works with

cliapi

Security Analysis

A100/100

Scanned 5/30/2026

Install to Claude Code

$npx -y skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill chromosomal-instability-agent --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Chromosomal Instability Agent?

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

Security grade badge for Chromosomal Instability Agent
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/freedomintelligence-chromosomal-instability-agent/badge)](https://www.skillsdirectory.com/skills/freedomintelligence-chromosomal-instability-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: 'chromosomal-instability-agent'
description: 'AI-powered analysis of chromosomal instability (CIN) signatures for cancer prognosis, immunotherapy response prediction, and therapeutic vulnerability identification.'
measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes.
allowed-tools:
  - read_file
  - run_shell_command
---


# Chromosomal Instability Agent

The **Chromosomal Instability Agent** analyzes CIN signatures to predict cancer prognosis, immunotherapy response, and therapeutic vulnerabilities. It integrates copy number alterations, aneuploidy scores, and CIN-related gene expression for comprehensive genomic instability assessment.

## When to Use This Skill

* When assessing tumor aneuploidy and chromosomal instability levels.
* To predict prognosis based on CIN signatures.
* For identifying tumors vulnerable to CIN-targeted therapies (PARP, ATR, WEE1).
* When analyzing immune evasion mechanisms related to CIN.
* To stratify patients for immunotherapy based on CIN status.

## Core Capabilities

1. **CIN Scoring**: Calculate comprehensive CIN scores from copy number data.

2. **Aneuploidy Quantification**: Measure arm-level and focal copy number alterations.

3. **CIN Gene Expression**: Analyze CIN70 and other transcriptional signatures.

4. **Immune Correlation**: Assess CIN-immune microenvironment relationships.

5. **Therapeutic Vulnerability**: Identify CIN-targeted treatment options.

6. **Prognostic Modeling**: Predict outcomes based on CIN signatures.

## CIN Metrics

| Metric | Calculation | Interpretation |
|--------|-------------|----------------|
| Aneuploidy score | Arm-level alterations | Chromosome-level CIN |
| SCNA burden | Total CNV alterations | Overall instability |
| Weighted GII | Fraction altered genome | Focal vs broad changes |
| CIN70 | 70-gene signature | Transcriptional CIN |
| WGII | Weighted genome instability | Comprehensive score |

## CIN70 Signature Genes

Core genes reflecting CIN phenotype:
- Mitotic checkpoint: BUB1, BUBR1, MAD2L1
- Kinetochore: CENPA, CENPF, NDC80
- DNA replication: MCM2-7, ORC1
- Cell cycle: CCNB1, CCNB2, CDK1, PLK1
- Chromosome segregation: AURKB, KIF2C, KIF11

## Workflow

1. **Input**: Copy number data (segments), gene expression, mutation data.

2. **CNV Analysis**: Calculate arm-level and focal alterations.

3. **Signature Scoring**: Compute CIN70 and other transcriptional signatures.

4. **Integration**: Combine DNA and RNA-based CIN metrics.

5. **Immune Analysis**: Correlate CIN with TME composition.

6. **Vulnerability Assessment**: Identify targetable dependencies.

7. **Output**: CIN scores, prognosis, treatment recommendations.

## Example Usage

**User**: "Analyze chromosomal instability in this breast cancer sample and identify treatment vulnerabilities."

**Agent Action**:
```bash
python3 Skills/Oncology/Chromosomal_Instability_Agent/cin_analyzer.py \
    --cnv_segments tumor_cnv.tsv \
    --expression rnaseq_tpm.tsv \
    --mutations somatic.maf \
    --tumor_type breast_cancer \
    --signatures cin70,cin25 \
    --output cin_report/
```

## CIN and Immune Evasion

**High CIN Associates With**:
- Reduced immune infiltration
- Lower checkpoint inhibitor response
- Increased immune evasion
- cGAS-STING activation (paradoxical)

**Mechanisms**:
1. Loss of tumor suppressors on chromosome arms
2. Chronic inflammatory signaling
3. Aneuploidy-induced stress responses
4. Subclonal diversification

## Therapeutic Vulnerabilities

| Target | Agents | CIN Context |
|--------|--------|-------------|
| PARP | Olaparib, etc. | High CIN + HRD |
| ATR | Berzosertib | Replication stress |
| WEE1 | Adavosertib | G2/M dependency |
| CHK1 | Prexasertib | Cell cycle checkpoint |
| KIF11 | Ispinesib | Mitotic dependency |
| Aurora kinases | Alisertib | Mitotic errors |

## CIN-Based Patient Stratification

| CIN Level | Prognosis | ICI Response | Alternative Therapy |
|-----------|-----------|--------------|---------------------|
| Low | Better | Better | Standard care |
| Intermediate | Variable | Variable | Combination therapy |
| High | Poor | Poor | CIN-targeted agents |
| Extreme | Very poor | Immune desert | Chemotherapy |

## AI/ML Components

**CIN Score Prediction**:
- Random forest on CNV features
- Expression-based CIN inference
- Multi-modal integration

**Prognosis Modeling**:
- Cox regression with CIN features
- Cancer-type specific models
- Integration with clinical variables

**Therapeutic Matching**:
- GDSC/CCLE drug sensitivity
- CIN-drug response correlations
- Combination predictions

## Pan-Cancer CIN Patterns

| Cancer Type | Typical CIN Level | Driver Events |
|-------------|-------------------|---------------|
| Ovarian HGSOC | Very high | TP53, BRCA |
| Triple-neg breast | High | TP53, PI3K |
| Colorectal MSS | Moderate-high | APC, TP53 |
| Colorectal MSI | Low | MMR deficiency |
| Thyroid (PTC) | Low | BRAF, RAS |
| Melanoma | Moderate | BRAF, NRAS |

## Prerequisites

* Python 3.10+
* GISTIC2 or similar for CNV analysis
* Gene signature databases
* Survival analysis packages

## Related Skills

* HRD_Analysis_Agent - For HR-specific instability
* Pan_Cancer_MultiOmics_Agent - For pan-cancer context
* Tumor_Clonal_Evolution_Agent - For evolutionary dynamics

## Research Applications

1. **Biomarker Development**: CIN as predictive marker
2. **Drug Development**: CIN-targeted therapy trials
3. **Evolution Studies**: Track CIN changes over time
4. **Resistance Mechanisms**: CIN and drug resistance

## 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 →