Agent skill

bio-reporting-quarto-reports

Build reproducible scientific documents, presentations, and websites with Quarto supporting R, Python, Julia, and Observable JS. Use when creating reproducible reports with Quarto.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill quarto-reports --agent claude-code

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

Facts
Files in the skill folder: 4
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/bioskills/quarto-reports/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

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

From the SKILL.md

## Version Compatibility Reference examples tested with: Quarto 1.4+, DESeq2 1.42+, ggplot2 3.5+, matplotlib 3.8+, scanpy 1.10+ Before using code patterns, verify installed versions match. If versions differ: - CLI: `<tool> --version` then `<tool> --help` to confirm flags If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # Quarto Reports **"Create a Quarto analysis report"** → Write reproducible documents mixing code (Python/R), narrative, and figures that render to HTML/PDF/Word. - CLI: `quarto render report.qmd --to html` ## Basic Document ```yaml --- title: "Analysis Report" author: "Your Name" date: today format: html: toc: true code-fold: true theme: cosmo --- ``` ## Python Document ````markdown --- title: "scRNA-seq Analysis" format: html jupyter: python3 --- ```{python} import scanpy as sc import matplotlib.pyplot as plt adata = sc.read_h5ad('data.h5ad') sc.pl.umap(adata, color='leiden') ``` ```` ## R Document ````markdown --- title: "DE Analysis" format: html --- ```{r} library(DESeq2) dds <- DESeqDataSetFromMatrix(counts, metadata, ~ condition) dds <- DESeq(dds) ```

What's inside
Steps it walks through
  1. Version Compatibility
  2. Basic Document
  3. Python Document
  4. R Document
  5. Multiple Formats
  6. Parameters
  7. Tabsets
  8. Callouts
  9. Cross-References
  10. Code Cell Options
  11. Inline Code
  12. Presentations
  13. Quarto Projects
  14. Bibliography
Ships with 3 files
  • examples/basic_report.qmd
  • examples/scrnaseq_report.qmd
  • usage-guide.md
Commands it runs
Render all formats
quarto render report.qmd
Render specific format
quarto render report.qmd --to pdf
Render with parameters
quarto render report.qmd -P sample:sample2 -P threshold:0.01
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-reporting-quarto-reports skill do?

Build reproducible scientific documents, presentations, and websites with Quarto supporting R, Python, Julia, and Observable JS. Use when creating reproducible reports with Quarto.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill quarto-reports --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 BioTender-max/awesome-bio-agent-skills, a repository with 135 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