use our docker setup for testing  -- docker-compose.yml

## Django template comments — NEVER use multi-line `{# … #}`

Django's lexer only matches `{# … #}` **within a single line** (its `tag_re` has no
`re.DOTALL`). A `{# … #}` comment that spans multiple lines is therefore NOT parsed as a
comment — it renders as **visible text on the page**.

- One-liners: single-line `{# … #}` is fine.
- Multi-line notes: use `{% comment %} … {% endcomment %}`.
- Before `{% extends %}`: use only single-line `{# … #}` (extends must be the first tag,
  so avoid a `{% comment %}` block there).

## Task-specific workflows (loaded on demand)

- **Email via AgentMail** — sending/receiving mail from the agent inbox
  `cosmas-5316@agentmail.to`: use the **`agentmail`** skill.
- **Browser QA with `agent-browser`** — real-browser manual testing, login seeding,
  multi-step wizards, and running the pytest suite under Docker: use the **`browser-qa`** skill.
