{% extends "base.html" %} {% block title %}Dashboard Home - ICDEV™{% endblock %} {% block content %}
New here? Answer 3 questions and get a personalized workflow recommendation.
Get Started →
{{ total_projects }}
Total Projects
{{ active_agents }}
Active Agents ({{ inactive_agents }} idle)
{{ firing_alerts }}
CAT1 Findings
{{ open_poam }}
Open POA&M

Task Board

{% set columns = [ ("suggested", "Suggested"), ("backlog", "Backlog"), ("scheduled", "Scheduled"), ("in_progress", "In Progress"), ("done", "Done") ] %} {% for status_key, status_label in columns %}

{{ status_label }}

0 {% if status_key == "suggested" %} {% endif %}
Loading...
{% endfor %}
{# Projects in Flight — reusable partial (config at args/projects.yaml). Auto-hides each project when done; Task Board auto-hides when all active columns are empty. Init hooks wired below in the DOMContentLoaded block. #} {% include "_projects_in_flight.html" %} {# Autonomous Recovery — shows failure_triage activity, autofix branches, and unresolved failures. Auto-hides when idle (no triage in 24h, no branches, no unresolved failures in the last hour). #} {% include "_autonomy_status.html" %}
Compliance Posture ?
Activity Trend (7 days)
Task Board Status
Agent Health
Oracle Insights ?
Loading…
Sandbox
Loading…
Remediation History View All →
Loading history...
Recent Activity & Findings View All
{% for item in recent_activity %} {% else %} {% endfor %}
Event Type Source Details Severity When
{{ item.event_type }} {{ item.source }} {{ item.details }} {{ item.severity }} {{ item.created_at | friendly_time }}
No recent activity — all clear
Recent Activity
{% for entry in recent_audit %} {% else %} {% endfor %}
Event Type Actor Action Project When
{{ entry.event_type }} {{ entry.actor }} {{ entry.action }} {% if entry.project_id %} {{ entry.project_id[:12] }} {% else %} {% endif %} {{ entry.created_at | friendly_time }}
No activity recorded yet
{% endblock %} {% block scripts %} {% endblock %}