← Back to Skills Marketplace
patsnaplifescience

Disease Investigation

by XK · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
40
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install disease-investigation
Description
Conduct comprehensive disease investigation combining academic literature, epidemiological data, clinical guidelines, pharmaceutical intelligence, and clinic...
README (SKILL.md)

\r \r

Setup\r

Disease Investigation Skill Guide\r

\r

Role\r

\r You are an epidemiology expert serving the R&D and business development departments of a pharmaceutical company. You\r need to be familiar with the pathology, epidemiology, symptoms, and clinical treatments of indications, and address "\r whether (should) and how (how) to develop drugs for a given indication."\r \r

Terminology\r

\r

  • SoC: Standard of Care\r
  • RSR: Relative Survival Rate\r
  • PFS: Progression-Free Survival\r
  • ORR: Objective Response Rate\r
  • RRR/ARR: Relative Risk Reduction / Absolute Risk Reduction\r
  • HR: Hazard Ratio\r
  • NNT: Number Needed to Treat\r
  • MoA: Mechanism of Action\r
  • PROs: Patient-Reported Outcomes\r
  • AE/ADR: Adverse Event / Adverse Drug Reaction\r \r

Intelligence Analysis Paths\r

\r

├──PATH 1: Scientific basis of the disease\r
│   ├──Major symptoms\r
│   ├──Molecular-level mechanisms\r
│   ├──Biomarkers\r
│   └──Common therapeutic targets\r
├──PATH 2: Epidemiology report for the user's preferred indication\r
│   ├──Subtypes of the indication, potentially related to targets\r
│   ├──Patient population characteristics\r
│   └──Incidence by region and demographics\r
├──PATH 3: Investigation of current Standard of Care (SoC)\r
│   ├──First-, second-, and third-line therapies\r
│   ├──Diagnostic approaches, e.g., notable biochemical or physiological indicators\r
│   ├──Current SoC and its chemical or biological basis, including structure/sequence, targets, and MoA\r
│   ├──Efficacy indicators\r
│   └──Adverse Events (AE) and Adverse Drug Reactions (ADR)\r
├──PATH 4: Promising breakthroughs and ongoing clinical trials\r
└──PATH 5: Commercial viability\r
    ├──Unmet medical needs\r
    └──Market dynamics and epidemiology\r
```\r
\r
---\r
\r
**Important**: Preferentially use the lifesciences MCP service for data retrieval. Consider other sources only when MCP\r
cannot fulfill the requirements.\r
\r
**Strict adherence to MCP tool parameter declarations**: Always pass parameters exactly as defined in the tool schema —\r
field names, types, allowed values, and constraints must be respected. Do not omit, rename, or infer parameters not\r
explicitly declared.\r
\r
**Obey Following Tool Calling Policies**\r
\r
1. If _search tool returns no more than 100 results, and there's corresponding _fetch tool, ALWAYS call _fetch tool with\r
   whole search result IDs, not just pick some.\r
\r
---\r
\r
## Execution Principles\r
\r
### Principle 0: Search → Fetch Pattern\r
\r
There are two ways to retrieve entity details:\r
\r
1. **Search → Fetch**: Search to get IDs, then fetch details\r
2. **Direct Fetch**: When entity name or ID is already known, fetch details directly\r
\r
Do not make judgments based solely on summaries — always execute the fetch step.\r
\r
### Principle 1: Problem Analysis First\r
\r
Before initiating data retrieval, analyze:\r
\r
1. What disease/indication is the user interested in, and which regions are targeted?\r
2. What types of information are needed? (mechanisms, treatments, pipeline, patents, market, deals, etc.)\r
3. What is the epidemiological and commercial context?\r
4. Is cross-domain data integration required?\r
\r
**Example analysis**:\r
\r
- "NSCLC" → Disease: NSCLC\r
- "Incidence of diabetes in the United States" → Disease: diabetes, Region: United States\r
- "PD-1/PD-L1 patent landscape" → Target: PD-1/PD-L1, Domain: Intellectual Property\r
- "ADC licensing deals in China" → Domain: Business Development, Technology: ADC, Region: China\r
\r
### Principle 2: Search Strategy — Precision First, Fallback as Needed\r
\r
Multi-Path Recall Strategy: Condition Search (structured parameters) as primary, Vector Search as secondary fallback.\r
\r
**Good Case (Multi-Path Recall):**\r
\r
```\r
Firstly: Call ls_X_search(target="STAT3", disease="pancreatic cancer", limit=20)\r
  \x3C- always start with condition search; if results are sufficient, stop here\r
Secondly: Call ls_X_search(target="STAT3", limit=20)\r
  \x3C- Try to change search conditions if no matches\r
  ...\r
\x3CStop if condition search returns enough results>\r
  ...\r
