{% extends "base.html" %} {% block title %}Health - Codomyrmex{% endblock %} {% block content %}

System Health

Connected

System Vitals

{{ health.uptime }} Uptime
{{ health.python.version }} Python
{{ health.modules.total }} Modules
{{ health.status_text }} Status

Git Repository

{{ health.git.branch }} Branch
{{ health.git.commit_count }} Commits
{{ health.git.status }} Working Tree

{{ health.git.last_commit }}

Documentation Coverage

API Specs
{{ health.modules.api_spec_pct }}%
Test Dirs
{{ health.modules.test_coverage_pct }}%
MCP Specs
{{ health.modules.mcp_spec_pct }}%

Architecture Layers

{% for layer in health.architecture_layers %}
{{ layer.name }} {{ layer.modules|length }}
{% for mod in layer.modules[:8] %} {{ mod }} {% endfor %} {% if layer.modules|length > 8 %} +{{ layer.modules|length - 8 }} more {% endif %}
{% endfor %}

Security Posture

Loading security posture…

Test Runner

Click "Run Tests" to execute the test suite.

{% endblock %}