{% if tech_stack %}
Core Technology Stack
{% for tech in tech_stack %}
{{ tech.name }}
{{ tech.version }}
{% endfor %}
{% endif %}
{% if architecture_layers %}
{{ 'Platform Architecture' if kind == 'blueprint' else 'Application Architecture' }}
{% for layer in architecture_layers %}
{% for box in layer.boxes %}
{{ box.name }}
{% endfor %}
{% if not loop.last %}
↓
{% endif %}
{% endfor %}
{% endif %}
{% if features %}
{{ 'Key Engines' if kind == 'blueprint' else 'Built-in Capabilities' }}
{% for feat in features %}
{{ feat }}
{% endfor %}
{% endif %}
{% if dependencies %}
Key Dependencies
{% for dep in dependencies %}
{{ dep.name }}
{{ dep.desc }}
{% endfor %}
{% if stats %}
{% for s in stats %}
{{ s.value }}
{{ s.label }}
{% endfor %}
{% endif %}
{% endif %}
{% if fsd_atoms %}
FSD Atoms
| Atom | Make Target | ISO Control | Status |
{% for atom in fsd_atoms %}
| {{ atom.name }} |
{{ atom.target }} |
{{ atom.iso }} |
{{ atom.status | upper }} |
{% endfor %}
{% endif %}