Project guidance for Claude Code (CLI, IDE, and the GitHub Action). The same conventions apply to GitHub Copilot — see .github/copilot-instructions.md, which is the source of truth for style.
qwt (Quarto Website Template) is a template repository for Quarto websites maintained by the UCD-SERG lab. Downstream repos are created from this template via the GitHub "Use this template" button, so changes here propagate to new books.
Authoritative style guide: UCD-SERG Lab Manual (source: https://github.com/UCD-SERG/lab-manual).
index.qmd,chapters/,appendix-*.qmd— Quarto source pagesreferences.qmd— standalone reference page; excluded from the default website render (!references.qmdin_quarto-website.yml), so it isn't part of the normal site build_quarto.yml,_quarto-website.yml— Quarto project + website config_extensions/— vendored Quarto extensionsmacros/— git submodule for shortcode/macro definitions (see.gitmodules)R/,man/,DESCRIPTION,NAMESPACE— the project is also a small R packagereferences.bib— BibTeX bibliographystyles.css— website styling;styles-reveal.scss,qwt-reveal-toggle.html, and therevealjs-*.luafilters drive the reveal.js slide outputassets/,images/— static image and asset files (site pages, docs, CI/PR screenshots).github/workflows/— CI workflow definitions.github/scripts/— helper scripts used by workflows.github/instructions/— path-scoped Copilot rules that attach by file glob (see.github/copilot-instructions.md)CONTRIBUTING.md— contributor guide_site/,_freeze/,.quarto/— build artifacts (do not edit by hand)
Mirrors .github/copilot-instructions.md. Key points:
- Lists of 3+ items: use bullet lists rather than comma-separated prose. Always leave a blank line before a markdown bullet list (especially in
.qmdfiles). - Code chunks: use
#| code-fold: truewhen the output (plot, table) is the point and the code is incidental. Don't fold tutorial code, short examples, or chunks where the console output is the main content. - R style: respect
.lintr.R. Runlintr::lint_dir()before declaring R changes done. - Quarto chunks: prefer chunk options as YAML-style
#|directives, not as inliner, opt = valarguments.
- Don't edit generated files:
README.mdis built fromREADME.Rmd;_site/and_freeze/are build outputs. - Local preview:
quarto preview(live reload). Full build:quarto render. When verifying a single edited page, render just that page (quarto render <file>.qmd --to html) rather than the whole site — the/rendercommand is for the full build. - Submodules:
macros/is the only git submodule (see.gitmodules). Rungit submodule update --init --recursiveafter cloning. - Spell check: words go in
inst/WORDLIST(see.github/workflows/check-spelling.yaml). Update the wordlist instead of disabling the check. - Link check: tuned in
lychee.toml; prefer fixing broken links over adding exceptions. - Other CI checks: workflows also verify bibliography DOIs (
check-bibliography-dois.yml) and flag non-standard characters (check-non-standard-chars.yaml). Fix the flagged source rather than relaxing the check. - Dependencies: Dependabot auto-updates the
macrossubmodule and GitHub Actions (see.github/dependabot.yml); don't bump those by hand unless a PR needs it.
- Keep PRs scoped — bug fixes shouldn't smuggle in refactors.
- Write commit messages and PR descriptions explaining the why, not just the what.
- Don't bypass CI failures (spell check, link check, lint, bibliography DOIs, non-standard chars) — fix the underlying issue.
- Don't commit
_site/or_freeze/changes unless that is genuinely the intent of the PR.
- Adding new top-level dependencies (R packages, Quarto extensions) without a clear reason; this is a template, so every dependency lands in every downstream book.
- Reformatting unrelated files.
- Inventing URLs or citations — only use sources actually present in
references.bibor explicitly provided.