{% extends "base.html" %} {% set active = "skills" %} {% block title %}Skills{% endblock %} {% block content %} {% set skill_colors = ["purple", "blue", "green", "yellow", "red"] %} {% for skill in skills %}
{% set sc = skill_colors[loop.index0 % 5] %}
{{ skill.name[:2] }}
{{ skill.name }} {{ skill.tool_count }} tool{{ "s" if skill.tool_count != 1 }}
{% for tool in skill.tools %} {% endfor %}
ToolDescriptionApproval
{{ tool.name }} {{ tool.description }} {% if tool.human == "approve" %} approve {% elif tool.human == "confirm" %} confirm {% elif tool.human == "dynamic" %} dynamic {% else %} auto {% endif %}
{% endfor %} {% if not skills %}
No skills loaded. Add skill directories to skills.paths in config.
{% endif %} {% endblock %}