{% extends "web/base.html" %} {% block title %}Research Memory | tcx{% endblock %} {% block page_label %}Research{% endblock %} {% block content %} {% if selected_artifact %}
Back to list
{% endif %} {% if selected_artifact %}
Research note

{{ selected_artifact.title }}

v{{ selected_artifact.version }}
{{ selected_artifact.artifact_type }} {{ selected_artifact.universe_label }} {% if selected_artifact.role %}{{ selected_artifact.role }}{% endif %} {% if selected_artifact.symbol %}{{ selected_artifact.symbol }}{% endif %} {% if selected_artifact.source_as_of %}as of {{ selected_artifact.source_as_of }}{% endif %} {{ selected_artifact.artifact_id }}
{% if selected_artifact.reader_summary or selected_artifact.next_action or selected_artifact.missing_evidence %}
Use this note
{% if selected_artifact.reader_summary %}
Plain read {{ selected_artifact.reader_summary }}
{% endif %} {% if selected_artifact.next_action %}
Next action {{ selected_artifact.next_action }}
{% endif %} {% if selected_artifact.missing_evidence %}
Missing evidence {% for item in selected_artifact.missing_evidence %}{{ item }}{% if not forloop.last %}; {% endif %}{% endfor %}
{% endif %}
{% endif %} {% if workflow_loop_preview.artifact_evaluations or workflow_loop_preview.pending_tasks or workflow_loop_preview.escalation_proposals %}
Loop preview
{% for item in workflow_loop_preview.artifact_evaluations %}
{{ item.artifact_evaluation }} {{ item.role }} · {{ item.handoff_state }} · {{ item.follow_up_request_count }} follow-up request{% if item.follow_up_request_count != 1 %}s{% endif %}
{% endfor %} {% for task in workflow_loop_preview.pending_tasks %}
{{ task.role }} {{ task.planner_action }} · {{ task.trigger }} · {{ task.status }}
{% endfor %} {% for item in workflow_loop_preview.escalation_proposals %}
{{ item.suggested_role }} {{ item.policy_reason }}
{% endfor %} {% if workflow_loop_preview.blocked_actions %}
Blocked actions {% for action in workflow_loop_preview.blocked_actions %}{{ action }}{% if not forloop.last %}, {% endif %}{% endfor %}
{% endif %}
{% endif %} {% if artifact_preview.metadata_items %}
Document details
{% for item in artifact_preview.metadata_items %}
{{ item.label }}
{{ item.value }}
{% endfor %}
{% endif %}
{{ artifact_preview.html|safe }}
{% else %}
Research records

{{ artifacts|length }} records

{% for artifact in artifacts %} {{ artifact.title }} {{ artifact.universe_label }} · {{ artifact.artifact_type }}{% if artifact.symbol %} · {{ artifact.symbol }}{% endif %} {% if artifact.reader_summary %}{{ artifact.reader_summary }}{% endif %} {% if artifact.next_action %}Next: {{ artifact.next_action }}{% endif %} {{ artifact.readiness_label|default:"unlabeled" }} · v{{ artifact.version }} · {{ artifact.updated_at|date:"Y-m-d H:i" }} {% empty %}
No records yet Accepted research notes and role reports will appear here.
{% endfor %}
{% endif %} {% endblock %}