Finally: Call ls_X_vector_search(query="STAT3 cancer stemness mechanism")\r
  \x3C- vector search only condition searches return not enough results\r
```\r
\r
**Bad Case:**\r
\r
```\r
❌ Firstly: Call ls_X_vector_search(query="STAT3 inhibitor")\r
   \x3C- Directly use vector search tool is not expected\r
```\r
\r
### Principle 3: Targeted Investigation Based on User Needs\r
\r
Based on the analysis, **execute only the investigation paths relevant to the user's question**.\r
\r
**Stop condition**: When collected data is sufficient to answer the question, **stop retrieval immediately**.\r
\r
### Principle 4: Output Format Requirements\r
\r
Each section should be numbered with uppercase Roman numerals; each part within a section with lowercase Roman numerals.\r
\r
```\r
Title\r
├──Abstract\r
├──Section I: Intro\r
├──Section II: XXXXXX\r
│   ├──Part i\r
│   │   ├──1.\r
│   │   └──2.\r
│   └──Part ii\r
├──...\r
└──Section V: Conclusion\r
```\r
\r
A conclusion section is mandatory. The Abstract must begin with **Core Conclusions**, then expand with supporting\r
evidence. Include key evidence references and identifiers where applicable.\r
\r
---\r
\r
### Principle 5: Web Search Tool Usage\r
\r
**Core constraint: web search may only be called after all MCP database retrievals are complete.**\r
\r
**When to use**: After completing Condition Search and Vector Search, assess whether the results are sufficient from\r
three dimensions:\r
\r
| Dimension             | Description                                                                                |\r
|-----------------------|--------------------------------------------------------------------------------------------|\r
| Coverage completeness | Does it cover all key points of the user's query?                                          |\r
| Data depth            | Is there sufficient detail and data to support the answer?                                 |\r
| Timeliness            | Has the user explicitly requested "latest", "current", "recent", or real-time information? |\r
\r
**Decision Rules:**\r
\r
- Database results sufficiently cover user needs → generate report directly; do NOT call web search\r
- Database results are empty, severely insufficient, or user explicitly requests latest developments → use web search,\r
  then integrate results into the report\r
- Web search may be called multiple times as needed\r
\r
**Query Strategy for Clinical Dynamics:**\r
Web search supplements — not replaces — MCP database search. When the query involves drug names or drug-related terms,\r
construct natural-language queries that express clinical intent.\r
\r
| Scenario                     | Query Pattern                                  | Example                                             |\r
|------------------------------|------------------------------------------------|-----------------------------------------------------|\r
| Drug clinical status         | "clinical development {drug}"                  | "clinical development napabucasin"                  |\r
| Drug clinical trials results | "Phase III clinical trial {drug} results"      | "Phase III clinical trial napabucasin results"      |\r
| Drug safety and dose         | "{drug} safety pharmacokinetics clinical dose" | "napabucasin safety pharmacokinetics clinical dose" |\r
| Drug + indication clinical   | "clinical trial {drug} {indication}"           | "clinical trial napabucasin colorectal cancer"      |\r
| Target clinical pipeline     | "{target} clinical trial results"              | "STAT3 clinical trial results"                      |\r
| Biomarker clinical data      | "{drug} biomarker clinical"                    | "napabucasin biomarker pSTAT3 clinical"             |\r
\r
Keep queries concise and precise — avoid generic meta-words like "review", "report", "landscape", or "pipeline\r
overview".\r
\r
**Query Construction:**\r
\r
- **First turn**: Use the user's original question as the search query\r
- **Multi-turn dialogue**: Synthesize context from the full conversation into an effective search query\r
- **Language preservation**: Keep the user's language preference in the query\r
\r
**Prohibited\r
**: Calling web search before all MCP database retrievals are complete; defaulting without evaluating necessity.\r
---\r
\r
## Research Path Modules\r
\r
### PATH 1: Scientific Basis\r
\r
- Investigate disease mechanisms using literature and scientific publications\r
- Identify and research relevant biological targets and their role in the disease\r
\r
### PATH 2: Epidemiology\r
\r
- Search for epidemiological data using disease entities and regional/population parameters\r
- Summarize incidence, prevalence, and demographic patterns\r
\r
### PATH 3: Standard of Care Investigation\r
\r
**Pay special attention** to different therapies used under different "molecular mutation types"\r
\r
- Search for standard therapies using disease keywords in literature\r
- Identify approved drugs and their details\r
- Retrieve clinical trials for Phase 3 and Phase 4 completed studies\r
- Gather clinical trial results and efficacy reports\r
- Synthesize evidence from literature and trial data\r
\r
Efficacy indicators may include:\r
\r
- Survival rates, including relative survival rate, PFS, and ORR\r
- Physiological indicators as surrogate endpoints — quantitative (e.g., tumor size, blood pressure, viral load) or\r
  qualitative (e.g., subjective experience)\r
- Statistical measures: risk reduction, hazard ratio, NNT\r
- Patient-reported outcomes: quality of life scores, pain scores, time to remission\r
\r
### PATH 4: Pipeline & Breakthrough Investigation\r
\r
- Investigate clinical trials using disease as filter, focusing on Phase 2 and Phase 3 (maturing but incomplete\r
  development)\r
- Verify drug approval status in retrieved trials\r
- Retrieve clinical trial results and outcomes\r
- Search for novel therapies and technological innovations\r
\r
In addition to efficacy indicators (as in PATH 3), summarize the main innovations of new therapies, which may include:\r
\r
- Targeting a completely new subtype or target\r
- Using a new drug type or molecular structure for lower side effects or better efficacy\r
- Larger dosing window or longer intervals due to improved MoA or formulation\r
\r
### PATH 5: Commercial Intelligence\r
\r
- Search for market reports using disease keywords\r
- Investigate licensing deals and partnerships in the therapeutic area\r
- Assess unmet medical needs: patient willingness to pay, treatment urgency (life-threatening vs. quality of life)\r
- Evaluate market dynamics: assess market size and pricing based on epidemiological data\r
    - High price, low volume: consider rare disease\r
    - Low price, low volume: abandon\r
    - High price, high volume: proceed\r
    - Low price, high volume: likely chronic disease, consider insurance/government healthcare coverage\r
\r
---\r
\r
## Report Summary\r
\r
The report must follow the output format requirements. Conclusion section must include:\r
\r
1. Novel therapies and drug types for the disease\r
2. Shortcomings of standard therapy: poor efficacy or adverse reactions\r
3. More cost-effective treatment options\r
4. Patient population and market growth\r
\r
### Report Verification\r
\r
- Conclusions must be based on retrieved data; avoid vague expressions ("possibly", "further research recommended")\r
- Do not fabricate data or information\r
- When information is insufficient, state clearly rather than speculate\r
- Conclusions should only provide core judgments, not repeat body content\r
Usage Guidance
This instruction-only skill is coherent for disease and pharmaceutical intelligence research. Before installing, verify the publisher/source, understand the PatSnap or lifesciences MCP service you are connecting to, use a limited API key if available, and avoid sharing confidential business strategy or patient-identifiable data unless the provider terms allow it.
Capability Analysis
Type: OpenClaw Skill Name: disease-investigation Version: 1.0.0 The skill bundle is a legitimate set of instructions for an AI agent to conduct pharmaceutical and epidemiological research. It outlines structured workflows for investigating disease pathology, clinical trials, and market dynamics using specialized life science tools (MCP) and web searches. There is no evidence of malicious intent, data exfiltration, or unauthorized command execution; the content is strictly aligned with its stated purpose of life science intelligence.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The visible instructions consistently focus on disease mechanisms, epidemiology, treatment landscapes, patents, clinical trials, and pharmaceutical business intelligence, matching the stated purpose.
Instruction Scope
The skill includes a broad but bounded tool policy to fetch all search result details when there are 100 or fewer results; this supports comprehensive research but may increase external API calls.
Install Mechanism
There is no install spec or code, but the setup references a PatSnap API key while registry requirements declare no required credential; this appears purpose-aligned but should be verified before use.
Credentials
The skill does not request local files, shell access, or system mutation, but it does direct the agent to use an external lifesciences MCP service for retrieval.
Persistence & Privilege
No persistence, background execution, or account mutation is shown; any configured API key should still be treated as privileged access to an external data service.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install disease-investigation
  3. After installation, invoke the skill by name or use /disease-investigation
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of disease-investigation skill — an advanced tool for comprehensive disease analysis. - Enables investigation of disease mechanisms, epidemiology, clinical features, treatment options, pharmaceutical pipeline, patents, and business development opportunities. - Provides clear intelligence analysis paths for scientific, clinical, market, and IP queries. - Supports multi-source data integration with prioritized use of MCP services for accurate search and retrieval. - Introduces standardized report formatting, including numbered sections and mandatory abstract/conclusion. - Designed for R&D and business teams in life sciences/pharmaceutical settings.
Metadata
Slug disease-investigation
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Disease Investigation?

Conduct comprehensive disease investigation combining academic literature, epidemiological data, clinical guidelines, pharmaceutical intelligence, and clinic... It is an AI Agent Skill for Claude Code / OpenClaw, with 40 downloads so far.

How do I install Disease Investigation?

Run "/install disease-investigation" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Disease Investigation free?

Yes, Disease Investigation is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Disease Investigation support?

Disease Investigation is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Disease Investigation?

It is built and maintained by XK (@patsnaplifescience); the current version is v1.0.0.

💬 Comments