{% extends "base.html" %} {% block title %}Requivo — local{% endblock %} {% block content %}

● Local requirements workspace

Turn vague requests into
validated product decisions.

Requivo separates facts, assumptions and unknowns before generating product documentation — and keeps the resulting decisions traceable.

{% if not provider.available %}
Provider actions are disabled — {{ provider.reason }} You can still create sessions and review existing ones.
{% endif %}
New discovery

Local sessions

{% if sessions %}
{% for s in sessions %}
{{ s.slug }} {% if s.ready %}Ready {% elif s.blocking %}{{ s.blocking }} blocking {% else %}In progress{% endif %}

rev {{ s.revision }} · {{ s.updated_at }} · {{ s.provider }}

{{ s.artifact_count }} artifact{{ '' if s.artifact_count == 1 else 's' }}{% if s.stale_count %} · {{ s.stale_count }} stale{% endif %}

{% endfor %}
{% else %}

No sessions yet. Start with a new discovery, or open one created by the CLI or Claude Code — all three interfaces share the same local sessions.

{% endif %} {% endblock %}