Contributing
June 24, 2026 · View on GitHub
There are many areas we can use contributions — ranging from documentation, blog posts, feature proposals, issue triage, samples, and content creation.
First, please read the code of conduct. By participating, you're expected to uphold this code.
Prerequisites
- Hugo (extended) and Go — the exact versions Netlify builds with are pinned in
netlify.toml(HUGO_VERSION,GO_VERSION); use the same Hugo version locally, behavior differs across releases. Go is needed because the Docsy theme is loaded as a Hugo Module (declared ingo.mod— there are no git submodules to initialize). - Node.js (LTS) — for the PostCSS toolchain.
Setup
-
Clone the repo and install NPM dependencies
npm install -
Run the Hugo server
$ hugo server Web Server is available at http://localhost:1313/ (bind address 127.0.0.1) Press Ctrl+C to stopVisit localhost:1313 to preview the site. Hugo downloads the Docsy module automatically on first run.
-
(Optional) Run the full production build — exactly what Netlify runs:
./build.sh
Making changes
- Create a new branch.
- Make your changes.
- Verify locally with the Hugo server; for template/partial changes restart the server (Docsy caches partials).
- Run
./build.shto make sure the production build passes with no warnings. - Commit and push your changes to the branch.
- Raise a PR to the default branch and verify your changes on the Netlify deploy-preview URL posted on the PR.
- Once the PR is merged, your changes go live automatically.
Authoring conventions
- Every page needs a front-matter
description:— one factual sentence; it becomes the meta description and the page's entry in/llms.txt. - Never hardcode Fission versions in prose — use the
{{< release-version >}}and{{< chart-version >}}shortcodes (values come fromconfig.toml). - Internal links are plain absolute URLs (
/docs/installation/upgrade/); don't use therelrefshortcode on regular pages. - One sentence per line in Markdown — rendering is identical, but diffs and reviews become per-sentence.
- Diagrams are written as Mermaid code fences and follow the site's color/width conventions.
- Moving or renaming a page? Add a redirect in
netlify.tomlso inbound links keep working. - Auto-generated reference pages (
docs/reference/fission-cli/*,crd-reference.md,metrics-reference.md) are regenerated from the Fission codebase — don't hand-edit them.
Detailed conventions (design system, Mermaid diagram rules, page skeletons, SEO rules) live in .claude/resources/, and CLAUDE.md gives AI coding assistants the same guidance.
Common content tasks
- Blog post — front-matter, featured-image workflow, and the fission category enum: see the Blog section of
.claude/resources/page-patterns.md. - New language environment or example — both catalog pages are data-driven from
static/data/*.json: see.claude/skills/update-environments-catalog/,.claude/skills/update-examples-catalog/, andtools/README.md. - Docs for a new Fission release — version bumps, release-notes page, compatibility matrix: see
.claude/skills/cut-fission-release/.