What this phase does

{{ page.what }}

Why it matters

{{ page.why }}

Key capabilities

    {% for label, desc in page.capabilities %}
  • {{ label }} {{ desc }}
  • {% endfor %}

Workflow

    {% for heading, body in page.workflow %}
  • {{ loop.index }}. {{ heading }} {{ body }}
  • {% endfor %}

Tips & gotchas

    {% for tip in page.tips %}
  • {{ tip }}
  • {% endfor %}
{% if page.concepts %}

Concepts

{% for term, gloss in page.concepts %}
{{ term }}
{{ gloss }}
{% endfor %}
{% endif %}