feat: restore source parity and harden agent runtime

This commit is contained in:
2026-06-22 11:17:26 +08:00
parent e33f08277b
commit 0793eb82d6
596 changed files with 168879 additions and 290 deletions
@@ -0,0 +1,16 @@
<table class="element-table">
<thead><tr>
{% for col in columns %}
<th style="width: {{ col.width|default('auto') }}">{{ col.label }}</th>
{% endfor %}
</tr></thead>
<tbody>
{% for row in rows %}
<tr>
{% for col in columns %}
<td>{{ row[col.field]|default('') }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>