{% extends "base.html" %} {% block title %}GovCon Intelligence - ICDEV™ Dashboard{% endblock %} {% block content %}

GovCon Intelligence Pipeline

Phase 59 — SAM.gov scanning, requirement mining, capability mapping, proposal automation

{{ stats.total_opportunities }}
Opportunities
{{ stats.total_requirements }}
Requirements
{{ stats.total_patterns }}
Patterns
{{ stats.total_capability_maps }}
Mapped
{{ stats.total_drafts }}
Drafts
{{ stats.total_awards }}
Awards Tracked
{{ stats.knowledge_blocks }}
KB Blocks
{{ stats.linked_proposals }}
Linked Proposals

Pipeline Flow

DISCOVER
SAM.gov scan
EXTRACT
Shall/must/will
MAP
Capability match
DRAFT
Two-tier LLM

Requirement Domain Distribution

{% set max_count = stats.domain_distribution.values()|max if stats.domain_distribution else 1 %} {% for domain, count in stats.domain_distribution.items() %} {% endfor %} {% if not stats.domain_distribution %} {% endif %}
Domain Count Bar
{{ domain }} {{ count }}
No requirements extracted yet. Run the pipeline to begin.

Recent SAM.gov Opportunities

{% for opp in opportunities %} {% endfor %} {% if not opportunities %} {% endif %}
Title Agency NAICS Type Deadline Linked Actions
{{ opp.title[:60] }}{% if opp.title|length > 60 %}...{% endif %} {{ opp.agency or '' }} {{ opp.naics_code or '' }} {{ opp.notice_type or '' }} {{ opp.response_deadline or '' }} {% if opp.id in linked_opp_ids %} {% else %} {% endif %}
No opportunities cached. Click "Discover" to scan SAM.gov.
{% if stats.last_pipeline_run %}

Last pipeline run: {{ stats.last_pipeline_run }}

{% endif %}
{% endblock %}