sdd-layer 0.26.1

Spec-Driven Development CLI and agent harness
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<section class="panel" id="rastreabilidade" aria-label="Rastreabilidade">
  <h2>Rastreabilidade</h2>
  {% if !traceability_items.is_empty() %}
  <table>
    <thead><tr><th>Campo</th><th>Valor</th></tr></thead>
    <tbody>
    {% for item in traceability_items %}
      <tr><td>{{ item.key }}</td><td><code>{{ item.value }}</code></td></tr>
    {% endfor %}
    </tbody>
  </table>
  {% else %}
  <p class="muted">Nenhum dado de rastreabilidade disponível.</p>
  {% endif %}
</section>