{% extends "base.html" %} {% block title %}PAI Awareness - Codomyrmex{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

PAI Awareness

🎛️
PAI Control Panel Admin actions: Verify, Trust, Analyze, Search, Memory
Open Control Panel →
🚀
PAI Project Manager Kanban · Gantt · Git sync · AI dispatch — checking…
Open PAI PM →
📡
PAI Observability Dashboard Real-time agent monitoring · Event streams · Heat levels — checking…
Open Observability →
{{ awareness.metrics.mission_count }} Missions
{{ awareness.metrics.project_count }} Projects
{{ awareness.metrics.total_tasks }} Total Tasks
{{ awareness.metrics.completed_tasks }} Completed
{{ awareness.metrics.telos_files }} TELOS Files
{{ awareness.metrics.overall_completion }}% Completion

Mission Hierarchy

{% if awareness.missions %}
{% for mission in awareness.missions %}
{{ mission.title }} {{ mission.status }} {{ mission.priority }} {% if mission.completion_percentage > 0 %} {{ mission.completion_percentage }}% {% endif %}
{% if mission.description %}

{{ mission.description }}

{% endif %} {% if mission.linked_projects %}
{% for proj in mission.linked_projects %} {{ proj }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}

No missions found. PAI mission data is loaded from ~/.claude/MEMORY/STATE/missions/.

{% endif %}

Ecosystem Map

{% if awareness.missions or awareness.projects %}
{{ awareness.mermaid_graph | safe }}
{% else %}

No missions or projects to visualize.

{% endif %}

Projects

{% if awareness.projects %}
{% for project in awareness.projects %}
{{ project.title }} {{ project.status }}
{% if project.goal %}

{{ project.goal }}

{% endif %} {% if project.task_counts %}
{{ project.task_counts.get('completed', 0) }} done {{ project.task_counts.get('in_progress', 0) }} active {{ project.task_counts.get('remaining', 0) }} remaining {{ project.task_counts.get('blocked', 0) }} blocked
{% endif %} {% if project.completion_percentage > 0 %}
{% endif %}
{% endfor %}
{% else %}

No projects found.

{% endif %}

TELOS Life Profile

{% if awareness.telos %}
{% for item in awareness.telos %}
{{ item.name }} {{ item.size_bytes }} bytes
{% if item.preview %}

{{ item.preview }}

{% endif %}
{% endfor %}
{% else %}

No TELOS files found.

{% endif %}

AI Summary

Click "Generate Summary" to get an Ollama-powered analysis of your PAI ecosystem state.

Memory System

{% if awareness.memory.directories %}
{% for dir in awareness.memory.directories %}
{{ dir.name }} {{ dir.file_count }} files {{ dir.subdir_count }} subdirs
{% endfor %}

Total files: {{ awareness.memory.total_files }} | Work sessions: {{ awareness.memory.work_sessions_count }}

{% else %}

No memory data found. PAI memory is stored in ~/.claude/MEMORY/.

{% endif %}

PAI Skills & Workflows

Loading skills data...

{% endblock %}