{% if scope_features %}
{% for category, items, color, icon_path in [ ('Skills', scope_features.skills, '#2ec27e', ''), ('MCPs', scope_features.mcps, '#8b5cf6', ''), ('Commands', scope_features.commands, '#6b7280', ''), ('Plugins', scope_features.plugins, '#f59e0b', ''), ('Hooks', scope_features.hooks, '#ef4444', ''), ('Agents', scope_features.agents, '#0770E3', ''), ] %} {% if items %}
{{ icon_path | safe }}
{{ category }} {{ items | length }}
    {% for item in items[:5] %}
  • {{ item.name }}
    {% if item.description %}
    {{ item.description[:80] }}{% if item.description|length > 80 %}…{% endif %}
    {% endif %}
  • {% endfor %} {% if items | length > 5 %}
  • +{{ items | length - 5 }} more
  • {% endif %}
{% endif %} {% endfor %}
{% else %}

No configuration items found at this scope.

{% endif %}