{% extends "base.html" %} {% set active_page = "settings" %} {% block title %}Settings - AI Control Plane{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Cache Status

Status {{ cache_status.status|capitalize }}
Last Built {{ cache_status.built_at[:19].replace('T', ' ') if cache_status.built_at else '—' }}
Database Size {{ "%.1f KB"|format(db_size / 1024) if db_size is not none else '—' }}
DB Path {{ cache_status.db_path }}

Data Directories

{% for label, path in data_dirs %}
{{ label }} {{ path }}
{% endfor %}

Data Sources

All filesystem paths read by this app, per tool and platform.

{% for tool_key, os_map in tool_paths.items() %}
{{ tool_key | replace('_', ' ') | title }}
{% for os_name, paths in os_map.items() %}
{{ os_name }}
    {% for p in paths %}
  • {{ p }}
  • {% endfor %}
{% endfor %}
{% endfor %}
{% endblock %}