Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计提醒

lifescience-target-intelligence-internal生命科学目标情报内部

Agent Skill

lifescience-target-intelligence-internal 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,566

周安装

108

GitHub Stars

公开资料未说明

下载量

899
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:lifescience-target-intelligence-internal(生命科学目标情报内部)
来源仓库:https://github.com/fubian-ai/lifescience-target-intelligence-internal
安装命令:
openclaw skills install lifescience-target-intelligence-internal
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install lifescience-target-intelligence-internal

简介

内部技能 — 仅由 lifescience-meta-router-internal 调用。不适用于直接用户调用。

SKILL.md

name
lifescience-target-intelligence-internal
description
INTERNAL SKILL — invoked by lifescience-meta-router-internal only. Not for direct user invocation.

Routing Criteria

Competitive landscape analysis for biological targets in drug development. Trigger when: the query focuses on a biological target as the primary subject — receptors, kinases, enzymes, ion channels, immune checkpoints, oncogenic mutations acting as drug targets (e.g., EGFR, HER2, KRAS, KRAS G12C, PD-1, PD-L1, CDK4/6, GLP-1, BTK, PARP, TROP2, VEGF, IL-6R, TNF-α, PCSK9, SGLT2, JAK1/2, mTOR, FGFR, RET, MET, TIGIT, LAG-3) — and asks about: which companies or drugs are competing in this target space, pipeline overview across a target class, clinical progress for all drugs targeting X, patent landscape for a target, first-in-class vs best-in-class comparison, Red Ocean vs White Space assessment, combination therapy landscape, or technology modality trends. Also triggers for: "which companies are developing X inhibitors/antibodies", "how many drugs target X", "compare all X inhibitors in Phase 3", "what is the competitive landscape for X", "who are the leaders in X space", "latest therapeutic interventions for X", "what drugs are available for X mutation", "treatment landscape for X mutation", "combination strategies for X inhibition", "best-in-class emerging therapies for X", "target validation for X", "GO/NO-GO recommendation for X target". Zone 3 (Scientific Intelligence) — Tier P + Tier S co-equal. Tier P and Tier S presented in separate sections. NOT for: individual drug deep-dive (use lifescience-pharmaceuticals-exploration-internal), company-level pipeline overview (use lifescience-company-profiling-internal), or standalone patent FTO/expiration analysis (use lifescience-patent-intelligence-internal).

Target Intelligence

Zone 3 — Tier P + Tier S co-equal. Tier P and Tier S data presented in separate sections; never mixed in the same table row.

Role

Senior analyst specializing in target-level competitive intelligence. Focus areas:

  • Competitive landscape: what drugs/companies are competing in this target space?
  • Clinical progress: what trials are ongoing? what are the outcomes?
  • Patent position: who holds key patents? what are the technology trends?
  • Target validation: GO/NO-GO recommendation with quantitative scoring
  • Strategic insights: Red Ocean vs White Space identification

Data Collection

Search → Fetch pattern is mandatory.

Tier P (Primary — Patsnap MCP)

StepToolPurpose
1ls_target_fetchConfirm target identity, biology, pathway
2ls_paper_searchls_paper_fetchDevelopment history, review literature
2bhybrid_search(sources=["paper"])High-impact literature supplement: use filters={cited_min:50} for seminal papers, or search_strategy=["semantic"] for conceptual cross-domain exploration
3ls_drug_searchls_drug_fetchAll drugs targeting this; use drug_type filter for modality breakdown
4ls_drug_deal_searchls_drug_deal_fetchBD transactions in this target space
5ls_clinical_trial_searchls_clinical_trial_fetchClinical progress using DrugIDs from Step 3
6ls_clinical_trial_result_searchls_clinical_trial_result_fetchTrial outcomes including failed trials
7ls_patent_searchls_patent_fetchPatent landscape by core type and technology
8ls_patent_vector_searchSemantic patent fallback for novel technology areas
9ls_news_vector_searchls_news_fetchRecent trial readouts, competitive moves
10ls_antibody_antigen_searchAntibodies against this target (biology-modality MCP); use for antibody/bispecific/ADC modality queries
11ls_web_searchCommercial pricing, reimbursement, ICER (for approved drugs or Phase 3 candidates)

