{% extends "base.html" %} {% block title %}{{ page_title }} - AgomTradePro{% endblock %} {% block extra_css %} {% include "agent_runtime/_operator_styles.html" %} {% endblock %} {% block content %}

{{ task.request_id }}

{{ task.task_domain }} / {{ task.task_type }} / {{ task.status }}

{% include "agent_runtime/_summary_cards.html" %}

Task Overview

Created By
{{ task.created_by|default:"-" }}
Requires Human
{{ task.requires_human|yesno:"Yes,No" }}
Current Step
{{ task.current_step|default:"-" }}
Updated At
{{ task.updated_at|date:"Y-m-d H:i:s" }}
{% if latest_context %}
Latest Context Snapshot
#{{ latest_context.id }} / {{ latest_context.domain }}
Generated At
{{ latest_context.generated_at|date:"Y-m-d H:i:s"|default:"-" }}
{% endif %} {% if task.input_payload %}

Input Payload

{{ task.input_payload }}
{% endif %} {% if task.last_error %}

Last Error

{{ task.last_error }}
{% endif %}

Timeline

{% for event in timeline %}
{{ event.event_type }} {{ event.created_at|date:"Y-m-d H:i:s" }}
{{ event.event_source }}
{% if event.event_payload %}
{{ event.event_payload }}
{% endif %}
{% empty %}
暂无 timeline。
{% endfor %}

Proposals

{% for proposal in proposals %} {% empty %} {% endfor %}
Request Type Status Risk Approval
{{ proposal.request_id }} {{ proposal.proposal_type }} {{ proposal.status }} {{ proposal.risk_level }} {{ proposal.approval_status }}
暂无 proposals。

Guardrails

{% for guardrail in guardrails %}
{{ guardrail.reason_code }}
{{ guardrail.decision }}
{{ guardrail.message }}
{% if guardrail.evidence %}
{{ guardrail.evidence }}
{% endif %}
{% empty %}
暂无 guardrail 记录。
{% endfor %}

Execution Records

{% for execution in executions %}
#{{ execution.id }}
{{ execution.execution_status }}
{{ execution.started_at|date:"Y-m-d H:i:s"|default:"-" }} -> {{ execution.completed_at|date:"Y-m-d H:i:s"|default:"-" }}
{% if execution.error_details %}
{{ execution.error_details }}
{% endif %}
{% empty %}
暂无 execution record。
{% endfor %}

Handoffs

{% for handoff in handoffs %}
{{ handoff.from_agent }} -> {{ handoff.to_agent }}
{{ handoff.created_at|date:"Y-m-d H:i:s" }} / {{ handoff.handoff_status }}
{{ handoff.handoff_reason }}
{% if handoff.handoff_payload %}
{{ handoff.handoff_payload }}
{% endif %}
{% empty %}
暂无 handoff。
{% endfor %}
{% endblock %}