ForkTex{{ kind | title }}

{{ display_name }}

{{ subtitle }}
{% for badge in header_badges %}
{{ badge.value }} {{ badge.label }}
{% endfor %}
{% if kind == 'blueprint' and platform %}
Platform: {{ platform.name }} Path: {{ platform.path }} FSD Level: {{ platform.fsd_level }} {% if platform.archetype %}Archetype: {{ platform.archetype }}{% endif %}
{% endif %}
{% 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
{% for atom in fsd_atoms %} {% endfor %}
AtomMake TargetISO ControlStatus
{{ atom.name }} {{ atom.target }} {{ atom.iso }} {{ atom.status | upper }}
{% endif %}