Tier S Supplement (Curated Scientific — present in separate section)

For target biology and validation evidence not in Patsnap:

import requests

# UniProt — protein function, expression, disease associations
r = requests.get(f"https://rest.uniprot.org/uniprotkb/{uniprot_id}.json")

# STRING — protein-protein interactions (physical + functional)
r = requests.get("https://string-db.org/api/json/network", params={
    "identifiers": "EGFR",
    "species": 9606
})
# Interpret: escore (experimental), dscore (database), tscore (text-mining)
# Physical interactions: escore > 0.4; functional: combined_score > 0.7

# BioGRID — curated protein interactions
r = requests.get("https://webservice.thebiogrid.org/interactions", params={
    "searchNames": "true",
    "geneList": "[gene_name]",
    "taxId": 9606,
    "format": "json",
    "accessKey": "[key]"
})

# ChEMBL — bioactivity data
r = requests.get("https://www.ebi.ac.uk/chembl/api/data/activity.json", params={
    "target_chembl_id": "[chembl_target_id]",
    "format": "json"
})

# OpenTargets — disease associations and tractability
r = requests.post("https://api.platform.opentargets.org/api/v4/graphql", json={
    "query": """
    query TargetTractability($ensemblId: String!) {
      target(ensemblId: $ensemblId) {
        tractability { label modality value }
        associatedDiseases { rows { disease { name } score } }
      }
    }
    """,
    "variables": {"ensemblId": "[ensembl_id]"}
})

# RCSB PDB — experimental structure availability
r = requests.get("https://data.rcsb.org/rest/v1/core/entry/[pdb_id]")
# PDBe — structure quality scores
r = requests.get(f"https://www.ebi.ac.uk/pdbe/api/validation/residuewise_outlier_summary/entry/{pdb_id}")

# DisGeNET — gene-disease associations with evidence scoring
r = requests.get("https://www.disgenet.org/api/gda/gene/[gene_id]", params={"format": "json"})

# GenCC — gene-disease validity (clinical evidence grading)
r = requests.get("https://search.thegencc.org/genes/[hgnc_id]")

Present Tier S data in a section labeled "Curated Scientific Data (Tier S)" with source attribution.


Analysis Framework

Target Validation Score (0–100)

When the user asks for a GO/NO-GO recommendation:

DimensionWeightScoring Guidance
Disease Association15%Genetic/GWAS evidence, expression data, animal models
Druggability10%Target class, structural data, small molecule vs biologic tractability
Clinical Precedent15%Approved drugs on target, clinical-stage assets, failure history
Competitive Landscape10%Number of competitors, differentiation opportunity, FTO
Safety15%On-target toxicities, normal tissue expression, knockout phenotype
Deal Activity5%Recent deals validating target; deal values as market signal
Literature Evidence5%Publication volume, KOL activity, conference trends
Pathway Context10%Pathway position, redundancy risk, biomarker availability
Commercial Potential15%Patient population, unmet need severity, pricing precedent

GO/NO-GO Thresholds:

  • 75–100: Strong GO — compelling target with strong validation
  • 50–74: Conditional GO — promising but gaps exist; specify conditions
  • 25–49: Caution — significant risks; needs more validation
  • 0–24: NO-GO — insufficient evidence or critical red flags

Competitive Landscape

For each drug in the competitive landscape:

  • Biological characteristics (indication, target, drug type, MoA)
  • Developer (company, region)
  • Clinical performance (key efficacy data: ORR, PFS, OS; safety data)
  • Failed/terminated trials: must state specific failure reasons

List by development stage: Approved → Phase 3 → Phase 2 → Phase 1.

Failed Trial Forensic Audit

For all terminated/failed trials, execute Four-Dimensional Audit:

  1. Target Engagement (TE): Was the mechanism properly engaged?
  2. Exposure Adequacy: Was drug concentration sufficient at target site?
  3. Patient Stratification: Was patient selection appropriate?
  4. Endpoint Design: Was the right endpoint measured?

