{% extends "base.html" %} {% block title %}Child Applications - ICDEV™ Dashboard{% endblock %} {% block content %}
{{ total_count }}
Total Children
{{ healthy_count }}
Healthy
{{ degraded_count }}
Degraded
{{ unhealthy_count }}
Unhealthy
{% if children %}
Registered Child Applications
{% for child in children %} {% endfor %}
Child ID Name Health Status Genome Version Capabilities Last Heartbeat Pending Upgrades
{{ child.id[:12] }}... {{ child.name }} {% if child.description %}
{{ child.description }} {% endif %}
{% if child.health_status == 'healthy' %} healthy {% elif child.health_status == 'degraded' %} degraded {% else %} unhealthy {% endif %} {% if child.genome_version %} {{ child.genome_version }} {% else %} N/A {% endif %} {% if child.capability_count is not none %} {{ child.capability_count }} {% else %} 0 {% endif %} {% if child.last_heartbeat %} {{ child.last_heartbeat | friendly_time }} {% else %} No heartbeat recorded {% endif %} {% if child.pending_upgrades and child.pending_upgrades > 0 %} {{ child.pending_upgrades }} {% else %} 0 {% endif %}
{% else %}
No Child Applications

No child applications have been generated yet.

Use /icdev-agentic or python tools/builder/scaffolder.py --agentic to generate a new child application with the full FORGE framework and ANVIL workflow.

See Quick Paths for guided workflows.

{% endif %}
Health Status Legend
Healthy — Child is responding to heartbeats and all agents are operational.
Degraded — Child is responding but one or more agents are inactive or heartbeat is stale.
Unhealthy — Child has not responded to heartbeats within the expected window.
{% endblock %}