{% extends "web/base.html" %} {% block title %}{{ agent.role }} Skills | tcx{% endblock %} {% block page_label %}Agent Skills{% endblock %} {% block content %}
All agents
Status {% if agent.validation_errors %}blocked{% else %}valid{% endif %}
Core skills {{ agent.builtin_skills|length }}
Optional active {{ agent.optional_skill_count }}
Issues {{ agent.validation_errors|length }}
Core

Locked skill set

{% for skill in agent.builtin_skills %} {{ skill }} {% endfor %}
Optional

Role-local optional skills

{% csrf_token %}
{% for skill in agent.optional_skills %}
{{ skill.status }} {{ skill.validation_status }} {% for tag in skill.risk_tags %} {{ tag }} {% endfor %}
{{ skill.name }} {{ skill.description }} {% if skill.validation_errors %} {{ skill.validation_errors|join:"; " }} {% endif %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% empty %}
No optional skills This role is using only its core TradingCodex skill set.
{% endfor %}
{% endblock %}