Agent skill · Code Review & Quality

biomarker-analysis

Ralph-Inspired Adaptive Learning Framework for iterative, quality-gated biomarker report analysis

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill biomarker-analysis --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Allowed tools: ReadBashGlobGrep
Path: skills/analysis/biomarker-analysis/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Biomarker Analysis Pipeline (RALF) Ralph-Inspired Adaptive Learning Framework for iterative, quality-gated biomarker report analysis. ## Overview This skill runs comprehensive biomarker analysis using the RALF architecture: - **Iterative Processing**: Each category processed independently with fresh context - **KB Enrichment**: Per-category VectorShift KB queries inform analysis - **Dual Validation Gates**: Structural completeness + clinical accuracy - **Retry with Feedback**: Failed validations trigger specific revision prompts - **State Persistence**: Resume from any point, track learnings ## Usage ### Basic Analysis ```bash # Run from Python from lib.biomarker_analysis.execution import run_analysis biomarkers = [ {"name": "A1c", "value": "5.8", "unit": "%", "ref_range": "<5.7"}, {"name": "Fasting Glucose", "value": "98", "unit": "mg/dL", "ref_range": "70-99"}, # ... more biomarkers ] prd = run_analysis( biomarkers=biomarkers, user_preference_level=3, # 1-5 scale patient_goals="Optimize metabolic health and longevity", ) ``` ### Resume Interrupted Analysis ```bash from lib.biomarker_analysis.execution import resume_analysis prd = resume_analysis(output_dir=".biomarker-analysis"

What's inside
Steps it walks through
  1. Overview
  2. Usage
  3. Basic Analysis
  4. Resume Interrupted Analysis
  5. Generate Visual Report
  6. Architecture
  7. Categories
  8. Core Categories (Always Present)
  9. Dynamic Modules (Auto-detected)
  10. User Preference Levels
  11. Clinical Conventions
  12. Output Files
  13. Validation Gates
  14. Gate 1: Structural Completeness
Ships with 1 file
  • metadata.json
Commands it runs
Run from Python
from lib.biomarker_analysis.execution import run_analysis
biomarkers = [
prd = run_analysis(
from lib.biomarker_analysis.execution import resume_analysis
prd = resume_analysis(output_dir=".biomarker-analysis")
from lib.biomarker_analysis.synthesis import synthesize_report
from lib.biomarker_analysis.visual import generate_visual_report
from lib.biomarker_analysis.state import StateManager
state = StateManager()
More from claude-skill-registry
All skills →
About this skill
What does the biomarker-analysis skill do?

Ralph-Inspired Adaptive Learning Framework for iterative, quality-gated biomarker report analysis

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill biomarker-analysis --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going