# How-To — Template Use for step-by-step runbooks. Each step is one concrete action with the expected result. ## Sections - Title — verb-first ("Configure TLS on the staging cluster", not "TLS Configuration") - Prerequisites (what must already be true before starting) - Steps (numbered, one action per step, with the expected output) - Verification (the single check that proves the change worked) - Troubleshooting (top 3 things that go wrong, with their fixes) - Related (links to sister how-tos and the owning team page) ## Anti-patterns - Don't write steps that require a human to interpret them. "Configure the cluster" is not a step. - Don't bury the verification at the end of the page. Put it where the reader will see it after step 1. - Don't use screenshots where commands work. Screenshots go out of date; commands don't. ## Storage template ```xml

{Verb-first title}

{One sentence: what this how-to does and when to use it.}

Prerequisites

Steps

  1. {action}

    Expected output:

    bash

Verification

{Single check that proves the change worked. If it fails, the rest of the how-to doesn't apply.}

Troubleshooting

Symptom Cause Fix
{symptom} {cause} {fix}
``` ## Cross-references - Storage macros: `confluence-page/references/macros.md` - Diagrams: `diagram-plantuml/SKILL.md`