{% extends "base.html" %} {% block title %}Autonomous Capability Foundry — ICDEV{% endblock %} {% block content %} {# Context (from tools/foundry/blueprint.py :: foundry_index): runs : list[dict] — id, cycle_at, harvested, concepts_proposed, concepts_approved, tasks_emitted, status (most recent first) latest_run : runs[0] or None concepts : list[dict] — id, run_id, name, slug, problem_statement, proposed_capability, novelty_score, market_score, fit_score, effort_estimate, compliance_risk, composite_score, status, reject_reason, created_at summary : {by_status: {proposed/scored/approved/rejected: n}, total} signal_count : int — harvested signals available to the next cycle statuses : CONCEPT_STATUSES (proposed, scored, approved, rejected) #}
A 0→1 product factory: it harvests innovation, creative, research, Genesis, and telemetry signals, clusters them into net-new capability concepts, gates them through a novelty check and a Chain-of-Debate go/no-go, self-vets the plan with SIPA, and seeds the approved ones as autonomous Kanban builds. Distinct from Oracle/Genesis, which improve existing work.
| Cycle | Harvested | Proposed | Approved | Tasks | Status |
|---|---|---|---|---|---|
| {{ (r.cycle_at[:16] if r.cycle_at is string else r.cycle_at.strftime('%Y-%m-%d %H:%M')) if r.cycle_at else '—' }} | {{ r.harvested or 0 }} | {{ r.concepts_proposed or 0 }} | {{ r.concepts_approved or 0 }} | {{ r.tasks_emitted or 0 }} | {{ r.status or '—' }} |