create-workflow
Installation
SKILL.md
Nextflow Workflow Writer
Create complete Nextflow workflows by composing validated modules from the Nextflow Registry.
Modules are published under namespaces (e.g. nf-core/fastqc), and these skills compose modules from any of them.
Requires Nextflow 26.04 or later (for the nextflow module commands used during validation).
NEVER write a wrapper workflow just to run/test a single module.
❌ WRONG - Writing a workflow to run one module:
// DO NOT DO THIS - not even when a module run fails!
include { FASTQC } from 'nf-core/fastqc'
workflow { FASTQC(Channel.fromPath('data/*.fq.gz')) }