By bardli
FLARE lab skill bundle. Initial release: dataset-acquisition (TCGA/GDC, Kaggle, HuggingFace, Google Drive + sbatch), dicom-converter (DICOM→NIfTI, RTSTRUCT/SEG SOP-UID routing, audit + helper scripts), nnunet-converter (nnUNet v2 layout for 2D/3D, multi-modal, classification, region-based). More lab skills will land here over time.
Use when the user wants to pull a dataset from TCGA / GDC, Kaggle (competition or dataset), HuggingFace, or Google Drive, or asks for an sbatch script for a long download. Triggers on phrases like "grab the CESC slides", "download BraTS from huggingface", "pull RSNA pneumonia from kaggle", "GDC manifest", "gdown", "sbatch for this download", and on the tools gdc-client, kaggle, huggingface_hub, snapshot_download, gdown. Does NOT cover DICOM→NIfTI conversion or nnUNet formatting — hand off to the dicom-converter or nnunet-converter skill.
Use when converting DICOM series to NIfTI, handling RTSTRUCT/SEG annotations, auditing a DICOM dataset's health (clean vs dirty), routing per-contour or per-frame masks to the correct slice/acquisition, or debugging DICOM→NIfTI label misalignment. Triggers on keywords like DICOM, NIfTI, nii.gz, RTSTRUCT, SEG, SimpleITK, ImageSeriesReader, pydicom, ImagePositionPatient, AcquisitionNumber, SOPInstanceUID, ContourImageSequence, DerivationImageSequence, multi-acquisition, z-spacing, sop_to_acq.
Use when the user asks to convert, prepare, or organize a medical imaging dataset for nnUNet v2 / nnU-Net training, structure imagesTr/labelsTr folders, write dataset.json, generate splits_final.json, or set up classification labels (cls_data.csv). Triggers on the strings nnUNet, nnU-Net, imagesTr, labelsTr, dataset.json, splits_final.json, classification_labels, NaturalImage2DIO, NibabelIO, SimpleITKIO, Tiff3DIO. Inputs may be NIfTI / MHA / NRRD / PNG / BMP / TIFF; raw DICOM inputs must hand off to the dicom-converter skill first.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
FLARE lab's Claude Code plugin marketplace. Lab-wide skill set, packaged as one plugin so members can install everything at once and get auto-updates.
The current release ships the medical-imaging dataset workflow subset — three composable skills covering dataset acquisition, DICOM→NIfTI conversion, and nnUNet v2 formatting — absorbed from AIHubSkillSet. Additional lab skills (modeling, writing, reproducibility tooling) will land in this repo over time without changing the install path.
/plugin update)/plugin marketplace add Bardli/flare-skills
/plugin install flare-skills@flare-skills
Then /plugin list to confirm and /plugin update flare-skills@flare-skills whenever you want to pull new revisions.
| Skill | Purpose | Triggers on |
|---|---|---|
dataset-acquisition | Download from TCGA/GDC, Kaggle, HuggingFace, Google Drive; generate SLURM sbatch scripts | "grab the CESC slides", "pull this Kaggle competition", "download from HF and pin the revision", "sbatch script for this download" |
dicom-converter | DICOM series → NIfTI; RTSTRUCT/SEG handling; SOP-UID-anchored routing for multi-acquisition data; 10-check audit script; multi-RTSTRUCT OR-union; debug recipes for label misalignment | "convert these DICOMs to NIfTI", "handle this RTSTRUCT", "debug this label/image mismatch", "audit this DICOM dataset" |
nnunet-converter | Format imaging datasets into nnUNet v2 layout (imagesTr/labelsTr/dataset.json/splits_final.json); handles 2D PNG/BMP/TIFF, 3D NIfTI/MHA/NRRD, 3D TIFF, multi-modal, classification labels, ignore label, region-based | "make this nnUNet-ready", "prepare for nnUNet training", "generate dataset.json" |
These three skills are independent — Claude loads each on demand based on the task — but they compose into the standard medical-imaging pipeline: acquire → convert DICOM → format for nnUNet.
┌──────────────────────┐
│ dataset-acquisition │ download from TCGA/GDC, Kaggle, HF, gdrive
└─────────┬────────────┘
▼
┌──────────────────────┐
│ dicom-converter │ DICOM → NIfTI (only if input is DICOM)
└─────────┬────────────┘
▼
┌──────────────────────┐
│ nnunet-converter │ nnUNet v2 layout + dataset.json + splits
└──────────────────────┘
Skip any step that doesn't apply: if the source is already NIfTI/MHA, skip dicom-converter; if you don't need nnUNet, skip nnunet-converter.
AIHubSkillSet is the upstream public release of these three medical-imaging skills. flare-skills is the FLARE-lab umbrella that absorbs that set as its founding subset and will grow with additional lab-internal skills.
AIHubSkillSet if you only want the three medical-imaging skills as a standalone bundle.flare-skills if you're inside FLARE lab and want everything we ship under one install.The skill content here tracks AIHubSkillSet at v0.1.2; future divergence will be noted in this README.
If you prefer to vendor the skills directly into a project (no auto-update):
git clone https://github.com/Bardli/flare-skills.git
mkdir -p ~/.claude/skills # or .claude/skills/ for project-scoped
cp -r flare-skills/skills/* ~/.claude/skills/
You can also copy individual skills if you only want one or two:
cp -r flare-skills/skills/nnunet-converter ~/.claude/skills/
flare-skills/
├── .claude-plugin/
│ ├── marketplace.json # marketplace declaration
│ └── plugin.json # this repo IS the plugin (one plugin, N skills)
├── skills/
│ ├── dataset-acquisition/ # progressive-disclosure skill
│ │ ├── SKILL.md
│ │ ├── references/ # tcga_gdc, kaggle, huggingface, google_drive, sbatch_template
│ │ └── scripts/ # gdc_manifest.py, hf_download.py
│ ├── dicom-converter/ # progressive-disclosure skill
│ │ ├── SKILL.md
│ │ ├── references/ # 9 topical .md files (audit, SOP-UID routing, multi-RTSTRUCT, etc.)
│ │ └── scripts/ # audit_dicom_dataset, build_sop_to_acq, parse_rtstruct_union, qc-overlay
│ └── nnunet-converter/ # progressive-disclosure skill
│ ├── SKILL.md
│ ├── references/ # 10 topical .md files
│ └── scripts/ # convert_template, simple-CLI, manifest writer
└── README.md
npx claudepluginhub medfm-flare/flare-skills --plugin flare-skillsMedical-imaging dataset workflow skills: dataset-acquisition, dicom-converter, nnunet-converter. Progressive-disclosure SKILL.md files with mandatory MUST-read pointers, plus working helper scripts (DICOM auditor, SOP-UID map writer, multi-RTSTRUCT union parser, GDC manifest, HF revision-pinned downloader, simple nnUNet CLI, provenance manifest writer).
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
A growing collection of Claude-compatible academic workflow bundles. Covers scientific figures, manuscript writing and polishing, reviewer assessment, citation retrieval, data availability, paper reading, literature search, response letters, paper-to-PPTX conversion, and evidence-grounded Chinese invention patent drafting. Rules are organized as reusable skill folders with explicit workflows and quality checks.
Memory compression system for Claude Code - persist context across sessions
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
UI/UX design intelligence. 67 styles, 161 palettes, 57 font pairings, 25 charts, 15 stacks (React, Next.js, Vue, Svelte, Astro, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui, Nuxt, Jetpack Compose). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient.
Frontend design skill for UI/UX implementation