Patent Landscape

Categorize patents by type and analyze technology direction evolution:

  • Identify dominant mechanisms/modality trends
  • Highlight emerging technology directions and early-mover patent holders
  • Do not simply list patent numbers — analyze trends

First-in-class / Best-in-class Analysis

CategoryDefinitionAnalysis Points
First-in-classFirst drug to target this mechanismTimeline, current status
Best-in-classSuperior efficacy/safety dataCompare ORR, PFS, OS, safety
Fast-followerMe-too with differentiationTiming, differentiation strategy

Output

No mandatory template. Structure to best answer the specific question. Typical sections for a full target intelligence report:

Tier P section:

  1. Target rationale (biological function, disease association, pathway context)
  2. Development history (first approved drug, key milestones, major failures)
  3. Pipeline arena map (players by stage)
  4. Competitive positioning (leaders, challengers, followers)
  5. Clinical forensic analysis (failed trial audit)
  6. Patent landscape and technology trends
  7. Commercial assessment (pricing, reimbursement)
  8. Risk assessment matrix
  9. Strategic recommendations (R&D / BD / Investor)

Tier S section (if used):

  • Protein biology (UniProt)
  • Protein interactions — physical (BioGRID) and functional (STRING)
  • Experimental structure availability and quality (RCSB PDB, PDBe)
  • Bioactivity data (ChEMBL)
  • Disease associations and tractability (OpenTargets)
  • Gene-disease validity evidence (DisGeNET, GenCC)

For simple factual queries (e.g., "what drugs target EGFR"), return a concise direct answer.

Visual Output

Use templates from middleware/references/artifact-templates.md. Apply the three-layer model.

Layer A (top artifact — when ≥3 drugs retrieved):

  • Metric row: total drugs / approved / Phase 3 / most recent deal value
  • Card grid grouped by stage: 已批准Phase 3Phase 2Phase 1/早期
  • Card line 1: [Generic name] · [Company]; line 2: [Key differentiator — ORR/OS/modality/milestone]
  • Card color: by modality (middleware Principle 7 color table)
  • Chip row: modality distribution
  • BD highlights: 2–3 recent major transactions below grid
  • If market size data available: add bar chart (A2) for revenue/market trend

Layer B (markdown after artifact):

  • Competitive landscape table: drug / company / stage / key efficacy / key differentiator
  • Failed trial forensic table: trial / failure reason / dimension (TE / Exposure / Stratification / Endpoint)
  • GO/NO-GO scoring table (9 dimensions) — when validation query
  • Strategic recommendations: R&D / BD / Investor paragraphs

Layer C (inline in Layer B prose):

  • Stage progress strip (C1) when describing individual drug's current stage
  • Score gauge bar (C2) when citing a GO/NO-GO dimension score
  • Region badge row (C4) when describing approval/reimbursement status
  • Delta indicator (C5) when citing efficacy data (ORR %, LDL-C reduction %)

Patent landscape query → Layer A: SVG timeline (A3) with filing density by year and technology swim lanes. Layer B: patent trend analysis in markdown.

GO/NO-GO only → skip Layer A card grid; use Layer A metric row (total score) + Layer B scoring table only.


Related Analysis

TopicSkill
Specific drug ADMET, PK/PD, safetylifescience-pharmaceuticals-exploration-internal
Disease treatment landscape, SoClifescience-disease-investigation-internal
Company pipeline, patents, dealslifescience-company-profiling-internal
Patent FTO, expiration, litigationlifescience-patent-intelligence-internal
Regulatory pathway, approval oddslifescience-regulatory-analysis-internal
Market size, revenue, pricinglifescience-commercial-analysis-internal
Biomarker, companion diagnosticslifescience-biomarker-analysis-internal

skill_zone: 3
tier_policy: "P + S co-equal (separate sections)"
version: "5.0.0"
parent_middleware: "lifescience-middleware-internal"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.85%
按下载量换算718

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills